pub trait V3F128Ext {
// Required methods
fn add_estimate_f128x4(
self,
a0: f64x4,
a1: f64x4,
b0: f64x4,
b1: f64x4,
) -> (f64x4, f64x4);
fn sub_estimate_f128x4(
self,
a0: f64x4,
a1: f64x4,
b0: f64x4,
b1: f64x4,
) -> (f64x4, f64x4);
fn add_f128x4(
self,
a0: f64x4,
a1: f64x4,
b0: f64x4,
b1: f64x4,
) -> (f64x4, f64x4);
fn sub_f128x4(
self,
a0: f64x4,
a1: f64x4,
b0: f64x4,
b1: f64x4,
) -> (f64x4, f64x4);
fn mul_f128x4(
self,
a0: f64x4,
a1: f64x4,
b0: f64x4,
b1: f64x4,
) -> (f64x4, f64x4);
}
Available on crate feature
fft128
and (x86 or x86-64) only.