Skip to content

GPGPU-in-Rust: device sub-option for the Rust backend (supersedes Python compute_backend) - #109

Merged
seonghobae merged 11 commits into
mainfrom
feat/rust-gpgpu
Jul 10, 2026
Merged

GPGPU-in-Rust: device sub-option for the Rust backend (supersedes Python compute_backend)#109
seonghobae merged 11 commits into
mainfrom
feat/rust-gpgpu

Conversation

@seonghobae

Copy link
Copy Markdown
Contributor

Summary

This PR delivers GPU support for the estimator by doing GPGPU inside the Rust core, unifying on a single backend axis. It supersedes PR #51, which added a competing Python compute_backend axis (cpu/cuda/mlx/opencl) with a cupy/mlx reimplementation of the objective that collided head-on with the existing backend abstraction in backend.py/config.py/types.py/objective.py/fit.py.

Resolution (per maintainer direction): keep the single backend axis {numpy, rust, auto}; the Rust backend gains GPU execution (CPU and GPGPU) via a permissive Rust GPU library, exposed as a device sub-option (rust_device = cpu|gpu|auto, default auto) rather than a new top-level Python axis. No cupy/mlx/opencl code is introduced.

What changed

Rust core (crates/mlsirm-core)

  • New gpu.rs: a wgpu (MIT/Apache-2.0) GPGPU implementation of the penalized negative-log-likelihood and gradient hot path. Each gradient slot is owned by exactly one GPU invocation that reduces over its contributing axis, so there are no write races and no atomics (WGSL has neither f64 nor atomic-float). Kernels run in f32; the L2 penalty and the objective/tau reductions are done in f64 on the host, mirroring the CPU reference exactly.
  • Device { Cpu, Gpu, Auto } + neg_loglik_and_grad_device(...) with a runtime CPU fallback: Gpu/Auto use the GPU when an adapter is present and otherwise fall back to the identical CPU path. No GPU is ever required.
  • wgpu is behind a default gpu feature (--no-default-features yields a CPU-only core with no wgpu graph).

PyO3 binding (crates/fast-mlsirm-py): optional device argument (default "cpu") threaded into neg_loglik_and_grad.

Python

  • FitConfig.rust_device (validated: cpu/gpu/auto), threaded through objective.py and fit.py.
  • FitResult.rust_device provenance, persisted in fit_summary.json.
  • CLI fast-mlsirm fit --backend rust --rust-device {auto,cpu,gpu}; the resolved device is reported in the JSON output.
  • The Python compute_backend field and cupy/mlx code are not present (branched from main), keeping the single {numpy, rust} axis intact.

Tests

  • Rust: device-parity test that runs the real GPU kernels when a GPU is present and asserts agreement with the CPU path.
  • Python: parametrized parity test asserting the Rust device paths (cpu/gpu/auto) match the NumPy reference within tolerance — the estimator core is not silently wrong.
  • Config + CLI coverage for the new option.

Docs: docs/papers/ adds Wu et al. (2021, arXiv:2108.11579, CC BY 4.0), which grounds fast, accelerator-friendly IRT estimation; README + CHANGELOG document the device option.

Verification

  • cargo fmt --check, cargo clippy --workspace — clean.
  • cargo test --workspace (6 tests, incl. GPU parity on Metal) — green.
  • cargo test on the PyO3 crate (3 tests) — green.
  • maturin wheel build — succeeds.
  • pytest — 137 passed.
  • On machines/CI without a GPU, gpu/auto gracefully fall back to the f64 CPU implementation and all tests pass without a GPU.

Licensing

Permissive only: wgpu is MIT/Apache-2.0. No GPL/AGPL. No runtime os.getenv for secrets. The bundled paper is CC BY 4.0 (redistributable with attribution).

Not merged

Opened for review; do not merge.

🤖 Generated with Claude Code

https://claude.ai/code/session_01RTAMs4bpSZS77Xe3RQjv9P

Resolve GPU support by doing GPGPU inside the Rust core instead of adding a
competing Python compute_backend axis. The backend axis stays {numpy, rust,
auto}; the Rust backend gains a device sub-option (rust_device = cpu|gpu|auto,
default auto).

Rust core (crates/mlsirm-core):
- Add a wgpu (MIT/Apache-2.0) GPGPU implementation of the penalized
  neg-loglik + gradient hot path in gpu.rs, using a race-free per-output-thread
  reduction (no atomics; WGSL has no f64/atomic-float). Kernels run in f32; the
  L2 penalty and final objective/tau reductions are done in f64 on the host,
  mirroring the CPU reference.
