MCPcopy Create free account
hub / github.com/numpy/numpy / npyv_muladdsub_f64

Function npyv_muladdsub_f64

numpy/core/src/common/simd/vec/arithmetic.h:334–338  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332}
333#endif
334NPY_FINLINE npyv_f64 npyv_muladdsub_f64(npyv_f64 a, npyv_f64 b, npyv_f64 c)
335{
336 const npyv_f64 msign = npyv_set_f64(-0.0, 0.0);
337 return npyv_muladd_f64(a, b, npyv_xor_f64(msign, c));
338}
339/***************************
340 * Summation
341 ***************************/

Callers

nothing calls this directly

Calls 1

npyv_muladd_f64Function · 0.50

Tested by

no test coverage detected