From b357e328bcd0ec5a820bcee0e049a5c7f3c1ee64 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 19 May 2020 15:55:25 +0100 Subject: Few minor updates to BuildGuideAndroidNDK.md file Signed-off-by: Nikhil Raj Change-Id: I380862816cbc7ec509ff01791e77297b859f21ac --- BuildGuideCrossCompilation.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'BuildGuideCrossCompilation.md') diff --git a/BuildGuideCrossCompilation.md b/BuildGuideCrossCompilation.md index 9baf20cb71..156488abca 100644 --- a/BuildGuideCrossCompilation.md +++ b/BuildGuideCrossCompilation.md @@ -109,9 +109,17 @@ The instructions show how to build the ArmNN core library and the Boost, Protobu ```bash git clone https://github.com/ARM-software/ComputeLibrary.git cd ComputeLibrary/ + git checkout + git pull scons arch=arm64-v8a neon=1 opencl=1 embed_kernels=1 extra_cxx_flags="-fPIC" -j8 internal_only=0 ``` + For example, if you want to checkout release branch of 20.02: + ```bash + git checkout branches/arm_compute_20_02 + git pull + ``` + #### Build Tensorflow * Building Tensorflow version 1.15: '''bash @@ -171,10 +179,18 @@ The instructions show how to build the ArmNN core library and the Boost, Protobu ```bash git clone https://github.com/ARM-software/armnn.git cd armnn + git checkout + git pull mkdir build cd build ``` + For example, if you want to checkout release branch of 20.02: + ```bash + git checkout branches/armnn_20_02 + git pull + ``` + * Use CMake to configure your build environment, update the following script and run it from the armnn/build directory to set up the armNN build: ```bash #!/bin/bash -- cgit v1.2.1