aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-08-27 16:35:44 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-08-28 09:57:54 +0100
commitbb68956a777c9b57030fd4b9639cfde5b24c7afd (patch)
treee27977b47048562a0bccbee04e601a25d5610f73
parent206ef70d3f08243c2e7c4556f4c0a297c6394caf (diff)
downloadandroid-nn-driver-bb68956a777c9b57030fd4b9639cfde5b24c7afd.tar.gz
IVGCVSW-3656 Rename ARMNN_COMPUTE_REF_ENABLED to ARMNN_REF_ENABLED
Change-Id: I5982d8dc733bd8bf1eed51c467df5a16a6aabcdb Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
-rw-r--r--Android.mk18
1 files changed, 9 insertions, 9 deletions
diff --git a/Android.mk b/Android.mk
index 2f5b9773..2e83e27c 100644
--- a/Android.mk
+++ b/Android.mk
@@ -53,9 +53,9 @@ ifndef ARMNN_COMPUTE_NEON_ENABLED
# ARMNN_COMPUTE_NEON_ENABLED is undefined, use the following default value
ARMNN_COMPUTE_NEON_ENABLED := 1
endif
-ifndef ARMNN_COMPUTE_REF_ENABLED
-# ARMNN_COMPUTE_REF_ENABLED is undefined, use the following default value
-ARMNN_COMPUTE_REF_ENABLED := 1
+ifndef ARMNN_REF_ENABLED
+# ARMNN_REF_ENABLED is undefined, use the following default value
+ARMNN_REF_ENABLED := 1
endif
#######################
@@ -114,10 +114,10 @@ LOCAL_CFLAGS += \
-DARMCOMPUTENEON_ENABLED
endif # ARMNN_COMPUTE_NEON_ENABLED == 1
-ifeq ($(ARMNN_COMPUTE_REF_ENABLED),1)
+ifeq ($(ARMNN_REF_ENABLED),1)
LOCAL_CFLAGS += \
-DARMNNREF_ENABLED
-endif # ARMNN_COMPUTE_REF_ENABLED == 1
+endif # ARMNN_REF_ENABLED == 1
LOCAL_SRC_FILES := \
1.0/ArmnnDriverImpl.cpp \
@@ -231,10 +231,10 @@ LOCAL_CFLAGS += \
-DARMCOMPUTENEON_ENABLED
endif # ARMNN_COMPUTE_NEON_ENABLED == 1
-ifeq ($(ARMNN_COMPUTE_REF_ENABLED),1)
+ifeq ($(ARMNN_REF_ENABLED),1)
LOCAL_CFLAGS += \
-DARMNNREF_ENABLED
-endif # ARMNN_COMPUTE_REF_ENABLED == 1
+endif # ARMNN_REF_ENABLED == 1
LOCAL_SRC_FILES := \
1.0/ArmnnDriverImpl.cpp \
@@ -340,10 +340,10 @@ LOCAL_CFLAGS += \
-DARMCOMPUTENEON_ENABLED
endif # ARMNN_COMPUTE_NEON_ENABLED == 1
-ifeq ($(ARMNN_COMPUTE_REF_ENABLED),1)
+ifeq ($(ARMNN_REF_ENABLED),1)
LOCAL_CFLAGS += \
-DARMNNREF_ENABLED
-endif # ARMNN_COMPUTE_REF_ENABLED == 1
+endif # ARMNN_REF_ENABLED == 1
LOCAL_SRC_FILES := \
1.0/ArmnnDriverImpl.cpp \