Returns the subtraction of the arguments.
When using the following typedef :
typedef nsimd::fixed_point::fp_t<lf, rt> fp_t
The T template parameter is one of the following types depending on the operator:
set1
, loadu
and loada
:
nsimd::fixed_point::pack<fp_t>
loadlu
, loadla
:
nsimd::fixed_point::packl<fp_t>
Other operators:
nsimd::fixed_point::fp_t<lf, rt>
namespace nsimd {
namespace fixed_point {
pack<T> sub(const pack<T> & a0, const pack<T> & a1);
pack<T> operator-(const pack<T> & a0, const pack<T> & a1);
} // namespace fixed_point
} // namespace nsimd