rtx-cfd: the cuda feature builds again — the duplicate CudaKernelManager::stream removed, the legacy k-epsilon GPU model (broken since the initial commit) kept out of the build
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 5s
CI / Build CPU-Only (Explicit) (push) Failing after 6s
Performance Benchmarks / Run Benchmarks (push) Failing after 7s
CI / Clippy Check (push) Failing after 16s
Documentation / Build User Guide (push) Successful in 12s
Documentation / Build API Documentation (push) Failing after 12s
CI / Build (ubuntu-latest) (push) Failing after 24s

This commit is contained in:
Omar Sobh
2026-09-16 01:03:33 -05:00
parent 0dc95a8de5
commit 956e9d38e2
2 changed files with 5 additions and 7 deletions
@@ -124,11 +124,6 @@ impl CudaKernelManager {
.ok_or_else(|| CfdError::gpu_error(&format!("Module {} not found", name)))
}
/// Get the CUDA stream
pub fn stream(&self) -> &Arc<CudaStream> {
&self.stream
}
/// Perform GPU reduction to compute sum
pub fn reduce_sum(&self, input: &CudaSlice<f32>) -> CfdResult<f32> {
let n = input.len();
@@ -10,7 +10,10 @@
pub mod k_epsilon;
/// GPU-accelerated turbulence models
#[cfg(feature = "cuda")]
pub mod k_epsilon_gpu;
// PERF-2 (2026-09-16): the legacy k-epsilon GPU model no longer matches
// `KEpsilonConstants` and has not compiled since the initial commit; kept out
// of the `cuda` build until someone needs it.
// pub mod k_epsilon_gpu;
pub mod smagorinsky;
#[cfg(feature = "cuda")]
pub mod smagorinsky_gpu;
@@ -19,7 +22,7 @@ pub mod wall_functions;
pub use k_epsilon::{KEpsilonConstants, KEpsilonModel, KEpsilonVariant};
#[cfg(feature = "cuda")]
pub use k_epsilon_gpu::KEpsilonGpuModel;
// pub use k_epsilon_gpu::KEpsilonGpuModel;
pub use smagorinsky::{SmagorinskyConstants, SmagorinskyModel};
pub use wall_functions::{EnhancedWallTreatment, LogLawWallFunction, WallFunction};