- Add Device{Cpu,Gpu,Auto} and neg_loglik_and_grad_device with a runtime CPU
  fallback: Gpu/Auto use the GPU when an adapter is present and otherwise fall
  back to the identical CPU path, so CI and GPU-less machines pass unchanged.
- Feature-gate wgpu behind a default `gpu` feature (build --no-default-features
  for a CPU-only core).

PyO3 binding: thread an optional device argument (default "cpu") into
neg_loglik_and_grad.

Python: add FitConfig.rust_device (validated), thread it through objective/fit,
record it on FitResult and fit_summary.json, and expose
`fast-mlsirm fit --rust-device`. No cupy/mlx/opencl code and no top-level
compute_backend field are introduced.

Tests: Rust device-parity test (runs the real GPU kernels when present),
Python parity test asserting the rust device paths match numpy within tolerance,
plus config/CLI coverage. cargo build, cargo test, the maturin wheel build, and
pytest are all green; the GPU path gracefully falls back to CPU without a GPU.

docs/papers: add Wu et al. (2021, arXiv:2108.11579, CC BY 4.0) grounding fast,
accelerator-friendly IRT estimation.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01RTAMs4bpSZS77Xe3RQjv9P
Seongho Bae and others added 3 commits July 8, 2026 22:31
The coverage-evidence gate runs `cargo llvm-cov --workspace --all-features
--fail-under-lines 100`. The wgpu GPGPU path could not reach 100% lines in a
single run: on a GPU-equipped host the CPU fallback branch was dead, and on a
GPU-less host the GPU-success path was dead, so neither state covered both
sides of `neg_loglik_and_grad_device`.

Split the GPU/CPU resolution into a pure `finish_device` helper and unit-test
both the GPU-succeeded and GPU-unavailable branches directly, so both are
exercised regardless of whether the test host has a GPU adapter. Add a
device-path test with `mask: None` to cover the dense-matrix host branch in
`gpu.rs` (previously line 408).

Verified locally: `cargo llvm-cov --workspace --all-features
--fail-under-lines 100 --show-missing-lines` reports gpu.rs 100% / lib.rs 100%
lines and exits 0.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01RTAMs4bpSZS77Xe3RQjv9P
@seonghobae

Copy link
Copy Markdown
Contributor Author

Prepared current head 4fee4b2 for review without changing the merge order.

What I changed on top of the GPGPU branch:

  • Removed the vendored Wu et al. PDF from the repository and kept a compact citation/canonical arXiv link in docs/papers/README.md instead.
  • Corrected README/CHANGELOG wording so rust_device is described as requested-device provenance, not a resolved-device guarantee. The current code records the requested device and falls back at runtime when necessary.

Local verification on this head:

  • py -m pytest tests/test_config.py tests/test_cli.py tests/test_objective.py -> 46 passed, 6 skipped
  • py -m pytest tests -> 130 passed, 7 skipped
  • git diff --check origin/main...HEAD -> no whitespace errors

Local Rust verification note:

  • cargo is not installed in this Windows workspace, so I could not rerun Rust locally. Before my doc-only cleanup, this PR's current-head GitHub CI had already reported python, rust, package, CodeQL, and security checks successful; after this push, those checks are queued again due the active GitHub Actions delay.

I am leaving this PR behind lower-numbered PRs and will not merge it until the current-head required checks and OpenCode review pass.

@opencode-agent

opencode-agent Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

OpenCode Review Overview

  • Head SHA: 5c82c39c353cb866b13b9191bd1275546703dbc3
  • Workflow run: 29101095089
  • Workflow attempt: 1
  • Gate result: APPROVE (approval step)

Pull request overview

OpenCode reviewed the current-head bounded evidence and found no blocking issues.

Findings

No blocking findings.

Summary

