Open peter197321 opened 5 years ago
I see error on
:~/OpenVX-cts/build# cmake --build . Scanning dependencies of target vx_test_conformance [ 1%] Building C object CMakeFiles/vx_test_conformance.dir/test_accumulate.o /home/root/OpenVX-cts/test_conformance/test_accumulate.c:18:10: fatal error: test_engine/test.h: No such file or directory #include "test_engine/test.h" ^~~~~~~~~~~~~~~~~~~~ compilation terminated. make[2]: *** [CMakeFiles/vx_test_conformance.dir/build.make:63: CMakeFiles/vx_test_conformance.dir/test_accumulate.o] Error 1 make[1]: *** [CMakeFiles/Makefile2:73: CMakeFiles/vx_test_conformance.dir/all] Error 2 make: *** [Makefile:130: all] Error 2
Have compiled this repo: https://github.com/KhronosGroup/OpenVX-sample-impl and generated the necessary library files required ?
Can you try the build and run instructions below.
git clone --recursive https://github.com/KhronosGroup/OpenVX-sample-impl.git
cd OpenVX-sample-impl/
python Build.py --os=Linux --arch=64 --conf=Debug --conf_vision --enh_vision --conf_nn
export OPENVX_DIR=$(pwd)/install/Linux/x64/Debug
export VX_TEST_DATA_PATH=$(pwd)/cts/test_data/
mkdir build-cts
cd build-cts
cmake -DOPENVX_INCLUDES=$OPENVX_DIR/include -DOPENVX_LIBRARIES=$OPENVX_DIR/bin/libopenvx.so\;$OPENVX_DIR/bin/libvxu.so\;pthread\;dl\;m\;rt -DOPENVX_CONFORMANCE_VISION=ON -DOPENVX_USE_ENHANCED_VISION=ON -DOPENVX_CONFORMANCE_NEURAL_NETWORKS=ON ../cts/
cmake --build .
LD_LIBRARY_PATH=./lib ./bin/vx_test_conformance
I see error on