ptx_parser/type/instruction/
movmatrix.rs1#![allow(unused)]
8use crate::r#type::common::*;
9
10pub mod section_0 {
11 use crate::Spanned;
12 use crate::parser::Span;
13 use crate::r#type::common::*;
14
15 use serde::Serialize;
16
17 #[derive(Debug, Clone, PartialEq, Serialize)]
18 pub enum Shape {
19 M8n8, }
21
22 #[derive(Debug, Clone, PartialEq, Serialize)]
23 pub enum Type {
24 B16, }
26
27 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
28 pub struct MovmatrixSyncAlignedShapeTransType {
29 pub sync: (), pub aligned: (), pub shape: Shape, pub trans: (), pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
37 }
38}
39
40pub use section_0::MovmatrixSyncAlignedShapeTransType;
43pub use section_0::Shape as Shape0;
44pub use section_0::Type as Type0;