#![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 {
U16x2, U16, U32, U64, S16, S64, }
#[derive(Debug, Clone, PartialEq, Serialize)]
pub enum Btype {
S16x2, S32, }
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxAtype {
pub atype: Atype, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxReluBtype {
pub relu: bool, pub btype: Btype, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxFtzNanXorsignAbsF32 {
pub ftz: bool, pub nan: bool, pub xorsign_abs: bool, pub f32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxFtzNanAbsF32 {
pub ftz: bool, pub nan: bool, pub abs: bool, pub f32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxF64 {
pub f64: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxFtzNanXorsignAbsF16 {
pub ftz: bool, pub nan: bool, pub xorsign_abs: bool, pub f16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxFtzNanXorsignAbsF16x2 {
pub ftz: bool, pub nan: bool, pub xorsign_abs: bool, pub f16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxNanXorsignAbsBf16 {
pub nan: bool, pub xorsign_abs: bool, pub bf16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
pub struct MaxNanXorsignAbsBf16x2 {
pub nan: bool, pub xorsign_abs: bool, pub bf16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub span: Span,
}
}
pub use section_0::Atype as Atype0;
pub use section_0::Btype as Btype0;
pub use section_0::MaxAtype;
pub use section_0::MaxF64;
pub use section_0::MaxFtzNanAbsF32;
pub use section_0::MaxFtzNanXorsignAbsF16;
pub use section_0::MaxFtzNanXorsignAbsF16x2;
pub use section_0::MaxFtzNanXorsignAbsF32;
pub use section_0::MaxNanXorsignAbsBf16;
pub use section_0::MaxNanXorsignAbsBf16x2;
pub use section_0::MaxReluBtype;