ruda-test-runtime 0.1.6

Kernel test utilities for Ruda.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(test_runtime_default)]
pub type TestRuntime = ruda_driver_wgpu::WgpuRuntime;

#[cfg(test_runtime_wgpu)]
pub type TestRuntime = ruda_driver_wgpu::WgpuRuntime;

#[cfg(test_runtime_cpu)]
pub type TestRuntime = ruda_driver_cpu::CpuRuntime;

#[cfg(test_runtime_cuda)]
pub type TestRuntime = ruda_driver_cuda::CudaRuntime;

#[cfg(test_runtime_hip)]
pub type TestRuntime = ruda_driver_hip::HipRuntime;