Prerequisites for Deep Learning with MATLAB Coder
bat365 Products
To use MATLAB® Coder™ to generate code for deep learning networks, you must also install:
Deep Learning Toolbox™
MATLAB Coder Interface for Deep Learning
Generate Code That Does Not Use Third-Party Libraries
You can use MATLAB Coder to generate generic C or C++ code for deep learning networks. Such C or C++ code does not depend on any third-party libraries. For more information, see Generate Generic C/C++ Code for Deep Learning Networks.
MATLAB Coder locates and uses a supported installed compiler. For the list of supported compilers, see Supported and Compatible Compilers on the bat365® website.
You can use mex -setup
to change the default compiler. See Change Default Compiler.
The C++ compiler must support C++11.
On Windows®, to generate generic C or C++ code that does not use any third-party libraries, use Microsoft® Visual Studio® or the MinGW® compiler.
Generate Code That Uses Third-Party Libraries
You can use MATLAB Coder to generate C++ code for deep learning networks that you deploy to Intel® or ARM® processors. The generated code takes advantage of deep learning libraries optimized for the target CPU. The hardware and software requirements depend on the target platform.
Note
The paths to the required software libraries must not contain spaces or special characters, such as parentheses. On Windows operating systems, special characters and spaces are allowed only if 8.3 file names are enabled. For more information on 8.3 file names, refer to the Windows documentation.
Hardware and Software Requirements
Intel CPUs | ARM Cortex-A CPUs | ARM Cortex-M CPUs | |
---|---|---|---|
Hardware Requirements | Intel processor with support for Intel Advanced Vector Extensions 2 (Intel
| ARM Cortex-A processors that support the | ARM Cortex-M processors. |
Software Libraries | Intel Math Kernel Library for Deep Neural Networks (MKL-DNN), v1.4. See https://github.com/oneapi-src/oneDNN Do not use a prebuilt library because some required files are missing. Instead, build the library from the source code. See instructions for building the library on GitHub®. For more information on build, see this post in MATLAB Answers™: /matlabcentral/answers/447387-matlab-coder-how-do-i-build-the-intel-mkl-dnn-library-for-deep-learning-c-code-generation-and-dep Usage notes:
| ARM Compute Library for computer vision and machine learning, versions 19.05 and 20.02.1. See https://developer.arm.com/ip-products/processors/machine-learning/compute-library Specify the version number in a Do not use a prebuilt library because it might be incompatible with the compiler on the ARM hardware. Instead, build the library from the source code. Build the library on either your host machine or directly on the target hardware. See instructions for building the library version 20.02.1 on GitHub. The folder that contains the library files such as
For more information on build, see this post in MATLAB Answers: /matlabcentral/answers/455590-matlab-coder-how-do-i-build-the-arm-compute-library-for-deep-learning-c-code-generation-and-deplo To deploy generated code that performs inference computations in 8-bit integers on ARM processors, you must use ARM Compute library version 20.02.1. | CMSIS-NN library version 5.7.0. See https://www.keil.arm.com/cmsis Build the library on your host machine using build steps provided in:
|
Operating System Support | Windows, Linux®, and macOS. | Windows and Linux only. | Windows and Linux only. |
Supported Compilers | MATLAB Coder locates and uses a supported installed compiler. For the list of supported compilers, see Supported and Compatible Compilers on the bat365 website. You can use The C++ compiler must support C++11. On
Windows, to generate code that uses the Intel MKL-DNN library by using the Note On Windows, for generating MEX function that uses the Intel MKL-DNN library, the MinGW compiler is not supported. | ||
Other | Open Source Computer Vision Library (OpenCV), v3.1.0 is required for the ARM Cortex-A based deep learning examples. Note: The
examples require separate libraries such as For more information, refer to the OpenCV documentation. |
Environment Variables
MATLAB Coder uses environment variables to locate the libraries required to generate code for deep learning networks.
Platform | Variable Name | Description |
---|---|---|
Windows | INTEL_MKLDNN | Path to the root folder of the Intel MKL-DNN library installation. For example:
|
ARM_COMPUTELIB | Path to the root folder of the ARM Compute Library installation on the ARM target hardware. For example:
Set
| |
CMSISNN_PATH | Path to the root folder of the CMSIS-NN library installation on the ARM target hardware. For example:
Set
| |
PATH | Path to the Intel MKL-DNN library folder. For example:
| |
Linux | LD_LIBRARY_PATH | Path to the Intel MKL-DNN library folder. For example:
|
Path to the ARM Compute Library folder on the target hardware. For example:
Set
| ||
INTEL_MKLDNN | Path to the root folder of the Intel MKL-DNN library installation. For example:
| |
ARM_COMPUTELIB | Path to the root folder of the ARM Compute Library installation on the ARM target hardware. For example:
Set
| |
CMSISNN_PATH | Path to the root folder of the CMSIS-NN library installation on the ARM target hardware. For example:
Set
| |
macOS | INTEL_MKLDNN | Path to the root folder of the Intel MKL-DNN library installation. For example:
|
UNIX® based OS on ARM Cortex-A targets | OPENCV_DIR | Path to the build folder of OpenCV. Install OpenCV for deep learning examples that use OpenCV. For example:
|
Note
To generate code for Raspberry Pi® using the MATLAB Support Package for Raspberry Pi Hardware, you must set the environment variables non-interactively. For instructions, see /matlabcentral/answers/455591-matlab-coder-how-do-i-setup-the-environment-variables-on-arm-targets-to-point-to-the-arm-compute-li
Note
To build and run examples that use OpenCV, you must install the OpenCV libraries on
the target board. For OpenCV installations on Linux, make sure that the path to the library files and the path to the header
files are on the system path. By default, the library and header files are installed in
a standard location such as /usr/local/lib/
and
/usr/local/include/opencv
, respectively.
For OpenCV installations on the target board, set the OPENCV_DIR
and PATH
environment variables as described in the previous
table.
Note
You might be able to improve the performance of the code generated for Intel CPU-s by setting environment variables that control the binding of OpenMP
threads to physical processing units. For example, on the Linux platform, set the KMP_AFFINITY
environment variable to
scatter
. For other platforms using Intel CPU-s, you might be able to set similar environment variables to improve
the performance of the generated code.