Skip to main content

ruda_test_runtime/
lib.rs

1#[cfg(test_runtime_default)]
2pub type TestRuntime = ruda_driver_wgpu::WgpuRuntime;
3
4#[cfg(test_runtime_wgpu)]
5pub type TestRuntime = ruda_driver_wgpu::WgpuRuntime;
6
7#[cfg(test_runtime_cpu)]
8pub type TestRuntime = ruda_driver_cpu::CpuRuntime;
9
10#[cfg(test_runtime_cuda)]
11pub type TestRuntime = ruda_driver_cuda::CudaRuntime;
12
13#[cfg(test_runtime_hip)]
14pub type TestRuntime = ruda_driver_hip::HipRuntime;