[!NOTE] The published documentation is available at MIVisionX in an organized, easy-to-read format, with search and a table of contents. The documentation source files reside in the
docs
folder of this repository. As with all ROCm projects, the documentation is open source. For more information on contributing to the documentation, see Contribute to ROCm documentation.
MIVisionX toolkit is a set of comprehensive computer vision and machine intelligence libraries, utilities, and applications bundled into a single toolkit. AMD MIVisionX delivers highly optimized conformant open-source implementation of the Khronos OpenVX™ and OpenVX™ Extensions along with Convolution Neural Net Model Compiler & Optimizer supporting ONNX, and Khronos NNEF™ exchange formats. The toolkit allows for rapid prototyping and deployment of optimized computer vision and machine learning inference workloads on a wide range of computer hardware, including small embedded x86 CPUs, APUs, discrete GPUs, and heterogeneous servers.
AMD OpenVX™ is a highly optimized conformant open source implementation of the Khronos OpenVX™ 1.3 computer vision specification. It allows for rapid prototyping as well as fast execution on a wide range of computer hardware, including small embedded x86 CPUs and large workstation discrete GPUs.
Khronos OpenVX™ 1.0.1 conformant implementation is available in MIVisionX Lite
The OpenVX framework provides a mechanism to add new vision functionality to OpenVX by vendors. This project has below listed OpenVX modules and utilities to extend amd_openvx, which contains the AMD OpenVX™ Core Engine.
vision
/ generic
/ user-defined
functions, available in OpenVX and OpenCV interop, to the input and output of the neural net model. This extension aims to help developers to build an end to end application for inference.MIVisionX has several applications built on top of OpenVX modules. These applications can serve as excellent prototypes and samples for developers to build upon.
Neural net model compiler and optimizer converts pre-trained neural net models to MIVisionX runtime code for optimized inference.
MIVisionX Toolkit is a comprehensive set of helpful tools for neural net creation, development, training, and deployment. The Toolkit provides useful tools to design, develop, quantize, prune, retrain, and infer your neural network work in any framework. The Toolkit has been designed to help you deploy your work on any AMD or 3rd party hardware, from embedded to servers.
MIVisionX toolkit provides tools for accomplishing your tasks throughout the whole neural net life-cycle, from creating a model to deploying them for your target platforms.
Mobile
/Embedded
[optional][!IMPORTANT] Some modules in MIVisionX can be built for
CPU ONLY
. To take advantage ofAdvanced Features And Modules
we recommend usingAMD GPUs
orAMD APUs
.
22.04
/ 24.04
8
/ 9
15-SP5
10
/ 11
13
/ Sonoma 14
/ Sequoia 15
18.0.0
or later - installed with ROCm3.10
and above
sudo apt install cmake
1.12.0
sudo apt install half
sudo apt install miopen-hip-dev
sudo apt install migraphx-dev
sudo apt install rpp-dev
3.X
/4.X
sudo apt install libopencv-dev
sudo apt install libomp-dev
sudo apt install pkg-config
4.X
sudo apt install ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev
[!IMPORTANT]
On
Ubuntu 22.04
- Additional package required:libstdc++-12-dev
sudo apt install libstdc++-12-dev
[!NOTE] All package installs are shown with the
apt
package manager. Use the appropriate package manager for your operating system.
The installation process uses the following steps:
ROCm-supported hardware install verification
Install ROCm 6.1.0
or later with amdgpu-install with --usecase=rocm
[!IMPORTANT] Use either package install or source install as described below.
Install MIVisionX runtime, development, and test packages.
mivisionx
only provides the dynamic libraries and executablesmivisionx-dev
/mivisionx-devel
provides the libraries, executables, header files, and samplesmivisionx-test
provides ctest to verify installation sudo apt-get install mivisionx mivisionx-dev mivisionx-test
sudo yum install mivisionx mivisionx-devel mivisionx-test
sudo zypper install mivisionx mivisionx-devel mivisionx-test
[!IMPORTANT]
- Package install supports
HIP
backend. For OpenCL backend build from source.CentOS
/RedHat
/SLES
requiresOpenCV
&FFMPEG
development packages manually installed
For your convenience, we provide the setup script, MIVisionX-setup.py
, which installs all required dependencies.
python MIVisionX-setup.py --directory [setup directory - optional (default:~/)]
--opencv [OpenCV Version - optional (default:4.6.0)]
--ffmpeg [FFMPEG Installation - optional (default:ON) [options:ON/OFF]]
--amd_rpp [MIVisionX VX RPP Dependency Install - optional (default:ON) [options:ON/OFF]]
--neural_net[MIVisionX Neural Net Dependency Install - optional (default:ON) [options:ON/OFF]]
--inference [MIVisionX Inference Dependency Install - optional (default:ON) [options:ON/OFF]]
--developer [Setup Developer Options - optional (default:OFF) [options:ON/OFF]]
--reinstall [Remove previous setup and reinstall (default:OFF)[options:ON/OFF]]
--backend [MIVisionX Dependency Backend - optional (default:HIP) [options:HIP/OCL/CPU]]
--rocm_path [ROCm Installation Path - optional (default:/opt/rocm ROCm Installation Required)]
[!NOTE]
- Install ROCm before running the setup script
- This script only needs to be executed once
- ROCm upgrade requires the setup script rerun
Clone MIVisionX git repository
git clone https://github.com/ROCm/MIVisionX.git
[!IMPORTANT] MIVisionX has support for two GPU backends: OPENCL and HIP
Instructions for building MIVisionX with the HIP GPU backend (default backend):
cd MIVisionX
python MIVisionX-setup.py
mkdir build-hip
cd build-hip
cmake ../
make -j8
sudo make install
make test
Instructions for building MIVisionX with OPENCL GPU backend
OpenCV_DIR
environment variable to OpenCV/build
folder%OpenCV_DIR%\x64\vc14\bin
or %OpenCV_DIR%\x64\vc15\bin
to your PATH
MIVisionX.sln
to build for x64 platform[!IMPORTANT] Some modules in MIVisionX are only supported on Linux
macOS build instructions
[!IMPORTANT] macOS only supports MIVisionX CPU backend on
x86
processors
/opt/rocm/bin
/opt/rocm/lib
/opt/rocm/include/mivisionx
/opt/rocm/share/mivisionx
/opt/rocm/share/doc/mivisionx
/opt/rocm/libexec/mivisionx
Canny Edge Detection
export PATH=$PATH:/opt/rocm/bin
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/rocm/lib
runvx /opt/rocm/share/mivisionx/samples/gdf/canny.gdf
[!NOTE]
- More samples are available here
- For
macOS
useexport DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:/opt/rocm/lib
Test package will install ctest module to test MIVisionX. Follow below steps to test packge install
mkdir mivisionx-test && cd mivisionx-test
cmake /opt/rocm/share/mivisionx/test/
ctest -VV
MIVisionX.sln
builds the libraries & executables in the folder MIVisionX/x64
Use RunVX
to test the build
./runvx.exe ADD_PATH_TO/MIVisionX/samples/gdf/skintonedetect.gdf
MIVisionX provides developers with docker images for Ubuntu 20.04
/ 22.04
. Using docker images developers can quickly prototype and build applications without having to be locked into a single system setup or lose valuable time figuring out the dependencies of the underlying software.
Docker files to build MIVisionX containers and suggested workflow are available
Run the steps below to build documentation locally.
cd docs
pip3 install -r sphinx/requirements.txt
python3 -m sphinx -T -E -b html -d _build/doctrees -D language=en . _build/html
doxygen .Doxyfile
Please email mivisionx.support@amd.com
for questions, and feedback on MIVisionX.
Please submit your feature requests, and bug reports on the GitHub issues page.
Review all notable changes with the latest release
10
/ 11
22.04
/ 24.04
8
/ 9
15-SP5
6.3.0
1.9.0.60300
3.2.0.60300
2.11.0.60300
4.6
V3.8.0
OpenCV
manual installRHEL
/SLES
/CentOS
requires manual FFMPEG Dev
installDocker Image: sudo docker build -f docker/ubuntu20/{DOCKER_LEVEL_FILE_NAME}.dockerfile -t {mivisionx-level-NUMBER} .
new component added to the level
existing component from the previous level
[!IMPORTANT] OpenVX and the OpenVX logo are trademarks of the Khronos Group Inc.