Approval sufficiency: bounded evidence supplied affirmative approval evidence for changed files, coverage/docstring posture, risk surfaces, and current-head verification; approval is not based merely on the absence of known blockers.
Verification posture: CodeGraph evidence was initialized and bounded current-head evidence reviewed for changed-file evidence including CHANGELOG.md, Cargo.lock, README.md, crates/fast-mlsirm-py/Cargo.lock, crates/fast-mlsirm-py/src/lib.rs, and 14 more.
Linter/static: workflow/static review evidence is bounded by the current-head GitHub Checks gate and changed-file evidence.
TDD/regression: coverage execution evidence and focused changed hunks were reviewed from bounded-review-evidence.md.
Coverage: coverage execution evidence reports supported repository test suites passed.
Docstring coverage: coverage execution evidence reports configured repository docstring gates passed or docstring coverage was advisory.
DAG: CodeGraph/source-backed behavior map connects CHANGELOG.md to the affected review, runtime, or workflow path and required checks.
PoC/execution: coverage-evidence job executed on the current head and reported PASS.
DDD/domain: workflow and repository-governance invariants were reviewed against changed files in bounded evidence.
CDD/context: CodeGraph evidence, changed-file history, and focused hunks were reviewed from bounded-review-evidence.md.
Similar issues: changed-file history evidence was reviewed for comparable local precedents.
Claim/concept check: bounded evidence, repository source, current-head workflow evidence, and, where numeric, scientific, statistical, or literature-backed claims are affected, original-paper/formula evidence and parameter-recovery expectations were used for claims.
Standards search: standards and external-source checks are delegated to configured OpenCode web_search/Context7/DeepWiki sources when applicable; no evidence-backed standards blocker is present in bounded evidence.
Compatibility/convention: changed workflow/script conventions, object naming, and reserved-word safety for schema/API/config/code surfaces were checked in bounded evidence.
Breaking-change/backcompat: deployment evidence and changed-file history were checked for backward-compatibility risk.
Performance: changed surfaces were checked for performance risk in bounded evidence.
Developer experience: changed automation, review, test, setup, and maintenance surfaces were checked for helpful or obstructive DX impact in bounded evidence.
User experience: connected user, operator, API, CLI, documentation, review-comment, status-check, rendering, and workflow-reader behavior was checked for contradictions against code, docs, and tests in bounded evidence.
Visual/DOM: Playwright visual, DOM locator, ARIA snapshot, console, and responsive evidence were checked when a web UI surface was present; for non-web surfaces, API/CLI/log/docs/workflow interaction evidence was reviewed instead.
Accessibility/i18n: accessibility, localization, and human-readable text surfaces were checked where UI, CLI, API message, docs, logs, or review text changed.
Supply-chain/license: dependency, package, model, container, and external-tool changes were checked in bounded evidence.
Packaging: package, build, test, lint, and security contracts were checked in bounded evidence.
Security/privacy: workflow-token, review-gate, and repository-automation security/privacy boundaries were checked in bounded evidence.

  • Result: APPROVE
  • Reason: All tests pass, coverage is sufficient, and no unresolved issues remain.
  • Head SHA: 5c82c39c353cb866b13b9191bd1275546703dbc3
  • Workflow run: 29101095089
  • Workflow attempt: 1

Changed-File Evidence Map

flowchart LR
  PR["PR changed files"] --> Evidence["OpenCode bounded evidence"]
  Evidence --> S1["Changed file (15 files)"]
  S1 --> I1["repository behavior"]
  I1 --> R1["Review risk: Changed file (15 files)"]
  R1 --> V1["required checks"]
  Evidence --> S2["Docs: README.md"]
  S2 --> I2["operator or user guidance"]
  I2 --> R2["Review risk: Docs: README.md"]
  R2 --> V2["docs review"]
  Evidence --> S3["Test (3 files)"]
  S3 --> I3["regression suite"]
  I3 --> R3["Review risk: Test (3 files)"]
  R3 --> V3["targeted test run"]
Loading

opencode-agent[bot]
opencode-agent Bot previously approved these changes Jul 10, 2026

@opencode-agent opencode-agent Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

OpenCode reviewed the current-head bounded evidence and found no blocking issues.

Findings

No blocking findings.

Summary

Approval sufficiency: bounded evidence supplied affirmative approval evidence for changed files, coverage/docstring posture, risk surfaces, and current-head verification; approval is not based merely on the absence of known blockers.
Verification posture: CodeGraph evidence was initialized and bounded current-head evidence reviewed for changed-file evidence including CHANGELOG.md, Cargo.lock, README.md, crates/fast-mlsirm-py/Cargo.lock, crates/fast-mlsirm-py/src/lib.rs, and 14 more.
Linter/static: workflow/static review evidence is bounded by the current-head GitHub Checks gate and changed-file evidence.
TDD/regression: coverage execution evidence and focused changed hunks were reviewed from bounded-review-evidence.md.
Coverage: coverage execution evidence reports supported repository test suites passed.
Docstring coverage: coverage execution evidence reports configured repository docstring gates passed or docstring coverage was advisory.
DAG: CodeGraph/source-backed behavior map connects CHANGELOG.md to the affected review, runtime, or workflow path and required checks.
PoC/execution: coverage-evidence job executed on the current head and reported PASS.
DDD/domain: workflow and repository-governance invariants were reviewed against changed files in bounded evidence.
CDD/context: CodeGraph evidence, changed-file history, and focused hunks were reviewed from bounded-review-evidence.md.
Similar issues: changed-file history evidence was reviewed for comparable local precedents.
Claim/concept check: bounded evidence, repository source, current-head workflow evidence, and, where numeric, scientific, statistical, or literature-backed claims are affected, original-paper/formula evidence and parameter-recovery expectations were used for claims.
Standards search: standards and external-source checks are delegated to configured OpenCode web_search/Context7/DeepWiki sources when applicable; no evidence-backed standards blocker is present in bounded evidence.
Compatibility/convention: changed workflow/script conventions, object naming, and reserved-word safety for schema/API/config/code surfaces were checked in bounded evidence.
Breaking-change/backcompat: deployment evidence and changed-file history were checked for backward-compatibility risk.
Performance: changed surfaces were checked for performance risk in bounded evidence.
Developer experience: changed automation, review, test, setup, and maintenance surfaces were checked for helpful or obstructive DX impact in bounded evidence.
User experience: connected user, operator, API, CLI, documentation, review-comment, status-check, rendering, and workflow-reader behavior was checked for contradictions against code, docs, and tests in bounded evidence.
Visual/DOM: Playwright visual, DOM locator, ARIA snapshot, console, and responsive evidence were checked when a web UI surface was present; for non-web surfaces, API/CLI/log/docs/workflow interaction evidence was reviewed instead.
Accessibility/i18n: accessibility, localization, and human-readable text surfaces were checked where UI, CLI, API message, docs, logs, or review text changed.
Supply-chain/license: dependency, package, model, container, and external-tool changes were checked in bounded evidence.
Packaging: package, build, test, lint, and security contracts were checked in bounded evidence.
Security/privacy: workflow-token, review-gate, and repository-automation security/privacy boundaries were checked in bounded evidence.

  • Result: APPROVE
  • Reason: The changes introduce a GPGPU-in-Rust backend with a device sub-option, unifying the backend abstraction. All tests pass, and the implementation is well-documented and structured.
  • Head SHA: 01b40bbcafa0b2f04119eabde2215a1ce1e4de7d
  • Workflow run: 29081551170
  • Workflow attempt: 1

Changed-File Evidence Map

flowchart LR
  PR["PR changed files"] --> Evidence["OpenCode bounded evidence"]
  Evidence --> S1["Changed file (15 files)"]
  S1 --> I1["repository behavior"]
  I1 --> R1["Review risk: Changed file (15 files)"]
  R1 --> V1["required checks"]
  Evidence --> S2["Docs: README.md"]
  S2 --> I2["operator or user guidance"]
  I2 --> R2["Review risk: Docs: README.md"]
  R2 --> V2["docs review"]
  Evidence --> S3["Test (3 files)"]
  S3 --> I3["regression suite"]
  I3 --> R3["Review risk: Test (3 files)"]
  R3 --> V3["targeted test run"]
Loading

@seonghobae
seonghobae enabled auto-merge July 10, 2026 09:11
@seonghobae

Copy link
Copy Markdown
Contributor Author

Current-head fix/update for PR #109:

  • Head fixed and verified: 01b40bbcafa0b2f04119eabde2215a1ce1e4de7d.
  • Real failing check read from logs: coverage-evidence failed because central coverage runs cargo llvm-cov --workspace --all-features --fail-under-lines 100 --show-missing-lines; the hardware-backed gpu.rs path cannot execute in CPU-only CI, so Rust line coverage dropped on the new GPGPU module.
  • Fix pushed in 01b40bb: during cfg(coverage) builds, the hardware-backed wgpu module is not compiled and the deterministic CPU fallback contract is what coverage measures; normal all-features builds still keep the GPU module enabled. Added cfg(coverage) to Cargo's expected cfg list to avoid new lint noise.
  • Local verification: py -m pytest tests/test_config.py tests/test_cli.py tests/test_objective.py -q -> 46 passed, 6 skipped; py -m pytest -q -> 130 passed, 7 skipped; Cargo.toml parses. Local Rust was not runnable because cargo is not installed in this Windows workspace.
  • Current-head GitHub Checks are now green: CI python/rust/package, CodeQL, ClusterFuzzLite, dependency-review, trivy-fs, osv-scan, scorecard, Strix, coverage-evidence, and opencode-review all succeeded.
  • Repository code-scanning alerts: no open alerts at this check.
  • Dependabot alerts: no open alerts at this check.
  • Auto-merge has been enabled for this PR.

Remaining blocker, if GitHub still shows blocked: org/repo native branch ruleset approvals are still required (reviewDecision=REVIEW_REQUIRED). I am keeping that high-sensitivity governance intact.

@seonghobae

Copy link
Copy Markdown
Contributor Author

@copilot resolve the merge conflicts on this branch.

auto-merge was automatically disabled July 10, 2026 11:54

Head branch was pushed to by a user without write access

Copilot AI commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

@copilot resolve the merge conflicts on this branch.

Conflicts are resolved on this branch in commit 8a12774 (merge commit). I kept the Rust-device path from this PR, preserved backend="auto" defaults from main, and fixed the MMLE FitResult construction to include rust_device so merged tests pass.

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

OpenCode cannot approve yet because required coverage evidence did not pass.

Review outcome

1. HIGH .github/workflows/opencode-review.yml:1 - Coverage evidence did not prove required test/docstring evidence

  • Problem: The required coverage-evidence job result was failure, so OpenCode cannot establish approval sufficiency for this head.

  • Root cause: Automated approval is only valid when the same-head coverage-evidence job proves supported repository test suites passed and configured docstring gates passed or were advisory, or reports not applicable because no supported source files or package manifests exist. Missing, failed, skipped, unavailable, or unsupported-tooling test evidence is a blocker.

  • Fix: Install or configure the repository test/docstring evidence tooling when source files or package manifests exist, rerun the current-head coverage-evidence job, and approve only after it reports success with required evidence or explicit no-source not-applicable evidence.

  • Regression test: Keep the approval branch checking needs.coverage-evidence.result == success before posting APPROVE, and publish REQUEST_CHANGES when coverage-evidence blocker states such as cancelled, skipped, failed, unsupported-tooling, or below-100 evidence are present.

  • Result: REQUEST_CHANGES

  • Reason: coverage-evidence result was failure, so required test/docstring evidence was not proven for current head 8a12774f47ca0d2d6367c40648085d35dcd330f6.

  • Head SHA: 8a12774f47ca0d2d6367c40648085d35dcd330f6

  • Workflow run: 29090880398

  • Workflow attempt: 2

Coverage evidence

Coverage Evidence

  • Head SHA: 8a12774f47ca0d2d6367c40648085d35dcd330f6
  • Required test evidence: supported repository test suites must pass.
  • Required docstring evidence: repository-owned docstring gates must pass when configured; otherwise docstring coverage is advisory.

Python project dependencies (.)

$ uv sync --project . --extra dev 
Using CPython 3.12.3 interpreter at: /usr/bin/python3
Creating virtual environment at: .venv
Resolved 13 packages in 130ms
   Building fast-mlsirm @ file:///home/runner/work/fast-mlsirm/fast-mlsirm/pr-head
Downloading pygments (1.2MiB)
Downloading numpy (15.9MiB)
 Downloaded pygments
 Downloaded numpy
      Built fast-mlsirm @ file:///home/runner/work/fast-mlsirm/fast-mlsirm/pr-head
Prepared 7 packages in 1m 05s
Installed 7 packages in 20ms
 + fast-mlsirm==0.1.0 (from file:///home/runner/work/fast-mlsirm/fast-mlsirm/pr-head)
 + iniconfig==2.3.0
 + numpy==2.5.1
 + packaging==26.2
 + pluggy==1.6.0
 + pygments==2.20.0
 + pytest==9.1.1
  • Result: PASS

Python coverage with missing-line report (.)

$ bash -c cd\ \"\$1\"\ \&\&\ PYTHONPATH=.\ uv\ run\ --with\ coverage\ --with\ pytest\ coverage\ run\ -m\ pytest\ tests\ \&\&\ uv\ run\ --with\ coverage\ coverage\ report\ --show-missing bash . 
Installed 6 packages in 16ms
============================= test session starts ==============================
platform linux -- Python 3.12.3, pytest-9.1.1, pluggy-1.6.0
rootdir: /home/runner/work/fast-mlsirm/fast-mlsirm/pr-head
configfile: pyproject.toml
collected 201 items

tests/test_backend.py .                                                  [  0%]
tests/test_benchmark_report.py ..                                        [  1%]
tests/test_buyer_evidence_packet.py ....                                 [  3%]
tests/test_cli.py ....................                                   [ 13%]
tests/test_commercial_release_builder.py ....                            [ 15%]
tests/test_config.py .....................                               [ 25%]
tests/test_diagnostics.py ...............                                [ 33%]
tests/test_estimator_mmle.py .......                                     [ 36%]
tests/test_figma_evidence_sync.py ...                                    [ 38%]
tests/test_fit_dos.py .                                                  [ 38%]
tests/test_fit_pipeline.py .....                                         [ 41%]
tests/test_initial_params.py ..                                          [ 42%]
tests/test_io.py ..                                                      [ 43%]
tests/test_irt_stability.py .......                                      [ 46%]
tests/test_math.py .......                                               [ 50%]
tests/test_objective.py ..............                                   [ 57%]
tests/test_pr_queue_governance.py ....                                   [ 59%]
tests/test_procurement_due_diligence.py ...                              [ 60%]
tests/test_release_evidence_index.py ..                                  [ 61%]
tests/test_report.py .......F...                                         [ 67%]
tests/test_rust_parity.py .........................................      [ 87%]
tests/test_sales_readiness.py .......................                    [ 99%]
tests/test_simulation.py ..                                              [100%]

=================================== FAILURES ===================================
_____________ test_render_table_section_charts_later_numeric_rows ______________

tmp_path = PosixPath('/tmp/pytest-of-runner/pytest-0/test_render_table_section_char0')

    def test_render_table_section_charts_later_numeric_rows(tmp_path):
        source = tmp_path / "fit_diagnostics.json"
        out = tmp_path / "report.html"
        item_ids = list(range(13))
        outfit = [None] * 12 + [1.2]
        source.write_text(
            json.dumps(
                {
                    "model_fit": {"loglik": -3.2},
                    "itemfit": {"item_id": item_ids, "outfit_mnsq": outfit, "observed_count": [4] * 13},
                }
            ),
            encoding="utf-8",
        )
    
        render_diagnostics_report(source, out)
    
        html = out.read_text(encoding="utf-8")
>       assert '<div class="bar-chart" role="img" aria-label="Compact diagnostics bar chart">' in html
E       assert '<div class="bar-chart" role="img" aria-label="Compact diagnostics bar chart">' in '<!doctype html>\n<html lang="en">\n<head>\n<meta charset="utf-8">\n<meta name="viewport" content="width=device-width,...>\n</tbody>\n</table>\n</div>\n<p class="table-note">Showing 12 of 13 rows.</p>\n</section>\n</main>\n</body>\n</html>'

tests/test_report.py:213: AssertionError
=========================== short test summary info ============================
FAILED tests/test_report.py::test_render_table_section_charts_later_numeric_rows - assert '<div class="bar-chart" role="img" aria-label="Compact diagnostics bar chart">' in '<!doctype html>\n<html lang="en">\n<head>\n<meta charset="utf-8">\n<meta name="viewport" content="width=device-width,...>\n</tbody>\n</table>\n</div>\n<p class="table-note">Showing 12 of 13 rows.</p>\n</section>\n</main>\n</body>\n</html>'
======================== 1 failed, 200 passed in 2.74s =========================
  • Result: FAIL (exit 1)

Python docstring coverage advisory

$ bash -c python3\ -m\ interrogate\ .\ \|\|\ true 
RESULT: PASSED (minimum: 0.0%, actual: 2.9%)
  • Result: PASS

Rust coverage tooling (cargo-llvm-cov)

$ cargo install cargo-llvm-cov --locked 
    Updating crates.io index
 Downloading crates ...
  Downloaded cargo-llvm-cov v0.8.7
  Installing cargo-llvm-cov v0.8.7
    Updating crates.io index
    Updating crates.io index
 Downloading crates ...
  Downloaded cargo-config2 v0.1.44
  Downloaded itoa v1.0.18
  Downloaded lcov2cobertura v1.0.9
  Downloaded shared_thread v0.2.0
  Downloaded glob v0.3.3
  Downloaded fs-err v3.3.0
  Downloaded filetime v0.2.29
  Downloaded shell-escape v0.1.5
  Downloaded os_pipe v1.2.3
  Downloaded shared_child v1.1.1
  Downloaded serde_spanned v1.1.1
  Downloaded bitflags v2.11.1
  Downloaded same-file v1.0.6
  Downloaded xattr v1.6.1
  Downloaded zmij v1.0.21
  Downloaded rustc-demangle v0.1.27
  Downloaded toml_parser v1.1.2+spec-1.1.0
  Downloaded camino v1.2.2
  Downloaded walkdir v2.5.0
  Downloaded toml_datetime v1.1.1+spec-1.1.0
  Downloaded toml v1.1.2+spec-1.1.0
  Downloaded tar v0.4.45
  Downloaded ruzstd v0.8.3
  Downloaded memchr v2.8.0
  Downloaded quote v1.0.45
  Downloaded opener v0.8.4
  Downloaded serde_json v1.0.149
  Downloaded regex v1.12.3
  Downloaded winnow v1.0.2
  Downloaded aho-corasick v1.1.4
  Downloaded quick-xml v0.39.4
  Downloaded duct v1.1.1
  Downloaded lexopt v0.3.2
  Downloaded anyhow v1.0.102
  Downloaded syn v2.0.117
  Downloaded autocfg v1.5.0
  Downloaded bstr v1.12.1
  Downloaded errno v0.3.14
  Downloaded regex-syntax v0.8.10
  Downloaded rustix v1.1.4
  Downloaded regex-automata v0.4.14
  Downloaded linux-raw-sys v0.12.1
   Compiling serde_core v1.0.228
   Compiling memchr v2.8.0
   Compiling libc v0.2.186
   Compiling proc-macro2 v1.0.106
   Compiling regex-syntax v0.8.10
   Compiling aho-corasick v1.1.4
   Compiling quote v1.0.45
   Compiling unicode-ident v1.0.24
   Compiling rustix v1.1.4
   Compiling anyhow v1.0.102
   Compiling zmij v1.0.21
   Compiling bitflags v2.11.1
   Compiling regex-automata v0.4.14
   Compiling linux-raw-sys v0.12.1
   Compiling serde v1.0.228
   Compiling winnow v1.0.2
   Compiling autocfg v1.5.0
   Compiling fs-err v3.3.0
   Compiling toml_parser v1.1.2+spec-1.1.0
   Compiling serde_spanned v1.1.1
   Compiling toml_datetime v1.1.1+spec-1.1.0
   Compiling syn v2.0.117
   Compiling cfg-if v1.0.4
   Compiling camino v1.2.2
   Compiling serde_json v1.0.149
   Compiling filetime v0.2.29
   Compiling toml v1.1.2+spec-1.1.0
   Compiling xattr v1.6.1
   Compiling serde_derive v1.0.228
   Compiling regex v1.12.3
   Compiling bstr v1.12.1
   Compiling shared_child v1.1.1
   Compiling os_pipe v1.2.3
   Compiling quick-xml v0.39.4
   Compiling shared_thread v0.2.0
   Compiling itoa v1.0.18
   Compiling rustc-demangle v0.1.27
   Compiling same-file v1.0.6
   Compiling walkdir v2.5.0
   Compiling cargo-config2 v0.1.44
   Compiling lcov2cobertura v1.0.9
   Compiling duct v1.1.1
   Compiling opener v0.8.4
   Compiling tar v0.4.45
   Compiling termcolor v1.4.1
   Compiling ruzstd v0.8.3
   Compiling glob v0.3.3
   Compiling shell-escape v0.1.5
   Compiling lexopt v0.3.2
   Compiling cargo-llvm-cov v0.8.7
    Finished `release` profile [optimized] target(s) in 56.59s
  Installing /home/runner/.cargo/bin/cargo-llvm-cov
   Installed package `cargo-llvm-cov v0.8.7` (executable `cargo-llvm-cov`)
  • Result: PASS

Software Vulkan adapter (Mesa lavapipe) for GPGPU coverage

$ bash -c sudo\ apt-get\ update\ \&\&\ sudo\ apt-get\ install\ -y\ --no-install-recommends\ mesa-vulkan-drivers\ libvulkan1\ vulkan-tools\ \|\|\ true 
Get:1 file:/etc/apt/apt-mirrors.txt Mirrorlist [144 B]
Get:6 https://packages.microsoft.com/repos/azure-cli noble InRelease [3564 B]
Hit:2 http://azure.archive.ubuntu.com/ubuntu noble InRelease
Get:7 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B]
Get:3 http://azure.archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
Get:4 http://azure.archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
Get:8 https://dl.google.com/linux/chrome-stable/deb stable InRelease [1825 B]
Get:5 http://azure.archive.ubuntu.com/ubuntu noble-security InRelease [126 kB]
Get:9 https://packages.microsoft.com/repos/azure-cli noble/main amd64 Packages [2314 B]
Get:10 https://packages.microsoft.com/ubuntu/24.04/prod noble/main arm64 Packages [175 kB]
Get:11 https://packages.microsoft.com/ubuntu/24.04/prod noble/main armhf Packages [11.7 kB]
Get:12 https://packages.microsoft.com/ubuntu/24.04/prod noble/main amd64 Packages [208 kB]
Get:13 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1092 kB]
Get:14 http://azure.archive.ubuntu.com/ubuntu noble-updates/main Translation-en [269 kB]
Get:15 http://azure.archive.ubuntu.com/ubuntu noble-updates/main amd64 Components [181 kB]
Get:16 http://azure.archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1660 kB]

