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:41:36 +0100
commit57130dd869752a2fa5504d1e0e935998ab36e3de (patch)
treee27977b47048562a0bccbee04e601a25d5610f73
parenta3d7fad1dc3c29ab614f6f277aeea74dc67d219a (diff)
downloadandroid-nn-driver-57130dd869752a2fa5504d1e0e935998ab36e3de.tar.gz
IVGCVSW-3656 Rename ARMCOMPUTEREF to ARMNNREF
* Renamed ARMCOMPUTEREF to ARMNNREF (and relative symbols) as the previous name was misleading Change-Id: Ia0400a7d63a76c80fb5bdd26410553db1c15cba0 Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
-rw-r--r--Android.mk24
1 files changed, 12 insertions, 12 deletions
diff --git a/Android.mk b/Android.mk
index bd5e901d..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 += \
- -DARMCOMPUTEREF_ENABLED
-endif # ARMNN_COMPUTE_REF_ENABLED == 1
+ -DARMNNREF_ENABLED
+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 += \
- -DARMCOMPUTEREF_ENABLED
-endif # ARMNN_COMPUTE_REF_ENABLED == 1
+ -DARMNNREF_ENABLED
+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 += \
- -DARMCOMPUTEREF_ENABLED
-endif # ARMNN_COMPUTE_REF_ENABLED == 1
+ -DARMNNREF_ENABLED
+endif # ARMNN_REF_ENABLED == 1
LOCAL_SRC_FILES := \
1.0/ArmnnDriverImpl.cpp \