remove -mfpu=neon for aarch64 #50
Open
Travis CI / Travis CI - Pull Request
failed
Apr 15, 2025 in 58s
Build Failed
The build failed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #50 remove -mfpu=neon for aarch64.
Any changes that have been made to the openvx_1.3 branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
| Build Option | Setting |
|---|---|
| Language | C |
| Operating System | Linux (Focal) |
| Compiler Version | gcc |
Build Configuration
{
"language": "c",
"os": [
"linux"
],
"dist": "focal",
"sudo": false,
"compiler": [
"gcc"
],
"addons": {
"apt": {
"sources": [
{
"name": "ubuntu-toolchain-r-test"
}
],
"packages": [
"lcov"
]
}
},
"branches": {
"only": [
"openvx_1.3.1",
"openvx_1.3"
]
},
"before_script": [
"git submodule sync --recursive",
"git submodule update --init --recursive --remote"
],
"script": [
"python Build.py --os=Linux --conf=Release",
"python Build.py --os=Linux --conf=Debug",
"export OPENVX_DIR=$(pwd)/install/Linux/x64/Debug",
"export VX_TEST_DATA_PATH=$(pwd)/cts/test_data/",
"mkdir build-cts-travis-mode",
"rm -rf install/Linux/x64/Debug",
"python Build.py --os=Linux --arch=64 --conf=Debug --conf_vision --enh_vision --conf_nn --c_flags=\"-fprofile-arcs -ftest-coverage\" --cpp_flags=\"-fprofile-arcs -ftest-coverage\"",
"cd build-cts-travis-mode",
"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",
"cd ../",
"export OPENVX_DIR=$(pwd)/install/Linux/x64/Release",
"mkdir build-cts-mode-1",
"rm -rf install/Linux/x64/Release",
"python Build.py --os=Linux --arch=64 --conf=Release --conf_vision",
"cd build-cts-mode-1",
"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 ../cts/",
"cmake --build .",
"cd ../",
"mkdir build-cts-mode-2",
"rm -rf install/Linux/x64/Release",
"python Build.py --os=Linux --arch=64 --conf=Release --conf_vision --enh_vision",
"cd build-cts-mode-2",
"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 ../cts/",
"cmake --build .",
"cd ../",
"mkdir build-cts-mode-3",
"rm -rf install/Linux/x64/Release",
"python Build.py --os=Linux --arch=64 --conf=Release --conf_nn",
"cd build-cts-mode-3",
"cmake -DOPENVX_INCLUDES=$OPENVX_DIR/include -DOPENVX_LIBRARIES=$OPENVX_DIR/bin/libopenvx.so\\;$OPENVX_DIR/bin/libvxu.so\\;pthread\\;dl\\;m\\;rt -DOPENVX_CONFORMANCE_NEURAL_NETWORKS=ON ../cts/",
"cmake --build .",
"cd ../",
"mkdir build-cts-mode-4",
"rm -rf install/Linux/x64/Release",
"python Build.py --os=Linux --arch=64 --conf=Release --conf_nnef",
"cd build-cts-mode-4",
"cmake -DOPENVX_INCLUDES=$OPENVX_DIR/include -DOPENVX_LIBRARIES=$OPENVX_DIR/bin/libopenvx.so\\;$OPENVX_DIR/bin/libvxu.so\\;$OPENVX_DIR/bin/libnnef-lib.a\\;pthread\\;dl\\;m\\;rt -DOPENVX_CONFORMANCE_NNEF_IMPORT=ON ../cts/",
"cmake --build .",
"LD_LIBRARY_PATH=./lib ./bin/vx_test_conformance --filter=*TensorNNEF*",
"cd ../",
"mkdir build-cts-mode-5",
"rm -rf install/Linux/x64/Release",
"python Build.py --os=Linux --arch=64 --conf=Release --conf_vision --enh_vision --conf_nn --nn --ix",
"cd build-cts-mode-5",
"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 -DOPENVX_USE_NN=ON -DOPENVX_USE_IX=ON ../cts/",
"cmake --build .",
"cd ../",
"mkdir build-cts-mode-6",
"rm -rf install/Linux/x64/Release",
"python Build.py --os=Linux --arch=64 --conf=Release --conf_vision --enh_vision --pipelining --streaming"
],
"after_success": [
"lcov --directory . --capture --output-file coverage.info",
"lcov --remove coverage.info '/usr/*' --output-file coverage.info",
"lcov --list coverage.info",
"bash <(curl -s https://codecov.io/bash) || echo \"codecov did not collect coverage reports\""
],
"notifications": {
"email": [
{
"recipients": [
"brill@cadence.com"
]
},
{
"recipients": [
"jesse.villarreal@ti.com"
]
},
{
"recipients": [
"kiriti.nageshgowda@amd.com"
]
}
]
}
}
Loading