#![allow(unused)]
use crate::r#type::common::*;
pub mod section_0 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
#[derive(Debug, Clone, PartialEq)]
pub enum Rnd {
Rn, Rz, Rm, Rp, }
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndFtzSatF32 {
pub rnd: Rnd, pub ftz: bool, pub sat: bool, pub f32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndFtzF32x2 {
pub rnd: Rnd, pub ftz: bool, pub f32x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndF64 {
pub rnd: Rnd, pub f64: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
}
pub mod section_1 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
#[derive(Debug, Clone, PartialEq)]
pub enum Rnd {
Rn, }
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndFtzSatF16 {
pub rnd: Rnd, pub ftz: bool, pub sat: bool, pub f16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndFtzSatF16x2 {
pub rnd: Rnd, pub ftz: bool, pub sat: bool, pub f16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndFtzReluF16 {
pub rnd: Rnd, pub ftz: bool, pub relu: (), pub f16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndFtzReluF16x2 {
pub rnd: Rnd, pub ftz: bool, pub relu: (), pub f16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndReluBf16 {
pub rnd: Rnd, pub relu: bool, pub bf16: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndReluBf16x2 {
pub rnd: Rnd, pub relu: bool, pub bf16x2: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndOobReluType {
pub rnd: Rnd, pub oob: (), pub relu: bool, pub type_: (), pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
}
pub mod section_2 {
use crate::Spanned;
use crate::parser::Span;
use crate::r#type::common::*;
#[derive(Debug, Clone, PartialEq)]
pub enum Rnd {
Rn, Rz, Rm, Rp, }
#[derive(Debug, Clone, PartialEq)]
pub enum Abtype {
Bf16, F16, }
#[derive(Debug, Clone, PartialEq, Spanned)]
pub struct FmaRndSatF32Abtype {
pub rnd: Rnd, pub sat: bool, pub f32: (), pub abtype: Abtype, pub d: GeneralOperand, pub a: GeneralOperand, pub b: GeneralOperand, pub c: GeneralOperand, pub span: Span,
}
}
pub use section_0::FmaRndF64;
pub use section_0::FmaRndFtzF32x2;
pub use section_0::FmaRndFtzSatF32;
pub use section_0::Rnd as Rnd0;
pub use section_1::FmaRndFtzReluF16;
pub use section_1::FmaRndFtzReluF16x2;
pub use section_1::FmaRndFtzSatF16;
pub use section_1::FmaRndFtzSatF16x2;
pub use section_1::FmaRndOobReluType;
pub use section_1::FmaRndReluBf16;
pub use section_1::FmaRndReluBf16x2;
pub use section_1::Rnd as Rnd1;
pub use section_2::Abtype as Abtype2;
pub use section_2::FmaRndSatF32Abtype;
pub use section_2::Rnd as Rnd2;