ptx_parser/type/instruction/
rsqrt.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, Spanned, Serialize)]
17 pub struct RsqrtApproxFtzF32 {
18 pub approx: (), pub ftz: bool, pub f32: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
24 }
25
26 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
27 pub struct RsqrtApproxF64 {
28 pub approx: (), pub f64: (), pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
33 }
34}
35
36pub use section_0::RsqrtApproxF64;
39pub use section_0::RsqrtApproxFtzF32;