cubecl_core/frontend/
comment.rs1pub mod cube_comment {
2 use crate::{ir::NonSemantic, prelude::CubeContext};
3
4 pub fn expand(context: &mut CubeContext, content: &str) {
5 context.register(NonSemantic::Comment {
6 content: content.to_string(),
7 });
8 }
9}