We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
A 5-minute path from clone to a working build.
Check your setup:
rocminfo | grep gfx # confirm GPU arch amdclang++ --version # confirm AMD Clang
git clone https://github.com/ROCm/rocCV.git cd rocCV
Branch from develop, not main:
develop
main
git checkout develop git checkout -b <your-name>/<feature>
mkdir build && cd build cmake ../ cmake --build . --parallel
That's it. Library lands in build/lib/, Python module in build/lib/rocpycv*.so.
build/lib/
build/lib/rocpycv*.so
export PYTHONPATH=$PWD/lib:$PYTHONPATH python3 -c "import rocpycv; print(rocpycv.__doc__)"