Skip to content

Ci - Updates#9

Merged
simonCatBot merged 9 commits into
masterfrom
develop
May 8, 2026
Merged

Ci - Updates#9
simonCatBot merged 9 commits into
masterfrom
develop

Conversation

@kiritigowda

Copy link
Copy Markdown
Owner
  • Readme cleanup
  • Benchmark for CI

kiritigowda and others added 9 commits May 7, 2026 14:11
Two bugs caused 4 openvx-mark pipelines (EdgeDetection,
HistogramEqualize, HarrisTracker, ThresholdedEdge) to fail at
vxProcessGraph after vxVerifyGraph succeeded:

1. vxCreateVirtualImage(g, w, h, FORMAT) records dims+format but
   leaves data = Vec::new(). The verify-time allocation loop saw
   non-zero dims+format and skipped allocation, so ColorConvert
   later returned VX_ERROR_INVALID_PARAMETERS when dst_data.len()
   was 0. Now we only skip dimension *inference* when dims are
   known and still ensure the data buffer is sized.

2. infer_virtual_image_dimensions ignored the user-specified format
   on a vxCreateVirtualImage(g, 0, 0, FORMAT) image and re-inferred
   it from the producer. For a user-declared U8 fed by Magnitude
   (S16), the image was silently retyped to S16, so the next
   ConvertDepth(S16->S16) returned VX_ERROR_INVALID_FORMAT. Now we
   preserve any user-specified non-VIRT format and only infer
   dimensions from the producer; VX_DF_IMAGE_VIRT is consistently
   treated as "format unknown".

After the fix, openvx-mark reports 52/52 passed, 0 skipped, 0
failed against rustVX (was 48/52 with 4 skipped).

Co-authored-by: Cursor <cursoragent@cursor.com>
@simonCatBot simonCatBot merged commit 40b3c53 into kiritigowda:master May 8, 2026
14 checks passed
@kiritigowda kiritigowda deleted the develop branch May 8, 2026 19:01
kiritigowda added a commit that referenced this pull request May 8, 2026
* docs: fix broken CI badges and fill in README gaps

The conformance workflow no longer runs on `develop` (the branch was
merged into `main` via PR #9 and removed), so every status badge in
the README was rendering as "no status". Repointing all badge URLs at
`main` restores them.

While here, document Cargo features (simd / sse2 / avx2 / neon /
parallel), add a minimal C-side usage and linking snippet, mention
the bundled OpenVX headers, surface the existing `cargo test` /
Criterion bench / openvx-mark-vs-Khronos-sample workflows, and add a
Contributing section.

Co-authored-by: Cursor <cursoragent@cursor.com>

* ci: skip conformance on docs-only changes; remove APIsec scan

- Add `paths-ignore` (`**/*.md`, `docs/**`, `LICENSE`) to both the
  push and pull_request triggers of the conformance workflow so
  documentation-only edits no longer spin up the full CTS + benchmark
  matrix.
- Drop the GitHub starter `apisec-scan.yml` workflow. It targeted the
  unrelated `VAmPI` APIsec project, depended on missing
  `apisec_username` / `apisec_password` secrets, and was effectively
  dead weight on every push and pull request.

Co-authored-by: Cursor <cursoragent@cursor.com>

* docs: note benchmark report in CI job summary and artifacts

Point readers at the rustVX-vs-Khronos comparison table that the
Benchmark & compare job writes to the GitHub Actions job summary,
and at the JSON benchmark artifacts (benchmark-results-rustvx,
benchmark-results-khronos-sample, benchmark-comparison) attached to
every workflow run.

Co-authored-by: Cursor <cursoragent@cursor.com>

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants