rtx-cfd three_d piso_device: fix the by-reference launch args (the previous commit did not build with the cuda feature)
CI / Build (macos-latest) (push) Waiting to run
CI / Test (macos-latest) (push) Blocked by required conditions
CI / Test (ubuntu-latest) (push) Blocked by required conditions
CI / Python Bindings (maturin) (macos-latest) (push) Blocked by required conditions
CI / Python Bindings (maturin) (ubuntu-latest) (push) Blocked by required conditions
CI / WASM Build + Size Check (push) Blocked by required conditions
CI / Distributed Training Tests (push) Blocked by required conditions
CI / CI Success (push) Blocked by required conditions
CI / Format Check (push) Failing after 4s
CI / Clippy Check (push) Failing after 4s
CI / Build (ubuntu-latest) (push) Failing after 6s
Documentation / Build API Documentation (push) Failing after 3s
CI / Build CPU-Only (Explicit) (push) Failing after 5s
Performance Benchmarks / Run Benchmarks (push) Failing after 11s
Documentation / Build User Guide (push) Successful in 4s

Co-Authored-By: Claude Fable 5.1 <[email protected]>
This commit is contained in:
Omar Sobh
2026-09-17 11:44:49 -05:00
co-authored by Claude Fable 5.1
parent bd43b34850
commit 4747d9e6b1
@@ -369,21 +369,21 @@ impl Piso3Device {
rt.stream rt.stream
.launch_builder(&k.sides_x) .launch_builder(&k.sides_x)
.arg(&prm) .arg(&prm)
.arg(&ptrs) .arg(ptrs)
.arg(&stamp) .arg(&stamp)
.launch(cfg(g.ny * g.nz)) .launch(cfg(g.ny * g.nz))
.expect("sides_x"); .expect("sides_x");
rt.stream rt.stream
.launch_builder(&k.sides_y) .launch_builder(&k.sides_y)
.arg(&prm) .arg(&prm)
.arg(&ptrs) .arg(ptrs)
.arg(&stamp) .arg(&stamp)
.launch(cfg(g.nx * g.nz)) .launch(cfg(g.nx * g.nz))
.expect("sides_y"); .expect("sides_y");
rt.stream rt.stream
.launch_builder(&k.sides_z) .launch_builder(&k.sides_z)
.arg(&prm) .arg(&prm)
.arg(&ptrs) .arg(ptrs)
.arg(&stamp) .arg(&stamp)
.launch(cfg(g.nx * g.ny)) .launch(cfg(g.nx * g.ny))
.expect("sides_z"); .expect("sides_z");