pub trait FastMathFlags: Op {
// Provided methods
fn fast_math_flags(&self, ctx: &Context) -> FastmathFlagsAttr
where Self: Sized { ... }
fn set_fast_math_flags(&self, ctx: &Context, flag: FastmathFlagsAttr)
where Self: Sized { ... }
}Provided Methods§
Sourcefn fast_math_flags(&self, ctx: &Context) -> FastmathFlagsAttrwhere
Self: Sized,
fn fast_math_flags(&self, ctx: &Context) -> FastmathFlagsAttrwhere
Self: Sized,
Get the fast math flags on this Op.
Sourcefn set_fast_math_flags(&self, ctx: &Context, flag: FastmathFlagsAttr)where
Self: Sized,
fn set_fast_math_flags(&self, ctx: &Context, flag: FastmathFlagsAttr)where
Self: Sized,
Set the fast math flags for this Op.