cubecl-core 0.7.0

CubeCL core create
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod cube_comment {
    use crate::ir::NonSemantic;
    use cubecl_ir::Scope;

    pub fn expand(scope: &mut Scope, content: &str) {
        scope.register(NonSemantic::Comment {
            content: content.to_string(),
        });
    }
}