element-wise
There are 53 repositories under element-wise topic.
Erellu/ste-Matrix
C++ CUDA-compatible template class that provides an interface for generic purpose matrix related algorithms and computations. Includes Matlab-like functions. This is mainly an example of how to use CUDA code with C++. Don't expect such high performance.
stdlib-js/math-special
Standard library special math functions.
stdlib-js/math-strided
Standard library strided math functions.
stdlib-js/math-strided-ops
Strided array math operations.
stdlib-js/math-strided-ops-add
Element-wise addition of two strided arrays.
stdlib-js/math-strided-ops-mul
Element-wise multiplication of two strided arrays.
stdlib-js/math-strided-special-abs
Compute the absolute value for each element in a strided array.
stdlib-js/math-strided-special-abs-by
Compute the absolute value of each element retrieved from a strided input array via a callback function and assign each result to an element in a strided output array.
stdlib-js/math-strided-special-abs2
Compute the squared absolute value for each element in a strided array.
stdlib-js/math-strided-special-acos-by
Compute the arccosine of each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-asin-by
Compute the arcsine of each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-besselj0-by
Compute the Bessel function of the first kind of order zero for each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-besselj1-by
Compute the Bessel function of the first kind of order one for each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-bessely0-by
Compute the Bessel function of the second kind of order zero for each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-bessely1-by
Compute the Bessel function of the second kind of order one for each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-cbrt
Compute the cube root of each element in a strided array.
stdlib-js/math-strided-special-ceil
Round each element in a strided array toward positive infinity.
stdlib-js/math-strided-special-dceil
Round each element in a double-precision floating-point strided array toward positive infinity.
stdlib-js/math-strided-special-floor
Round each element in a strided array toward negative infinity.
stdlib-js/math-strided-special-inv
Compute the multiplicative inverse for each element in a strided array.
stdlib-js/math-strided-special-sceil
Round each element in a single-precision floating-point strided array toward positive infinity.
stdlib-js/math-strided-special-trunc
Round each element in a strided array toward zero.
stdlib-js/strided-base
Base strided.
stdlib-js/utils-map
Apply a function to each element in an array and assign the result to an element in an output array.
stdlib-js/utils-map2
Apply a function to elements in two input arrays and assign the results to an output array.
stdlib-js/math-special-abs
Compute the absolute value.
stdlib-js/math-strided-ops-add-by
Element-wise addition of two strided arrays via a callback function.
stdlib-js/math-strided-ops-mul-by
Element-wise multiplication of two strided arrays via a callback function.
stdlib-js/math-strided-ops-sub
Element-wise subtraction of two strided arrays.
stdlib-js/math-strided-ops-sub-by
Element-wise subtraction of two strided arrays via a callback function.
stdlib-js/math-strided-special-cbrt-by
Compute the cube root of each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-cos-by
Compute the cosine for each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-deg2rad
Convert each element in a strided array from degrees to radians.
stdlib-js/math-strided-special-sin-by
Compute the sine of each element retrieved from an input strided array via a callback function.
stdlib-js/math-strided-special-sqrt-by
Compute the principal square root for each element retrieved from an input strided array via a callback function.
stdlib-js/utils-map-right
Apply a function to each element in an array and assign the result to an element in an output array, iterating from right to left.