Skip to content

Commit

Permalink
IVGCVSW-3656 Undo wrong rename of the backend control macros
Browse files Browse the repository at this point in the history
 * Renamed the cl/neon backend macros to their original values, as
   they were renamed by mistake
 * Reverted misleading comment
 * Updated the readme file

!armnn:1838

Change-Id: I49faabae2c8ad196f51eca5f8dd049ecf74b36e1
Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
  • Loading branch information
MatteoArm committed Aug 29, 2019
1 parent 57130dd commit ff645b6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 17 deletions.
27 changes: 12 additions & 15 deletions Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -38,24 +38,21 @@ OPENCL_HEADER_PATH := $(LOCAL_PATH)/clframework/include
NN_HEADER_PATH := $(LOCAL_PATH)/../../../frameworks/ml/nn/runtime/include

# Variables to control CL/NEON/reference backend support
#
# They can be optionally passed from the command line to build the backends programmatically
# For example, to disable CL support, do from the top of the Android source tree:
# ARMNN_COMPUTE_CL_ENABLED=0 make
# Or export it as an environment variable, export ARMNN_COMPUTE_CL_ENABLED=0, and then run the make command
#
# Set the following default values to '0' to disable support for a specific backend
ifndef ARMNN_COMPUTE_CL_ENABLED
# ARMNN_COMPUTE_CL_ENABLED is undefined, use the following default value
# Set them to '0' to disable support for a specific backend
ARMNN_COMPUTE_CL_ENABLED := 1
endif
ifndef ARMNN_COMPUTE_NEON_ENABLED
# ARMNN_COMPUTE_NEON_ENABLED is undefined, use the following default value
ARMNN_COMPUTE_NEON_ENABLED := 1
endif
ifndef ARMNN_REF_ENABLED
# ARMNN_REF_ENABLED is undefined, use the following default value
ARMNN_REF_ENABLED := 1

ifeq ($(ARMNN_COMPUTE_CL_ENABLE),0)
ARMNN_COMPUTE_CL_ENABLED := 0
endif

ifeq ($(ARMNN_COMPUTE_NEON_ENABLE),0)
ARMNN_COMPUTE_NEON_ENABLED := 0
endif

ifeq ($(ARMNN_REF_ENABLE),0)
ARMNN_REF_ENABLED := 0
endif

#######################
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ thus the following should be added to `device.mk` instead:
PRODUCT_PACKAGES += android.hardware.neuralnetworks@1.2-service-armnn
</pre> `Android.mk` contains the module definition of both versions of the ArmNN driver.

Similarly, the Neon or CL backend can be enabled/disabled by setting ARMNN_COMPUTE_CL_ENABLE or
ARMNN_COMPUTE_NEON_ENABLE in `device.mk`:
Similarly, the Neon, CL or reference backend can be enabled/disabled by setting ARMNN_COMPUTE_CL_ENABLE,
ARMNN_COMPUTE_NEON_ENABLE or ARMNN_REF_ENABLE in `device.mk`:
<pre>
ARMNN_COMPUTE_CL_ENABLE := 1
</pre>
Expand Down

0 comments on commit ff645b6

Please sign in to comment.