#![allow(unused)]
use crate::r#type::common::*;
pub mod section_0 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
use serde::Serialize;
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Atype {
F16x2, F16, }
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Btype {
Bf16x2, Bf16, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct Ex2ApproxFtzF32 {
pub approx: (), pub ftz: bool, pub f32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct Ex2ApproxAtype {
pub approx: (), pub atype: Atype, pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct Ex2ApproxFtzBtype {
pub approx: (), pub ftz: (), pub btype: Btype, pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
}
}
pub use section_0::Atype as Atype0;
pub use section_0::Btype as Btype0;
pub use section_0::Ex2ApproxAtype;
pub use section_0::Ex2ApproxFtzBtype;
pub use section_0::Ex2ApproxFtzF32;