ptx_parser/type/instruction/
dp4a.rs1#![allow(unused)]
7use crate::r#type::common::*;
8
9pub mod section_0 {
10 use crate::Spanned;
11 use crate::parser::Span;
12 use crate::r#type::common::*;
13
14 use serde::Serialize;
15
16 #[derive(Debug, Clone, PartialEq, Serialize)]
17 pub enum Atype {
18 U32, S32, }
21
22 #[derive(Debug, Clone, PartialEq, Serialize)]
23 pub enum Btype {
24 U32, S32, }
27
28 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
29 pub struct Dp4aAtypeBtype {
30 pub atype: Atype, pub btype: Btype, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
37 }
38}
39
40pub use section_0::Atype as Atype0;
43pub use section_0::Btype as Btype0;
44pub use section_0::Dp4aAtypeBtype;