|
template<class T , typename = typename std::enable_if< std::is_floating_point<T>::value>::type> |
void | Vmath::SIMD::Vadd (const size_t n, const T *x, const T *y, T *z) |
| Add vector z = x + y. More...
|
|
template<class T , typename = typename std::enable_if< std::is_floating_point<T>::value>::type> |
void | Vmath::SIMD::Vmul (const size_t n, const T *x, const T *y, T *z) |
| Multiply vector z = x * y. More...
|
|
template<class T , typename = typename std::enable_if< std::is_floating_point<T>::value>::type> |
void | Vmath::SIMD::Vvtvp (const size_t n, const T *w, const T *x, const T *y, T *z) |
| vvtvp (vector times vector plus vector): z = w*x + y More...
|
|
template<class T , typename = typename std::enable_if< std::is_floating_point<T>::value>::type> |
void | Vmath::SIMD::Vvtvm (const size_t n, const T *w, const T *x, const T *y, T *z) |
| vvtvm (vector times vector minus vector): z = w*x - y More...
|
|
template<class T , typename = typename std::enable_if< std::is_floating_point<T>::value>::type> |
void | Vmath::SIMD::Vvtvvtp (const size_t n, const T *v, const T *w, const T *x, const T *y, T *z) |
| vvtvvtp (vector times vector plus vector times vector): More...
|
|
template<class T , typename = typename std::enable_if< std::is_floating_point<T>::value>::type> |
void | Vmath::SIMD::Vvtvvtm (const size_t n, const T *v, const T *w, const T *x, const T *y, T *z) |
| vvtvvtm (vector times vector minus vector times vector): More...
|
|
template<class T , class I , typename = typename std::enable_if<std::is_floating_point<T>::value && std::is_integral<I>::value>::type> |
void | Vmath::SIMD::Gathr (const I n, const T *x, const I *y, T *z) |
| Gather vector z[i] = x[y[i]]. More...
|
|