From 2ca2481b674027aceb3f8f9e5ba5247e016bcf42 Mon Sep 17 00:00:00 2001 From: Matteo Martincigh Date: Thu, 29 Aug 2019 18:27:18 +0100 Subject: IVGCVSW-3656 Fix wrong rename of the reference backend control macro * Renamed ARMNN_COMPUTE_REF_ENABLED to ARMNN_REF_ENABLED in the Android makefiles Change-Id: I12af2ca00c719568274585482d428b035674737c Signed-off-by: Matteo Martincigh --- src/backends/reference/backend.mk | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/backends/reference/backend.mk') diff --git a/src/backends/reference/backend.mk b/src/backends/reference/backend.mk index 13251b779a..4bfacd5390 100644 --- a/src/backends/reference/backend.mk +++ b/src/backends/reference/backend.mk @@ -7,10 +7,10 @@ # in the Android build and it is picked up by the Android.mk # file in the root of ArmNN -# The variable to enable/disable the reference backend (ARMNN_COMPUTE_REF_ENABLED is declared in android-nn-driver/Android.mk) -ifeq ($(ARMNN_COMPUTE_REF_ENABLED),1) +# The variable to enable/disable the reference backend (ARMNN_REF_ENABLED is declared in android-nn-driver/Android.mk) +ifeq ($(ARMNN_REF_ENABLED),1) -# ARMNN_COMPUTE_REF_ENABLED == 1 +# ARMNN_REF_ENABLED == 1 # Include the source files for the reference backend BACKEND_SOURCES := \ @@ -86,7 +86,7 @@ BACKEND_SOURCES := \ workloads/TransposeConvolution2d.cpp else -# ARMNN_COMPUTE_REF_ENABLED == 0 +# ARMNN_REF_ENABLED == 0 # No source file will be compiled for the reference backend BACKEND_SOURCES := @@ -97,10 +97,10 @@ endif # in the Android unit test build (armnn-tests) and it is picked # up by the Android.mk file in the root of ArmNN -# The variable to enable/disable the CL backend (ARMNN_COMPUTE_REF_ENABLED is declared in android-nn-driver/Android.mk) -ifeq ($(ARMNN_COMPUTE_REF_ENABLED),1) +# The variable to enable/disable the CL backend (ARMNN_REF_ENABLED is declared in android-nn-driver/Android.mk) +ifeq ($(ARMNN_REF_ENABLED),1) -# ARMNN_COMPUTE_REF_ENABLED == 1 +# ARMNN_REF_ENABLED == 1 # Include the source files for the CL backend tests BACKEND_TEST_SOURCES := \ @@ -115,7 +115,7 @@ BACKEND_TEST_SOURCES := \ test/RefRuntimeTests.cpp else -# ARMNN_COMPUTE_REF_ENABLED == 0 +# ARMNN_REF_ENABLED == 0 # No source file will be compiled for the reference backend tests BACKEND_TEST_SOURCES := -- cgit v1.2.1