cubecl_core/frontend/
comment.rs

1pub 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}