bunsen 0.21.0

bunsen is acceleration tooling for burn
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Various constants used in the module tree.
#![allow(missing_docs)]

pub const XML_MODULE_TREE_ELEM: &str = "XmlModuleTree";
pub const PARAM_ELEM: &str = "Param";
pub const STRUCTURE_ELEM: &str = "Structure";

pub const VERSION_ATTR: &str = "version";
pub const DTYPE_ATTR: &str = "dtype";
pub const CLASS_ATTR: &str = "class";
pub const ID_ATTR: &str = "id";
pub const KIND_ATTR: &str = "kind";
pub const NAME_ATTR: &str = "name";
pub const PARAM_ID_ATTR: &str = "param_id";
pub const RANK_ATTR: &str = "rank";
pub const SHAPE_ATTR: &str = "shape";