From bb68956a777c9b57030fd4b9639cfde5b24c7afd Mon Sep 17 00:00:00 2001 From: Matteo Martincigh Date: Tue, 27 Aug 2019 16:35:44 +0100 Subject: IVGCVSW-3656 Rename ARMNN_COMPUTE_REF_ENABLED to ARMNN_REF_ENABLED Change-Id: I5982d8dc733bd8bf1eed51c467df5a16a6aabcdb Signed-off-by: Matteo Martincigh --- Android.mk | 18 +++++++++--------- 1 file 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 \ -- cgit v1.2.1