comment!() { /* proc-macro */ }
Insert a literal comment into the kernel source code.
#use cubecl_macros::cube; #[cube] fn do_stuff(input: u32) -> u32 { comment!("Add five to the input"); input + 5 }