use core::fmt::Debug;
use core::hash;
use crate::{self as cubecl, as_bytes};
use cubecl::prelude::*;
#[derive(CubeType, Clone, Hash, PartialEq, Eq, Debug)]
pub enum Operation<U: Int + hash::Hash + Eq + Debug> {
IndexAssign(usize, U),
}
#[cube(launch)]
pub fn kernel_const_match_simple<F: Float, U: Int + hash::Hash + Eq + Debug>(
output: &mut Array<F>,
#[comptime] op: Operation<U>,
) {
match op {
Operation::IndexAssign(index, value) => {
output[index.runtime()] = F::cast_from(value.runtime());
}
};
}
pub fn test_kernel_const_match<
R: Runtime,
F: Float + CubeElement,
U: Int + hash::Hash + Eq + Debug,
>(
client: ComputeClient<R>,
) {
if U::BITS == 64 {
return;
}
let handle = client.create_from_slice(as_bytes![F: 0.0, 1.0]);
let index = 1;
let value = 5.0;
kernel_const_match_simple::launch::<F, U, R>(
&client,
CubeCount::Static(1, 1, 1),
CubeDim::new_1d(1),
unsafe { ArrayArg::from_raw_parts(handle.clone(), 2) },
Operation::IndexAssign(index, U::new(value as i64)),
);
let actual = client.read_one_unchecked(handle);
let actual = F::from_bytes(&actual);
assert_eq!(actual[index], F::new(value));
}
#[allow(missing_docs)]
#[macro_export]
macro_rules! testgen_const_match {
() => {
use super::*;
#[$crate::runtime_tests::test_log::test]
fn test_const_match() {
let client = TestRuntime::client(&Default::default());
cubecl_core::runtime_tests::const_match::test_kernel_const_match::<
TestRuntime,
FloatType,
UintType,
>(client);
}
};
}