cubecl_core/frontend/
base.rs1#[macro_export]
2macro_rules! unexpanded {
3 () => ({
4 panic!("Unexpanded Cube functions should not be called. ");
5 });
6 ($msg:expr) => ({
7 panic!($msg);
8 });
9 ($fmt:expr, $($arg:tt)*) => ({
10 panic!($fmt, $($arg)*);
11 });
12}