CI: Add GitHub Actions workflow for conformance tests and performance benchmarking#61
Merged
kiritigowda merged 1 commit intoJun 20, 2026
Conversation
… benchmarking Modeled after kiritigowda/rustVX conformance.yml workflow. Phase 1 (parallel): - build-debug: Debug build with all extensions + coverage flags - build-release: Release build with all extensions (for benchmarking) - build-cts: Build Khronos CTS against debug install Phase 2 (parallel, needs build-cts): - cts-baseline: Smoke tests + code coverage collection - cts-enhanced-vision, cts-neural-networks, cts-ix, cts-graph-features, cts-data-objects, cts-user-kernels: Stage-based CTS runs with --filter, matching rustVX pattern Phase 3 (PR only, needs build-release + build-main): - build-main: Build target branch release for comparison - perf-gate: Clone openvx-mark, build against PR and main, run benchmarks, compare results Known issues (marked continue-on-error): - cts-neural-networks: TensorNetworks.AlexNetTestNetwork fails to load weights (missing test_data file, pre-existing) - cts-graph-features: GraphPipeline.* fails (pipelining incomplete in C model target, pre-existing) Removed legacy .travis.yml and .gitlab-ci.yml. Excluded --conf_nnef due to NNEF-Tools GCC 11 incompatibility.
|
Simon seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replaces legacy Travis CI and GitLab CI with a GitHub Actions workflow modeled after
kiritigowda/rustVX/.github/workflows/conformance.yml.What this PR does
.travis.ymland.gitlab-ci.yml.github/workflows/ci.ymlwith three phases:Phase 1 — Build (parallel)
build-debug: Debug build with all extensions + coverage flags (-fprofile-arcs -ftest-coverage)build-release: Release build with all extensions (for benchmarking)build-cts: Build Khronos CTS against the debug installPhase 2 — Test (parallel, needs build-cts)
cts-baseline: Smoke tests + code coverage collectioncts-enhanced-vision,cts-neural-networks,cts-ix,cts-graph-features,cts-data-objects,cts-user-kernels: Stage-based CTS runs with--filter, matching the rustVX conformance patternPhase 3 — Performance gate (PR only, needs build-release + build-main)
build-main: Build the merge target (main/openvx_1.3) release for comparisonperf-gate\: Cloneopenvx-mark`, build against PR and main releases, run benchmarks, compare resultsDesign decisions
chmod +xafter artifact download:actions/download-artifact@v4strips executable permissionscontinue-on-error: truefor known pre-existing failures (not regressions):cts-neural-networks:AlexNetTestNetworkfails to load weights (missing test_data file)cts-graph-features:GraphPipeline.*fails (pipelining incomplete in C model target)--conf_nnefdue to NNEF-Tools C++ parser GCC 11 incompatibilityNotes
This PR is intentionally separate from #60 (bug-fix PR) so CI infrastructure can be reviewed and merged independently.
cc: @kiritigowda — modeled after rustVX conformance workflow, thanks for the reference!