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
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:
co-authored by
Claude Fable 5.1
parent
bd43b34850
commit
4747d9e6b1
@@ -369,21 +369,21 @@ impl Piso3Device {
|
||||
rt.stream
|
||||
.launch_builder(&k.sides_x)
|
||||
.arg(&prm)
|
||||
.arg(&ptrs)
|
||||
.arg(ptrs)
|
||||
.arg(&stamp)
|
||||
.launch(cfg(g.ny * g.nz))
|
||||
.expect("sides_x");
|
||||
rt.stream
|
||||
.launch_builder(&k.sides_y)
|
||||
.arg(&prm)
|
||||
.arg(&ptrs)
|
||||
.arg(ptrs)
|
||||
.arg(&stamp)
|
||||
.launch(cfg(g.nx * g.nz))
|
||||
.expect("sides_y");
|
||||
rt.stream
|
||||
.launch_builder(&k.sides_z)
|
||||
.arg(&prm)
|
||||
.arg(&ptrs)
|
||||
.arg(ptrs)
|
||||
.arg(&stamp)
|
||||
.launch(cfg(g.nx * g.ny))
|
||||
.expect("sides_z");
|
||||
|
||||
Reference in New Issue
Block a user