blob: 077baf9d47e49b0d41601b3787e460e98b78174d [file] [log] [blame]
Sheri Zhangd813bab2021-04-30 16:53:41 +01001///
Gunes Bayiree905002022-02-25 15:20:00 +00002/// Copyright (c) 2017-2022 Arm Limited.
Sheri Zhangd813bab2021-04-30 16:53:41 +01003///
4/// SPDX-License-Identifier: MIT
5///
6/// Permission is hereby granted, free of charge, to any person obtaining a copy
7/// of this software and associated documentation files (the "Software"), to
8/// deal in the Software without restriction, including without limitation the
9/// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10/// sell copies of the Software, and to permit persons to whom the Software is
11/// furnished to do so, subject to the following conditions:
12///
13/// The above copyright notice and this permission notice shall be included in all
14/// copies or substantial portions of the Software.
15///
16/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22/// SOFTWARE.
23///
24namespace arm_compute
25{
26/** @page how_to_build How to Build and Run Examples
27
28@tableofcontents
29
30@section S1_1_build_options Build options
31
32scons 2.3 or above is required to build the library.
Michalis Spyroua3f7cd22022-07-04 15:32:02 +010033To see the build options available simply run ```scons -h```
Freddie Liardetf289e572021-08-06 09:12:26 +010034
Sheri Zhangd813bab2021-04-30 16:53:41 +010035@section S1_2_linux Building for Linux
36
37@subsection S1_2_1_library How to build the library ?
38
39For Linux, the library was successfully built and tested using the following Linaro GCC toolchain:
40
41 - gcc-linaro-6.3.1-2017.05-x86_64_arm-linux-gnueabihf
42 - gcc-linaro-6.3.1-2017.05-x86_64_aarch64-linux-gnu
43
44To cross-compile the library in debug mode, with Arm® Neon™ only support, for Linux 32bit:
45
46 scons Werror=1 -j8 debug=1 neon=1 opencl=0 os=linux arch=armv7a
47
48To cross-compile the library in asserts mode, with OpenCL only support, for Linux 64bit:
49
Gunes Bayiree905002022-02-25 15:20:00 +000050 scons Werror=1 -j8 debug=0 asserts=1 neon=0 opencl=1 embed_kernels=1 os=linux arch=armv8a
Sheri Zhangd813bab2021-04-30 16:53:41 +010051
52You can also compile the library natively on an Arm device by using <b>build=native</b>:
53
Gunes Bayiree905002022-02-25 15:20:00 +000054 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=linux arch=armv8a build=native
Sheri Zhangd813bab2021-04-30 16:53:41 +010055 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=linux arch=armv7a build=native
56
57@note g++ for Arm is mono-arch, therefore if you want to compile for Linux 32bit on a Linux 64bit platform you will have to use a cross compiler.
58
59For example on a 64bit Debian based system you would have to install <b>g++-arm-linux-gnueabihf</b>
60
61 apt-get install g++-arm-linux-gnueabihf
62
63Then run
64
65 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=linux arch=armv7a build=cross_compile
66
67or simply remove the build parameter as build=cross_compile is the default value:
68
69 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=linux arch=armv7a
70
71@subsection S1_2_2_examples How to manually build the examples ?
72
73The examples get automatically built by scons as part of the build process of the library described above. This section just describes how you can build and link your own application against our library.
74
75@note The following command lines assume the arm_compute libraries are present in the current directory or in the system library path. If this is not the case you can specify the location of the pre-built libraries with the compiler option -L. When building the OpenCL example the commands below assume that the CL headers are located in the include folder where the command is executed.
76
77To cross compile a Arm® Neon™ example for Linux 32bit:
78
Jakub Sujakee301b32021-06-04 09:46:08 +010079 arm-linux-gnueabihf-g++ examples/neon_cnn.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -mfpu=neon -L. -larm_compute -larm_compute_core -o neon_cnn
Sheri Zhangd813bab2021-04-30 16:53:41 +010080
81To cross compile a Arm® Neon™ example for Linux 64bit:
82
Jakub Sujakee301b32021-06-04 09:46:08 +010083 aarch64-linux-gnu-g++ examples/neon_cnn.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -L. -larm_compute -larm_compute_core -o neon_cnn
Sheri Zhangd813bab2021-04-30 16:53:41 +010084
85(notice the only difference with the 32 bit command is that we don't need the -mfpu option and the compiler's name is different)
86
87To cross compile an OpenCL example for Linux 32bit:
88
Jakub Sujakee301b32021-06-04 09:46:08 +010089 arm-linux-gnueabihf-g++ examples/cl_sgemm.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -mfpu=neon -L. -larm_compute -larm_compute_core -o cl_sgemm -DARM_COMPUTE_CL
Sheri Zhangd813bab2021-04-30 16:53:41 +010090
91To cross compile an OpenCL example for Linux 64bit:
92
Jakub Sujakee301b32021-06-04 09:46:08 +010093 aarch64-linux-gnu-g++ examples/cl_sgemm.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -L. -larm_compute -larm_compute_core -o cl_sgemm -DARM_COMPUTE_CL
Sheri Zhangd813bab2021-04-30 16:53:41 +010094
95(notice the only difference with the 32 bit command is that we don't need the -mfpu option and the compiler's name is different)
96
97To cross compile the examples with the Graph API, such as graph_lenet.cpp, you need to link the examples against arm_compute_graph.so too.
98
99i.e. to cross compile the "graph_lenet" example for Linux 32bit:
100
101 arm-linux-gnueabihf-g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++14 -mfpu=neon -L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
102
103i.e. to cross compile the "graph_lenet" example for Linux 64bit:
104
105 aarch64-linux-gnu-g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++14 -L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
106
107(notice the only difference with the 32 bit command is that we don't need the -mfpu option and the compiler's name is different)
108
109@note If compiling using static libraries, this order must be followed when linking: arm_compute_graph_static, arm_compute, arm_compute_core
110
111To compile natively (i.e directly on an Arm device) for Arm® Neon™ for Linux 32bit:
112
Jakub Sujakee301b32021-06-04 09:46:08 +0100113 g++ examples/neon_cnn.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -mfpu=neon -larm_compute -larm_compute_core -o neon_cnn
Sheri Zhangd813bab2021-04-30 16:53:41 +0100114
115To compile natively (i.e directly on an Arm device) for Arm® Neon™ for Linux 64bit:
116
Jakub Sujakee301b32021-06-04 09:46:08 +0100117 g++ examples/neon_cnn.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -larm_compute -larm_compute_core -o neon_cnn
Sheri Zhangd813bab2021-04-30 16:53:41 +0100118
119(notice the only difference with the 32 bit command is that we don't need the -mfpu option)
120
121To compile natively (i.e directly on an Arm device) for OpenCL for Linux 32bit or Linux 64bit:
122
Jakub Sujakee301b32021-06-04 09:46:08 +0100123 g++ examples/cl_sgemm.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -larm_compute -larm_compute_core -o cl_sgemm -DARM_COMPUTE_CL
Sheri Zhangd813bab2021-04-30 16:53:41 +0100124
125To compile natively the examples with the Graph API, such as graph_lenet.cpp, you need to link the examples against arm_compute_graph.so too.
126
127i.e. to natively compile the "graph_lenet" example for Linux 32bit:
128
129 g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++14 -mfpu=neon -L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
130
131i.e. to natively compile the "graph_lenet" example for Linux 64bit:
132
133 g++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++14 -L. -larm_compute_graph -larm_compute -larm_compute_core -Wl,--allow-shlib-undefined -o graph_lenet
134
135(notice the only difference with the 32 bit command is that we don't need the -mfpu option)
136
137@note If compiling using static libraries, this order must be followed when linking: arm_compute_graph_static, arm_compute, arm_compute_core
138
Gunes Bayiree905002022-02-25 15:20:00 +0000139@note These two commands assume libarm_compute.so is available in your library path, if not add the path to it using -L (e.g. -Llib/linux-armv8a-neon-cl-asserts/)
Sheri Zhangd813bab2021-04-30 16:53:41 +0100140@note You might need to export the path to OpenCL library as well in your LD_LIBRARY_PATH if Compute Library was built with OpenCL enabled.
141
142To run the built executable simply run:
143
Jakub Sujakee301b32021-06-04 09:46:08 +0100144 LD_LIBRARY_PATH=build ./neon_cnn
Sheri Zhangd813bab2021-04-30 16:53:41 +0100145
146or
147
Jakub Sujakee301b32021-06-04 09:46:08 +0100148 LD_LIBRARY_PATH=build ./cl_sgemm
Sheri Zhangd813bab2021-04-30 16:53:41 +0100149
150@note Examples accept different types of arguments, to find out what they are run the example with \a --help as an argument. If no arguments are specified then random values will be used to execute the graph.
151
152For example:
153
154 LD_LIBRARY_PATH=. ./graph_lenet --help
155
156Below is a list of the common parameters among the graph examples :
157@snippet utils/CommonGraphOptions.h Common graph examples parameters
158
159@subsection S1_2_3_sve Build for SVE or SVE2
160
161In order to build for SVE or SVE2 you need a compiler that supports them. You can find more information in the following these links:
162 -# GCC: https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/sve-support
163 -# LLVM: https://developer.arm.com/tools-and-software/open-source-software/developer-tools/llvm-toolchain/sve-support
164
165@note You the need to indicate the toolchains using the scons "toolchain_prefix" parameter.
166
167An example build command with SVE is:
168
Gunes Bayiree905002022-02-25 15:20:00 +0000169 scons arch=armv8.2-a-sve os=linux build_dir=arm64 -j55 standalone=0 opencl=0 openmp=0 validation_tests=1 neon=1 cppthreads=1 toolchain_prefix=aarch64-none-linux-gnu-
Sheri Zhangd813bab2021-04-30 16:53:41 +0100170
171@section S1_3_android Building for Android
172
173For Android, the library was successfully built and tested using Google's standalone toolchains:
Gunes Bayiree905002022-02-25 15:20:00 +0000174 - clang++ from NDK r20b for armv8a
175 - clang++ from NDK r20b for armv8.2-a with FP16 support
Sheri Zhangd813bab2021-04-30 16:53:41 +0100176
177For NDK r18 or older, here is a guide to <a href="https://developer.android.com/ndk/guides/standalone_toolchain.html">create your Android standalone toolchains from the NDK</a>:
178- Download the NDK r18b from here: https://developer.android.com/ndk/downloads/index.html to directory $NDK
179- Make sure you have Python 2.7 installed on your machine.
Jakub Sujakee301b32021-06-04 09:46:08 +0100180- Generate the 32 and/or 64 toolchains by running the following commands to your toolchain directory $MY_TOOLCHAINS:
Sheri Zhangd813bab2021-04-30 16:53:41 +0100181
182 $NDK/build/tools/make_standalone_toolchain.py --arch arm64 --install-dir $MY_TOOLCHAINS/aarch64-linux-android-ndk-r18b --stl libc++ --api 21
SiCong Li56c3ca82022-05-19 18:43:33 +0100183
Sheri Zhangd813bab2021-04-30 16:53:41 +0100184 $NDK/build/tools/make_standalone_toolchain.py --arch arm --install-dir $MY_TOOLCHAINS/arm-linux-android-ndk-r18b --stl libc++ --api 21
185
186For NDK r19 or newer, you can directly <a href="https://developer.android.com/ndk/downloads">Download</a> the NDK package for your development platform, without the need to launch the make_standalone_toolchain.py script. You can find all the prebuilt binaries inside $NDK/toolchains/llvm/prebuilt/$OS_ARCH/bin/.
Pablo Marquez Telloab659ad2022-07-21 13:55:27 +0100187
SiCong Life1b1f62022-05-19 18:58:31 +0100188@parblock
189@attention The building script will look for a binary named "aarch64-linux-android-clang++", while the prebuilt binaries will have their API version as a suffix to their filename (e.g. "aarch64-linux-android21-clang++"). You can instruct scons to use the correct version by using a combination of the toolchain_prefix and the "CC" "CXX" environment variables.
190@attention For this particular example, you can specify:
Sheri Zhangd813bab2021-04-30 16:53:41 +0100191
SiCong Life1b1f62022-05-19 18:58:31 +0100192 CC=clang CXX=clang++ scons toolchain_prefix=aarch64-linux-android21-
193
194@attention or:
195
196 CC=aarch64-linux-android21-clang CXX=aarch64-linux-android21-clang++ scons toolchain_prefix=""
197
198@endparblock
199
200@parblock
Sheri Zhangd813bab2021-04-30 16:53:41 +0100201@attention We used to use gnustl but as of NDK r17 it is deprecated so we switched to libc++
SiCong Life1b1f62022-05-19 18:58:31 +0100202@endparblock
Sheri Zhangd813bab2021-04-30 16:53:41 +0100203
204@note Make sure to add the toolchains to your PATH:
205
206 export PATH=$PATH:$MY_TOOLCHAINS/aarch64-linux-android-ndk-r18b/bin:$MY_TOOLCHAINS/arm-linux-android-ndk-r18b/bin
207
208@subsection S1_3_1_library How to build the library ?
209
210To cross-compile the library in debug mode, with Arm® Neon™ only support, for Android 32bit:
211
212 CXX=clang++ CC=clang scons Werror=1 -j8 debug=1 neon=1 opencl=0 os=android arch=armv7a
213
214To cross-compile the library in asserts mode, with OpenCL only support, for Android 64bit:
215
Gunes Bayiree905002022-02-25 15:20:00 +0000216 CXX=clang++ CC=clang scons Werror=1 -j8 debug=0 asserts=1 neon=0 opencl=1 embed_kernels=1 os=android arch=armv8a
Sheri Zhangd813bab2021-04-30 16:53:41 +0100217
218@subsection S1_3_2_examples How to manually build the examples ?
219
220The examples get automatically built by scons as part of the build process of the library described above. This section just describes how you can build and link your own application against our library.
221
222@note The following command lines assume the arm_compute libraries are present in the current directory or in the system library path. If this is not the case you can specify the location of the pre-built libraries with the compiler option -L. When building the OpenCL example the commands below assume that the CL headers are located in the include folder where the command is executed.
223
224Once you've got your Android standalone toolchain built and added to your path you can do the following:
225
226To cross compile a Arm® Neon™ example:
227
228 #32 bit:
Jakub Sujakee301b32021-06-04 09:46:08 +0100229 arm-linux-androideabi-clang++ examples/neon_cnn.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -larm_compute-static -larm_compute_core-static -L. -o neon_cnn_arm -static-libstdc++ -pie
Sheri Zhangd813bab2021-04-30 16:53:41 +0100230 #64 bit:
Jakub Sujakee301b32021-06-04 09:46:08 +0100231 aarch64-linux-android-clang++ examples/neon_cnn.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -larm_compute-static -larm_compute_core-static -L. -o neon_cnn_aarch64 -static-libstdc++ -pie
Sheri Zhangd813bab2021-04-30 16:53:41 +0100232
233To cross compile an OpenCL example:
234
235 #32 bit:
Jakub Sujakee301b32021-06-04 09:46:08 +0100236 arm-linux-androideabi-clang++ examples/cl_sgemm.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -larm_compute-static -larm_compute_core-static -L. -o cl_sgemm_arm -static-libstdc++ -pie -DARM_COMPUTE_CL
Sheri Zhangd813bab2021-04-30 16:53:41 +0100237 #64 bit:
Jakub Sujakee301b32021-06-04 09:46:08 +0100238 aarch64-linux-android-clang++ examples/cl_sgemm.cpp utils/Utils.cpp -I. -Iinclude -std=c++14 -larm_compute-static -larm_compute_core-static -L. -o cl_sgemm_aarch64 -static-libstdc++ -pie -DARM_COMPUTE_CL
Sheri Zhangd813bab2021-04-30 16:53:41 +0100239
240To cross compile the examples with the Graph API, such as graph_lenet.cpp, you need to link the library arm_compute_graph also.
241
242 #32 bit:
243 arm-linux-androideabi-clang++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++14 -Wl,--whole-archive -larm_compute_graph-static -Wl,--no-whole-archive -larm_compute-static -larm_compute_core-static -L. -o graph_lenet_arm -static-libstdc++ -pie -DARM_COMPUTE_CL
244 #64 bit:
245 aarch64-linux-android-clang++ examples/graph_lenet.cpp utils/Utils.cpp utils/GraphUtils.cpp utils/CommonGraphOptions.cpp -I. -Iinclude -std=c++14 -Wl,--whole-archive -larm_compute_graph-static -Wl,--no-whole-archive -larm_compute-static -larm_compute_core-static -L. -o graph_lenet_aarch64 -static-libstdc++ -pie -DARM_COMPUTE_CL
246
247@note Due to some issues in older versions of the Arm® Mali™ OpenCL DDK (<= r13p0), we recommend to link arm_compute statically on Android.
248@note When linked statically the arm_compute_graph library currently needs the --whole-archive linker flag in order to work properly
249
250Then you need to do is upload the executable and the shared library to the device using ADB:
251
Jakub Sujakee301b32021-06-04 09:46:08 +0100252 adb push neon_cnn_arm /data/local/tmp/
253 adb push cl_sgemm_arm /data/local/tmp/
Sheri Zhangd813bab2021-04-30 16:53:41 +0100254 adb push gc_absdiff_arm /data/local/tmp/
255 adb shell chmod 777 -R /data/local/tmp/
256
257And finally to run the example:
258
Jakub Sujakee301b32021-06-04 09:46:08 +0100259 adb shell /data/local/tmp/neon_cnn_arm
260 adb shell /data/local/tmp/cl_sgemm_arm
Sheri Zhangd813bab2021-04-30 16:53:41 +0100261 adb shell /data/local/tmp/gc_absdiff_arm
262
263For 64bit:
264
Jakub Sujakee301b32021-06-04 09:46:08 +0100265 adb push neon_cnn_aarch64 /data/local/tmp/
266 adb push cl_sgemm_aarch64 /data/local/tmp/
Sheri Zhangd813bab2021-04-30 16:53:41 +0100267 adb push gc_absdiff_aarch64 /data/local/tmp/
268 adb shell chmod 777 -R /data/local/tmp/
269
270And finally to run the example:
271
Jakub Sujakee301b32021-06-04 09:46:08 +0100272 adb shell /data/local/tmp/neon_cnn_aarch64
273 adb shell /data/local/tmp/cl_sgemm_aarch64
Sheri Zhangd813bab2021-04-30 16:53:41 +0100274 adb shell /data/local/tmp/gc_absdiff_aarch64
275
276@note Examples accept different types of arguments, to find out what they are run the example with \a --help as an argument. If no arguments are specified then random values will be used to execute the graph.
277
278For example:
279 adb shell /data/local/tmp/graph_lenet --help
280
Jakub Sujakee301b32021-06-04 09:46:08 +0100281In this case the first argument of LeNet (like all the graph examples) is the target (i.e 0 to run on Neon™, 1 to run on OpenCL if available, 2 to run on OpenCL using the CLTuner), the second argument is the path to the folder containing the npy files for the weights and finally the third argument is the number of batches to run.
Sheri Zhangd813bab2021-04-30 16:53:41 +0100282
283@section S1_4_macos Building for macOS
284
285The library was successfully natively built for Apple Silicon under macOS 11.1 using clang v12.0.0.
286
287To natively compile the library with accelerated CPU support:
288
Gunes Bayiree905002022-02-25 15:20:00 +0000289 scons Werror=1 -j8 neon=1 opencl=0 os=macos arch=armv8a build=native
Sheri Zhangd813bab2021-04-30 16:53:41 +0100290
291@note Initial support disables feature discovery through HWCAPS and thread scheduling affinity controls
292
293@section S1_5_bare_metal Building for bare metal
294
295For bare metal, the library was successfully built using linaro's latest (gcc-linaro-6.3.1-2017.05) bare metal toolchains:
296 - arm-eabi for armv7a
Gunes Bayiree905002022-02-25 15:20:00 +0000297 - aarch64-elf for armv8a
Sheri Zhangd813bab2021-04-30 16:53:41 +0100298
Gunes Bayiree905002022-02-25 15:20:00 +0000299Download linaro for <a href="https://releases.linaro.org/components/toolchain/binaries/6.3-2017.05/arm-eabi/">armv7a</a> and <a href="https://releases.linaro.org/components/toolchain/binaries/6.3-2017.05/aarch64-elf/">armv8a</a>.
Sheri Zhangd813bab2021-04-30 16:53:41 +0100300
301@note Make sure to add the toolchains to your PATH: export PATH=$PATH:$MY_TOOLCHAINS/gcc-linaro-6.3.1-2017.05-x86_64_aarch64-elf/bin:$MY_TOOLCHAINS/gcc-linaro-6.3.1-2017.05-x86_64_arm-eabi/bin
302
303@subsection S1_5_1_library How to build the library ?
304
Gunes Bayiree905002022-02-25 15:20:00 +0000305To cross-compile the library with Arm® Neon™ support for baremetal armv8a:
Sheri Zhangd813bab2021-04-30 16:53:41 +0100306
Gunes Bayiree905002022-02-25 15:20:00 +0000307 scons Werror=1 -j8 debug=0 neon=1 opencl=0 os=bare_metal arch=armv8a build=cross_compile cppthreads=0 openmp=0 standalone=1
Sheri Zhangd813bab2021-04-30 16:53:41 +0100308
309@subsection S1_5_2_examples How to manually build the examples ?
310
311Examples are disabled when building for bare metal. If you want to build the examples you need to provide a custom bootcode depending on the target architecture and link against the compute library. More information about bare metal bootcode can be found <a href="http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dai0527a/index.html">here</a>.
312
Pablo Marquez Telloab659ad2022-07-21 13:55:27 +0100313@section S1_6_windows_host Building on a Windows host system (cross-compile)
Sheri Zhangd813bab2021-04-30 16:53:41 +0100314
315Using `scons` directly from the Windows command line is known to cause
316problems. The reason seems to be that if `scons` is setup for cross-compilation
317it gets confused about Windows style paths (using backslashes). Thus it is
318recommended to follow one of the options outlined below.
319
Pablo Marquez Telloab659ad2022-07-21 13:55:27 +0100320@subsection S1_6_1_ubuntu_on_windows Bash on Ubuntu on Windows (cross-compile)
Sheri Zhangd813bab2021-04-30 16:53:41 +0100321
322The best and easiest option is to use
323<a href="https://msdn.microsoft.com/en-gb/commandline/wsl/about">Ubuntu on Windows</a>.
324This feature is still marked as *beta* and thus might not be available.
325However, if it is building the library is as simple as opening a *Bash on
326Ubuntu on Windows* shell and following the general guidelines given above.
327
Pablo Marquez Telloab659ad2022-07-21 13:55:27 +0100328@subsection S1_6_2_cygwin Cygwin (cross-compile)
Sheri Zhangd813bab2021-04-30 16:53:41 +0100329
330If the Windows subsystem for Linux is not available <a href="https://www.cygwin.com/">Cygwin</a>
331can be used to install and run `scons`, the minimum Cygwin version must be 3.0.7 or later. In addition
332to the default packages installed by Cygwin `scons` has to be selected in the installer. (`git` might
333also be useful but is not strictly required if you already have got the source
334code of the library.) Linaro provides pre-built versions of
335<a href="http://releases.linaro.org/components/toolchain/binaries/">GCC cross-compilers</a>
336that can be used from the Cygwin terminal. When building for Android the
337compiler is included in the Android standalone toolchain. After everything has
338been set up in the Cygwin terminal the general guide on building the library
339can be followed.
340
Pablo Marquez Telloab659ad2022-07-21 13:55:27 +0100341@subsection S1_6_3_WoA Windows on ARM (native build)
342
343 Native builds on Windows are experimental and some features from the library interacting with the OS are missing.
344
345It's possible to build Compute Library natively on a windows system running on ARM.
346
347Windows on ARM(WoA) systems provide compatibility emulating x86 binaries on aarch64. Unfortunately Visual Studio 2022 does not work on aarch64 systems because it's an x86_64bit application and these binaries cannot be exectuted on WoA yet.
348
349Because we cannot use Visual Studio to build Compute Library we have to set up a native standalone toolchain to compile C++ code for arm64 on Windows.
350
351Native arm64 toolchain installation for WoA:
352- LLVM+Clang-12 which can be downloaded from: https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.0/LLVM-12.0.0-woa64.exe
353- Arm64 VC Runtime which can be downloaded from https://aka.ms/vs/17/release/vc_redist.arm64.exe
354
355- While full VS22 cannot be installed on WoA, we can install some components
356 -# Desktop development with C++ and all Arm64 components for Visual Studio, refer to: https://developer.arm.com/documentation/102528/0100/Install-Visual-Studio
357 -# VS22 build tools: https://visualstudio.microsoft.com/downloads/#build-tools-for-visual-studio-2022
358
359There are some additional tools we need to install to build Compute Library:
360
361- git https://git-scm.com/download/win
362- python 3 https://www.python.org/downloads/windows/
363- scons can be installed with pip install scons
364
365In order to use clang to build windows binaries natively we have to initialize the environment variables from VS22 correctly so that the compiler could find the arm64 C++ libraries. This can be done by pressing the key windows + r and running the command:
366
367 cmd /k "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsx86_arm64.bat"
368
369To build Compute Library type:
370
371 scons opencl=0 neon=1 os=windows examples=0 validation_tests=1 benchmark_examples=0 build=native arch=armv8a Werror=0 exceptions=1 standalone=1
372
Sheri Zhangd813bab2021-04-30 16:53:41 +0100373@section S1_7_cl_requirements OpenCL DDK Requirements
374
375@subsection S1_7_1_cl_hard_requirements Hard Requirements
376
377Compute Library requires OpenCL 1.1 and above with support of non uniform workgroup sizes, which is officially supported in the Arm® Mali™ OpenCL DDK r8p0 and above as an extension (respective extension flag is \a -cl-arm-non-uniform-work-group-size).
378
379Enabling 16-bit floating point calculations require \a cl_khr_fp16 extension to be supported. All Arm® Mali™ GPUs with compute capabilities have native support for half precision floating points.
380
381@subsection S1_7_2_cl_performance_requirements Performance improvements
382
383Integer dot product built-in function extensions (and therefore optimized kernels) are available with Arm® Mali™ OpenCL DDK r22p0 and above for the following GPUs : G71, G76. The relevant extensions are \a cl_arm_integer_dot_product_int8, \a cl_arm_integer_dot_product_accumulate_int8 and \a cl_arm_integer_dot_product_accumulate_int16.
384
385OpenCL kernel level debugging can be simplified with the use of printf, this requires the \a cl_arm_printf extension to be supported.
386
387SVM allocations are supported for all the underlying allocations in Compute Library. To enable this OpenCL 2.0 and above is a requirement.
388
389*/
390} // namespace arm_compute