aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-08-27 09:30:58 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-08-27 11:20:55 +0100
commitd9c90fca604ac0359afd5c86eea4f81cd993a401 (patch)
tree4ffdd7922eead3c3e959295579be846587ac83fb
parente5f0bc6400dfb95ad538932c74cdfc276862f2fc (diff)
downloadarmnn-d9c90fca604ac0359afd5c86eea4f81cd993a401.tar.gz
IVGCVSW-3656 Make the reference backend build optional
* Added ARMCOMPUTEREF option to the build guides, as the reference backend is not built by default Change-Id: I2cd8dab12ed72a795ff79fe1087ab8bf7606694e Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
-rw-r--r--BuildGuideAndroidNDK.md2
-rw-r--r--BuildGuideCrossCompilation.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/BuildGuideAndroidNDK.md b/BuildGuideAndroidNDK.md
index 45c2262a9c..05ec1cfbf0 100644
--- a/BuildGuideAndroidNDK.md
+++ b/BuildGuideAndroidNDK.md
@@ -171,7 +171,7 @@ All downloaded or generated files will be saved inside the `~/armnn-devenv` dire
-DARMCOMPUTE_ROOT=$HOME/armnn-devenv/ComputeLibrary/ \
-DARMCOMPUTE_BUILD_DIR=$HOME/armnn-devenv/ComputeLibrary/build \
-DBOOST_ROOT=$HOME/armnn-devenv/boost/install/ \
- -DARMCOMPUTENEON=1 -DARMCOMPUTECL=1 \
+ -DARMCOMPUTENEON=1 -DARMCOMPUTECL=1 -DARMCOMPUTEREF=1 \
-DTF_GENERATED_SOURCES=$HOME/armnn-devenv/google/tf_pb/ -DBUILD_TF_PARSER=1 \
-DPROTOBUF_ROOT=$HOME/armnn-devenv/google/arm64_pb_install/
make -j16
diff --git a/BuildGuideCrossCompilation.md b/BuildGuideCrossCompilation.md
index 396c1fe766..ce0d360b14 100644
--- a/BuildGuideCrossCompilation.md
+++ b/BuildGuideCrossCompilation.md
@@ -128,7 +128,7 @@ The instructions show how to build the ArmNN core library and the Boost, Protobu
-DARMCOMPUTE_ROOT=$HOME/armnn-devenv/ComputeLibrary \
-DARMCOMPUTE_BUILD_DIR=$HOME/armnn-devenv/ComputeLibrary/build/ \
-DBOOST_ROOT=$HOME/armnn-devenv/boost_arm64_install/ \
- -DARMCOMPUTENEON=1 -DARMCOMPUTECL=1 \
+ -DARMCOMPUTENEON=1 -DARMCOMPUTECL=1 -DARMCOMPUTEREF=1 \
-DCAFFE_GENERATED_SOURCES=$HOME/armnn-devenv/caffe/build/src \
-DBUILD_CAFFE_PARSER=1 \
-DPROTOBUF_ROOT=$HOME/armnn-devenv/google/x86_64_pb_install/ \