use slang_hal::{test_shader_compilation, Shader};
fn substitute2(src: &str) -> String {
src.replace("DIM", "2")
.replace("MAT", "mat2x2<f32>")
.replace("IMPORT_PATH", "stensor::cholesky2")
}
fn substitute3(src: &str) -> String {
src.replace("DIM", "3")
.replace("MAT", "mat3x3<f32>")
.replace("IMPORT_PATH", "stensor::cholesky3")
}
fn substitute4(src: &str) -> String {
src.replace("DIM", "4")
.replace("MAT", "mat4x4<f32>")
.replace("IMPORT_PATH", "stensor::cholesky4")
}
#[derive(Shader)]
#[shader(src = "cholesky.wgsl", src_fn = "substitute2")]
pub struct WgCholesky2;
#[derive(Shader)]
#[shader(src = "cholesky.wgsl", src_fn = "substitute3")]
pub struct WgCholesky3;
#[derive(Shader)]
#[shader(src = "cholesky.wgsl", src_fn = "substitute4")]
pub struct WgCholesky4;
test_shader_compilation!(WgCholesky2);
test_shader_compilation!(WgCholesky3);
test_shader_compilation!(WgCholesky4);
#[cfg(test)]
mod test {
use approx::assert_relative_eq;
use naga_oil::compose::Composer;
use nalgebra::{DVector, Matrix2, Matrix4, Matrix4x3};
use slang_hal::gpu::GpuInstance;
use slang_hal::kernel::{CommandEncoderExt, KernelDispatch};
use crate::tensor::GpuTensor;
use slang_hal::Shader;
use wgpu::BufferUsages;
use {
naga_oil::compose::NagaModuleDescriptor,
wgpu::{ComputePipeline, Device},
};
pub fn test_pipeline<S: Shader>(
device: &Device,
substitute: fn(&str) -> String,
) -> ComputePipeline {
let test_kernel = r#"
@group(0) @binding(0)
var<storage, read_write> in: array<MAT>;
@group(0) @binding(1)
var<storage, read_write> out: array<MAT>;
@compute @workgroup_size(1, 1, 1)
fn test(@builtin(global_invocation_id) invocation_id: vec3<u32>) {
let i = invocation_id.x;
out[i] = cholesky(in[i]);
}
"#;
let src = substitute(&format!("{}\n{}", S::src(), test_kernel));
let module = Composer::default()
.make_naga_module(NagaModuleDescriptor {
source: &src,
file_path: "",
..Default::default()
})
.unwrap();
slang_hal::utils::load_module(device, "test", module)
}
macro_rules! gen_test {
($name: ident, $kernel: ident, $mat: ident, $substitute: ident, $dim: expr) => {
#[futures_test::test]
#[serial_test::serial]
async fn $name() {
let gpu = GpuInstance::new().await.unwrap();
let chol = test_pipeline::<super::$kernel>(gpu.device(), super::$substitute);
let mut encoder = gpu.device().create_command_encoder(&Default::default());
type Mat = $mat<f32>;
const LEN: usize = 345;
let mut matrices: DVector<Mat> = DVector::new_random(LEN);
for i in 0..matrices.len() {
let sdp = matrices[i].fixed_rows::<$dim>(0).transpose()
* matrices[i].fixed_rows::<$dim>(0);
matrices[i].fixed_rows_mut::<$dim>(0).copy_from(&sdp);
}
let inputs = GpuTensor::vector(gpu.device(), &matrices, BufferUsages::STORAGE);
let result: GpuTensor<Mat> = GpuTensor::vector_uninit(
gpu.device(),
matrices.len() as u32,
BufferUsages::STORAGE | BufferUsages::COPY_SRC,
);
let staging: GpuTensor<Mat> = GpuTensor::vector_uninit(
gpu.device(),
matrices.len() as u32,
BufferUsages::MAP_READ | BufferUsages::COPY_DST,
);
let mut pass = encoder.compute_pass("test", None);
KernelDispatch::new(gpu.device(), &mut pass, &chol)
.bind0([inputs.buffer(), result.buffer()])
.dispatch(matrices.len() as u32);
drop(pass);
staging.copy_from(&mut encoder, &result);
gpu.queue().submit(Some(encoder.finish()));
let gpu_result = staging.read(gpu.device()).await.unwrap();
let mut allowed_fails = 0;
for (m, chol) in matrices.iter().zip(gpu_result.iter()) {
if let Some(chol_cpu) = m.fixed_rows::<$dim>(0).cholesky() {
let chol = chol.fixed_rows::<$dim>(0).into_owned();
if allowed_fails == matrices.len() / 100 {
assert_relative_eq!(chol_cpu.unpack_dirty(), chol, epsilon = 1.0e-3);
} else if !approx::relative_eq!(
chol_cpu.unpack_dirty(),
chol,
epsilon = 1.0e-3
) {
allowed_fails += 1;
}
}
}
println!("Num fails: {}/{}", allowed_fails, matrices.len());
}
};
}
gen_test!(gpu_cholesky2, WgCholesky2, Matrix2, substitute2, 2);
gen_test!(gpu_cholesky3, WgCholesky3, Matrix4x3, substitute3, 3);
gen_test!(gpu_cholesky4, WgCholesky4, Matrix4, substitute4, 4);
}