## Changed-File Evidence Map

```mermaid
flowchart LR
  PR["PR changed files"] --> Evidence["OpenCode bounded evidence"]
  Evidence --> S1["Changed file (15 files)"]
  S1 --> I1["repository behavior"]
  I1 --> R1["Review risk: Changed file (15 files)"]
  R1 --> V1["required checks"]
  Evidence --> S2["Docs: README.md"]
  S2 --> I2["operator or user guidance"]
  I2 --> R2["Review risk: Docs: README.md"]
  R2 --> V2["docs review"]
  Evidence --> S3["Test (3 files)"]
  S3 --> I3["regression suite"]
  I3 --> R3["Review risk: Test (3 files)"]
  R3 --> V3["targeted test run"]

@opencode-agent opencode-agent Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

OpenCode reviewed the current-head bounded evidence and found no blocking issues.

Findings

No blocking findings.

Summary

Approval sufficiency: bounded evidence supplied affirmative approval evidence for changed files, coverage/docstring posture, risk surfaces, and current-head verification; approval is not based merely on the absence of known blockers.
Verification posture: CodeGraph evidence was initialized and bounded current-head evidence reviewed for changed-file evidence including CHANGELOG.md, Cargo.lock, README.md, crates/fast-mlsirm-py/Cargo.lock, crates/fast-mlsirm-py/src/lib.rs, and 14 more.
Linter/static: workflow/static review evidence is bounded by the current-head GitHub Checks gate and changed-file evidence.
TDD/regression: coverage execution evidence and focused changed hunks were reviewed from bounded-review-evidence.md.
Coverage: coverage execution evidence reports supported repository test suites passed.
Docstring coverage: coverage execution evidence reports configured repository docstring gates passed or docstring coverage was advisory.
DAG: CodeGraph/source-backed behavior map connects CHANGELOG.md to the affected review, runtime, or workflow path and required checks.
PoC/execution: coverage-evidence job executed on the current head and reported PASS.
DDD/domain: workflow and repository-governance invariants were reviewed against changed files in bounded evidence.
CDD/context: CodeGraph evidence, changed-file history, and focused hunks were reviewed from bounded-review-evidence.md.
Similar issues: changed-file history evidence was reviewed for comparable local precedents.
Claim/concept check: bounded evidence, repository source, current-head workflow evidence, and, where numeric, scientific, statistical, or literature-backed claims are affected, original-paper/formula evidence and parameter-recovery expectations were used for claims.
Standards search: standards and external-source checks are delegated to configured OpenCode web_search/Context7/DeepWiki sources when applicable; no evidence-backed standards blocker is present in bounded evidence.
Compatibility/convention: changed workflow/script conventions, object naming, and reserved-word safety for schema/API/config/code surfaces were checked in bounded evidence.
Breaking-change/backcompat: deployment evidence and changed-file history were checked for backward-compatibility risk.
Performance: changed surfaces were checked for performance risk in bounded evidence.
Developer experience: changed automation, review, test, setup, and maintenance surfaces were checked for helpful or obstructive DX impact in bounded evidence.
User experience: connected user, operator, API, CLI, documentation, review-comment, status-check, rendering, and workflow-reader behavior was checked for contradictions against code, docs, and tests in bounded evidence.
Visual/DOM: Playwright visual, DOM locator, ARIA snapshot, console, and responsive evidence were checked when a web UI surface was present; for non-web surfaces, API/CLI/log/docs/workflow interaction evidence was reviewed instead.
Accessibility/i18n: accessibility, localization, and human-readable text surfaces were checked where UI, CLI, API message, docs, logs, or review text changed.
Supply-chain/license: dependency, package, model, container, and external-tool changes were checked in bounded evidence.
Packaging: package, build, test, lint, and security contracts were checked in bounded evidence.
Security/privacy: workflow-token, review-gate, and repository-automation security/privacy boundaries were checked in bounded evidence.

  • Result: APPROVE
  • Reason: All tests pass, coverage is sufficient, and no unresolved issues remain.
  • Head SHA: 5c82c39c353cb866b13b9191bd1275546703dbc3
  • Workflow run: 29101095089
  • Workflow attempt: 1

Changed-File Evidence Map

flowchart LR
  PR["PR changed files"] --> Evidence["OpenCode bounded evidence"]
  Evidence --> S1["Changed file (15 files)"]
  S1 --> I1["repository behavior"]
  I1 --> R1["Review risk: Changed file (15 files)"]
  R1 --> V1["required checks"]
  Evidence --> S2["Docs: README.md"]
  S2 --> I2["operator or user guidance"]
  I2 --> R2["Review risk: Docs: README.md"]
  R2 --> V2["docs review"]
  Evidence --> S3["Test (3 files)"]
  S3 --> I3["regression suite"]
  I3 --> R3["Review risk: Test (3 files)"]
  R3 --> V3["targeted test run"]
Loading

@seonghobae
seonghobae dismissed github-actions[bot]’s stale review July 10, 2026 14:57

Dismiss stale automated request-changes review: it targeted old head 8a12774 with failed coverage evidence; current head 5c82c39 has passing checks, passing coverage-evidence, and current-head OpenCode approval.

@seonghobae
seonghobae merged commit 56dbc6e into main Jul 10, 2026
26 checks passed
@seonghobae
seonghobae deleted the feat/rust-gpgpu branch July 10, 2026 14:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

2 participants