cubecl_core/frontend/
comment.rs

1pub mod cube_comment {
2    use crate::ir::NonSemantic;
3    use cubecl_ir::Scope;
4
5    pub fn expand(scope: &mut Scope, content: &str) {
6        scope.register(NonSemantic::Comment {
7            content: content.to_string(),
8        });
9    }
10}