ptx_parser/type/instruction/
tanh.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 Type {
18 Bf16x2, F16x2, Bf16, F16, F32, }
24
25 #[derive(Debug, Clone, PartialEq, Spanned, Serialize)]
26 pub struct TanhApproxType {
27 pub approx: (), pub type_: Type, pub d: GeneralOperand, pub a: GeneralOperand, pub span: Span,
32 }
33}
34
35pub use section_0::TanhApproxType;
38pub use section_0::Type as Type0;