Skip to main content

fma

Function fma 

Source
pub fn fma(a: f32, b: f32, c: f32) -> f32
Expand description

Fused multiply-add: a * b + c.

  • CUDA: fmaf(a, b, c)
  • WGSL: fma(a, b, c)