|
AFAPI array | sum (const array &in, const int dim=-1) |
| C++ Interface for sum of elements in an array.
|
|
AFAPI array | sum (const array &in, const int dim, const double nanval) |
| C++ Interface for sum of elements in an array while replacing nan values.
|
|
AFAPI void | sumByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim=-1) |
| C++ Interface for sum of elements along given dimension by key.
|
|
AFAPI void | sumByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim, const double nanval) |
| C++ Interface for sum of elements along given dimension by key while replacing nan values.
|
|
AFAPI array | product (const array &in, const int dim=-1) |
| C++ Interface for product of elements in an array.
|
|
AFAPI array | product (const array &in, const int dim, const double nanval) |
| C++ Interface for product of elements in an array while replacing nan values.
|
|
AFAPI void | productByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim=-1) |
| C++ Interface for product of elements in an array according to a key.
|
|
AFAPI void | productByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim, const double nanval) |
| C++ Interface for product of elements in an array according to a key while replacing nan values.
|
|
AFAPI array | min (const array &in, const int dim=-1) |
| C++ Interface for minimum values in an array.
|
|
AFAPI void | minByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim=-1) |
| C++ Interface for minimum values in an array according to a key.
|
|
AFAPI array | max (const array &in, const int dim=-1) |
| C++ Interface for maximum values in an array.
|
|
AFAPI void | maxByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim=-1) |
| C++ Interface for maximum values in an array according to a key.
|
|
AFAPI void | max (array &val, array &idx, const array &in, const array &ragged_len, const int dim) |
| C++ Interface for ragged max values in an array Uses an additional input array to determine the number of elements to use along the reduction axis.
|
|
AFAPI array | allTrue (const array &in, const int dim=-1) |
| C++ Interface for checking all true values in an array.
|
|
AFAPI void | allTrueByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim=-1) |
| C++ Interface for checking all true values in an array according to a key.
|
|
AFAPI array | anyTrue (const array &in, const int dim=-1) |
| C++ Interface for checking any true values in an array.
|
|
AFAPI void | anyTrueByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim=-1) |
| C++ Interface for checking any true values in an array according to a key.
|
|
AFAPI array | count (const array &in, const int dim=-1) |
| C++ Interface for counting non-zero values in an array.
|
|
AFAPI void | countByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim=-1) |
| C++ Interface for counting non-zero values in an array according to a key.
|
|
template<typename T > |
T | sum (const array &in) |
| C++ Interface for sum of all elements in an array.
|
|
template<typename T > |
T | sum (const array &in, double nanval) |
| C++ Interface for sum of all elements in an array while replacing nan values.
|
|
template<typename T > |
T | product (const array &in) |
| C++ Interface for product of all elements in an array.
|
|
template<typename T > |
T | product (const array &in, double nanval) |
| C++ Interface for product of all elements in an array while replacing nan values.
|
|
template<typename T > |
T | min (const array &in) |
| C++ Interface for getting minimum value of an array.
|
|
template<typename T > |
T | max (const array &in) |
| C++ Interface for getting maximum value of an array.
|
|
template<typename T > |
T | allTrue (const array &in) |
| C++ Interface for checking if all values in an array are true.
|
|
template<typename T > |
T | anyTrue (const array &in) |
| C++ Interface for checking if any values in an array are true.
|
|
template<typename T > |
T | count (const array &in) |
| C++ Interface for counting total number of non-zero values in an array.
|
|
AFAPI void | min (array &val, array &idx, const array &in, const int dim=-1) |
| C++ Interface for getting minimum values and their locations in an array.
|
|
AFAPI void | max (array &val, array &idx, const array &in, const int dim=-1) |
| C++ Interface for getting maximum values and their locations in an array.
|
|
template<typename T > |
void | min (T *val, unsigned *idx, const array &in) |
| C++ Interface for getting minimum value and its location from the entire array.
|
|
template<typename T > |
void | max (T *val, unsigned *idx, const array &in) |
| C++ Interface for getting maximum value and its location from the entire array.
|
|
AFAPI array | accum (const array &in, const int dim=0) |
| C++ Interface for computing the cumulative sum (inclusive) of an array.
|
|
AFAPI array | scan (const array &in, const int dim=0, binaryOp op=AF_BINARY_ADD, bool inclusive_scan=true) |
| C++ Interface generalized scan of an array.
|
|
AFAPI array | scanByKey (const array &key, const array &in, const int dim=0, binaryOp op=AF_BINARY_ADD, bool inclusive_scan=true) |
| C++ Interface generalized scan by key of an array.
|
|
AFAPI array | where (const array &in) |
| C++ Interface for finding the locations of non-zero values in an array.
|
|
AFAPI array | diff1 (const array &in, const int dim=0) |
| C++ Interface for calculating first order differences in an array.
|
|
AFAPI array | diff2 (const array &in, const int dim=0) |
| C++ Interface for calculating second order differences in an array.
|
|
AFAPI array | sort (const array &in, const unsigned dim=0, const bool isAscending=true) |
| C++ Interface for sorting an array.
|
|
AFAPI void | sort (array &out, array &indices, const array &in, const unsigned dim=0, const bool isAscending=true) |
| C++ Interface for sorting an array and getting original indices.
|
|
AFAPI void | sort (array &out_keys, array &out_values, const array &keys, const array &values, const unsigned dim=0, const bool isAscending=true) |
| C++ Interface for sorting an array based on keys.
|
|
AFAPI array | setUnique (const array &in, const bool is_sorted=false) |
| C++ Interface for getting unique values.
|
|
AFAPI array | setUnion (const array &first, const array &second, const bool is_unique=false) |
| C++ Interface for finding the union of two arrays.
|
|
AFAPI array | setIntersect (const array &first, const array &second, const bool is_unique=false) |
| C++ Interface for finding the intersection of two arrays.
|
|
AFAPI array | min (const array &lhs, const array &rhs) |
| C++ Interface to find the elementwise minimum between two arrays.
|
|
AFAPI array | min (const array &lhs, const double rhs) |
| C++ Interface to find the elementwise minimum between an array and a scalar value.
|
|
AFAPI array | min (const double lhs, const array &rhs) |
| C++ Interface to find the elementwise minimum between an array and a scalar value.
|
|
AFAPI array | max (const array &lhs, const array &rhs) |
| C++ Interface to find the elementwise maximum between two arrays.
|
|
AFAPI array | max (const array &lhs, const double rhs) |
| C++ Interface to find the elementwise maximum between an array and a scalar value.
|
|
AFAPI array | max (const double lhs, const array &rhs) |
| C++ Interface to find the elementwise maximum between an array and a scalar value.
|
|
AFAPI array | abs (const array &in) |
| C++ Interface to calculate the absolute value.
|
|
AFAPI array | arg (const array &in) |
| C++ Interface to calculate the phase angle (in radians) of a complex array.
|
|
AFAPI array | sign (const array &in) |
| C++ Interface to return the sign of elements in an array.
|
|
AFAPI array | round (const array &in) |
| C++ Interface to round numbers.
|
|
AFAPI array | trunc (const array &in) |
| C++ Interface to truncate numbers.
|
|
AFAPI array | floor (const array &in) |
| C++ Interface to floor numbers.
|
|
AFAPI array | ceil (const array &in) |
| C++ Interface to ceil numbers.
|
|
AFAPI array | sin (const array &in) |
| C++ Interface to evaluate the sine function.
|
|
AFAPI array | cos (const array &in) |
| C++ Interface to evaluate the cosine function.
|
|
AFAPI array | tan (const array &in) |
| C++ Interface to evaluate the tangent function.
|
|
AFAPI array | asin (const array &in) |
| C++ Interface to evaluate the inverse sine function.
|
|
AFAPI array | acos (const array &in) |
| C++ Interface to evaluate the inverse cosine function.
|
|
AFAPI array | atan (const array &in) |
| C++ Interface to evaluate the inverse tangent function.
|
|
AFAPI array | sinh (const array &in) |
| C++ Interface to evaluate the hyperbolic sine function.
|
|
AFAPI array | cosh (const array &in) |
| C++ Interface to evaluate the hyperbolic cosine function.
|
|
AFAPI array | tanh (const array &in) |
| C++ Interface to evaluate the hyperbolic tangent function.
|
|
AFAPI array | asinh (const array &in) |
| C++ Interface to evaluate the inverse hyperbolic sine function.
|
|
AFAPI array | acosh (const array &in) |
| C++ Interface to evaluate the inverse hyperbolic cosine function.
|
|
AFAPI array | atanh (const array &in) |
| C++ Interface to evaluate the inverse hyperbolic tangent function.
|
|
AFAPI array | real (const array &in) |
| C++ Interface to return the real part of a complex array.
|
|
AFAPI array | imag (const array &in) |
| C++ Interface to return the imaginary part of a complex array.
|
|
AFAPI array | conjg (const array &in) |
| C++ Interface to calculate the complex conjugate of an input array.
|
|
AFAPI array | root (const array &nth_root, const array &value) |
| C++ Interface to evaluate the nth root.
|
|
AFAPI array | root (const array &nth_root, const double value) |
| C++ Interface to evaluate the nth root.
|
|
AFAPI array | root (const double nth_root, const array &value) |
| C++ Interface to evaluate the nth root.
|
|
AFAPI array | sigmoid (const array &in) |
| C++ Interface to evaluate the logistical sigmoid function.
|
|
AFAPI array | exp (const array &in) |
| C++ Interface to evaluate the exponential.
|
|
AFAPI array | expm1 (const array &in) |
| C++ Interface to evaluate the exponential of an array minus 1, exp(in) - 1 .
|
|
AFAPI array | erf (const array &in) |
| C++ Interface to evaluate the error function.
|
|
AFAPI array | erfc (const array &in) |
| C++ Interface to evaluate the complementary error function.
|
|
AFAPI array | log (const array &in) |
| C++ Interface to evaluate the natural logarithm.
|
|
AFAPI array | log1p (const array &in) |
| C++ Interface to evaluate the natural logarithm of 1 + input, ln(1+in) .
|
|
AFAPI array | log10 (const array &in) |
| C++ Interface to evaluate the base 10 logarithm.
|
|
AFAPI array | log2 (const array &in) |
| C++ Interface to evaluate the base 2 logarithm.
|
|
AFAPI array | sqrt (const array &in) |
| C++ Interface to evaluate the square root.
|
|
AFAPI array | rsqrt (const array &in) |
| C++ Interface to evaluate the reciprocal square root.
|
|
AFAPI array | cbrt (const array &in) |
| C++ Interface to evaluate the cube root.
|
|
AFAPI array | factorial (const array &in) |
| C++ Interface to calculate the factorial.
|
|
AFAPI array | tgamma (const array &in) |
| C++ Interface to evaluate the gamma function.
|
|
AFAPI array | lgamma (const array &in) |
| C++ Interface to evaluate the logarithm of the absolute value of the gamma function.
|
|
AFAPI array | iszero (const array &in) |
| C++ Interface to check which values are zero.
|
|
AFAPI array | isInf (const array &in) |
| C++ Interface to check if values are infinite.
|
|
AFAPI array | isNaN (const array &in) |
| C++ Interface to check if values are NaN.
|
|
AFAPI void | setBackend (const Backend bknd) |
|
AFAPI unsigned | getBackendCount () |
|
AFAPI int | getAvailableBackends () |
| Returns a flag of all available backends.
|
|
AFAPI af::Backend | getBackendId (const array &in) |
|
AFAPI af::Backend | getActiveBackend () |
|
AFAPI int | getDeviceId (const array &in) |
|
AFAPI array | matmul (const array &lhs, const array &rhs, const matProp optLhs=AF_MAT_NONE, const matProp optRhs=AF_MAT_NONE) |
| Matrix multiply of two arrays.
|
|
AFAPI array | matmulNT (const array &lhs, const array &rhs) |
| Matrix multiply of two arrays.
|
|
AFAPI array | matmulTN (const array &lhs, const array &rhs) |
| Matrix multiply of two arrays.
|
|
AFAPI array | matmulTT (const array &lhs, const array &rhs) |
| Matrix multiply of two arrays.
|
|
AFAPI array | matmul (const array &a, const array &b, const array &c) |
| Chain 2 matrix multiplications.
|
|
AFAPI array | matmul (const array &a, const array &b, const array &c, const array &d) |
| Chain 3 matrix multiplications.
|
|
template<typename T > |
T | dot (const array &lhs, const array &rhs, const matProp optLhs=AF_MAT_NONE, const matProp optRhs=AF_MAT_NONE) |
| Dot Product.
|
|
AFAPI array | dot (const array &lhs, const array &rhs, const matProp optLhs=AF_MAT_NONE, const matProp optRhs=AF_MAT_NONE) |
|
AFAPI array | transpose (const array &in, const bool conjugate=false) |
| C++ Interface for transposing a matrix.
|
|
AFAPI void | transposeInPlace (array &in, const bool conjugate=false) |
| C++ Interface for transposing a matrix in-place.
|
|
AFAPI int | devicecount () |
|
AFAPI int | deviceget () |
|
AFAPI void | deviceset (const int device) |
|
AFAPI array | loadimage (const char *filename, const bool is_color=false) |
|
AFAPI void | saveimage (const char *filename, const array &in) |
|
AFAPI array | gaussiankernel (const int rows, const int cols, const double sig_r=0, const double sig_c=0) |
|
template<typename T > |
T | alltrue (const array &in) |
|
template<typename T > |
T | anytrue (const array &in) |
|
AFAPI array | alltrue (const array &in, const int dim=-1) |
|
AFAPI array | anytrue (const array &in, const int dim=-1) |
|
AFAPI array | setunique (const array &in, const bool is_sorted=false) |
|
AFAPI array | setunion (const array &first, const array &second, const bool is_unique=false) |
|
AFAPI array | setintersect (const array &first, const array &second, const bool is_unique=false) |
|
AFAPI array | histequal (const array &in, const array &hist) |
|
AFAPI array | colorspace (const array &image, const CSpace to, const CSpace from) |
|
AFAPI array | filter (const array &image, const array &kernel) |
| Image Filtering.
|
|
AFAPI array | mul (const array &in, const int dim=-1) |
|
template<typename T > |
T | mul (const array &in) |
|
AFAPI void | deviceprop (char *d_name, char *d_platform, char *d_toolkit, char *d_compute) |
|
AFAPI float | real (af_cfloat val) |
|
AFAPI double | real (af_cdouble val) |
|
AFAPI float | imag (af_cfloat val) |
|
AFAPI double | imag (af_cdouble val) |
|
AFAPI af::cfloat | operator+ (const af::cfloat &lhs, const af::cfloat &rhs) |
|
AFAPI af::cdouble | operator+ (const af::cdouble &lhs, const af::cdouble &rhs) |
|
AFAPI af::cfloat | operator- (const af::cfloat &lhs, const af::cfloat &rhs) |
|
AFAPI af::cdouble | operator- (const af::cdouble &lhs, const af::cdouble &rhs) |
|
AFAPI af::cfloat | operator* (const af::cfloat &lhs, const af::cfloat &rhs) |
|
AFAPI af::cdouble | operator* (const af::cdouble &lhs, const af::cdouble &rhs) |
|
AFAPI af::cfloat | operator/ (const af::cfloat &lhs, const af::cfloat &rhs) |
|
AFAPI af::cdouble | operator/ (const af::cdouble &lhs, const af::cdouble &rhs) |
|
AFAPI af::cfloat | operator+ (const af::cfloat &lhs, const double &rhs) |
|
AFAPI af::cdouble | operator+ (const af::cdouble &lhs, const double &rhs) |
|
AFAPI af::cfloat | operator/ (const af::cfloat &lhs, const double &rhs) |
|
AFAPI af::cdouble | operator/ (const af::cdouble &lhs, const double &rhs) |
|
AFAPI af::cfloat | operator- (const af::cfloat &lhs, const double &rhs) |
|
AFAPI af::cdouble | operator- (const af::cdouble &lhs, const double &rhs) |
|
AFAPI af::cfloat | operator* (const af::cfloat &lhs, const double &rhs) |
|
AFAPI af::cdouble | operator* (const af::cdouble &lhs, const double &rhs) |
|
AFAPI af::cfloat | operator+ (const double &rhs, const af::cfloat &lhs) |
|
AFAPI af::cdouble | operator+ (const double &rhs, const af::cdouble &lhs) |
|
AFAPI af::cdouble | operator+ (const af::cfloat &lhs, const af::cdouble &rhs) |
|
AFAPI af::cdouble | operator+ (const af::cdouble &lhs, const af::cfloat &rhs) |
|
AFAPI af::cfloat | operator- (const double &rhs, const af::cfloat &lhs) |
|
AFAPI af::cdouble | operator- (const double &rhs, const af::cdouble &lhs) |
|
AFAPI af::cdouble | operator- (const af::cfloat &lhs, const af::cdouble &rhs) |
|
AFAPI af::cdouble | operator- (const af::cdouble &lhs, const af::cfloat &rhs) |
|
AFAPI af::cfloat | operator* (const double &rhs, const af::cfloat &lhs) |
|
AFAPI af::cdouble | operator* (const double &rhs, const af::cdouble &lhs) |
|
AFAPI af::cdouble | operator* (const af::cfloat &lhs, const af::cdouble &rhs) |
|
AFAPI af::cdouble | operator* (const af::cdouble &lhs, const af::cfloat &rhs) |
|
AFAPI af::cfloat | operator/ (const double &rhs, const af::cfloat &lhs) |
|
AFAPI af::cdouble | operator/ (const double &rhs, const af::cdouble &lhs) |
|
AFAPI af::cdouble | operator/ (const af::cfloat &lhs, const af::cdouble &rhs) |
|
AFAPI af::cdouble | operator/ (const af::cdouble &lhs, const af::cfloat &rhs) |
|
AFAPI bool | operator== (const cfloat &lhs, const cfloat &rhs) |
|
AFAPI bool | operator== (const cdouble &lhs, const cdouble &rhs) |
|
AFAPI bool | operator!= (const cfloat &lhs, const cfloat &rhs) |
|
AFAPI bool | operator!= (const cdouble &lhs, const cdouble &rhs) |
|
AFAPI std::istream & | operator>> (std::istream &is, cfloat &in) |
|
AFAPI std::istream & | operator>> (std::istream &is, cdouble &in) |
|
AFAPI std::ostream & | operator<< (std::ostream &os, const cfloat &in) |
|
AFAPI std::ostream & | operator<< (std::ostream &os, const cdouble &in) |
|
AFAPI float | abs (const cfloat &val) |
|
AFAPI double | abs (const cdouble &val) |
|
AFAPI cfloat | conj (const cfloat &val) |
|
AFAPI cdouble | conj (const cdouble &val) |
|
template<typename T > |
array | constant (T val, const dim4 &dims, const dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
template<typename T > |
array | constant (T val, const dim_t d0, const af_dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
template<typename T > |
array | constant (T val, const dim_t d0, const dim_t d1, const af_dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
template<typename T > |
array | constant (T val, const dim_t d0, const dim_t d1, const dim_t d2, const af_dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
template<typename T > |
array | constant (T val, const dim_t d0, const dim_t d1, const dim_t d2, const dim_t d3, const af_dtype ty=(af_dtype) dtype_traits< T >::ctype) |
|
AFAPI array | identity (const dim4 &dims, const dtype ty=f32) |
|
AFAPI array | identity (const dim_t d0, const dtype ty=f32) |
|
AFAPI array | identity (const dim_t d0, const dim_t d1, const dtype ty=f32) |
|
AFAPI array | identity (const dim_t d0, const dim_t d1, const dim_t d2, const dtype ty=f32) |
|
AFAPI array | identity (const dim_t d0, const dim_t d1, const dim_t d2, const dim_t d3, const dtype ty=f32) |
|
AFAPI array | range (const dim4 &dims, const int seq_dim=-1, const dtype ty=f32) |
| C++ Interface for creating an array with [0, n-1] values along the seq_dim dimension and tiled across other dimensions of shape dim4 .
|
|
AFAPI array | range (const dim_t d0, const dim_t d1=1, const dim_t d2=1, const dim_t d3=1, const int seq_dim=-1, const dtype ty=f32) |
| C++ Interface for creating an array with [0, n-1] values along the seq_dim dimension and tiled across other dimensions described by dimension parameters.
|
|
AFAPI array | iota (const dim4 &dims, const dim4 &tile_dims=dim4(1), const dtype ty=f32) |
|
AFAPI array | diag (const array &in, const int num=0, const bool extract=true) |
|
AFAPI array | join (const int dim, const array &first, const array &second) |
| Join 2 arrays along dim .
|
|
AFAPI array | join (const int dim, const array &first, const array &second, const array &third) |
| Join 3 arrays along dim .
|
|
AFAPI array | join (const int dim, const array &first, const array &second, const array &third, const array &fourth) |
| Join 4 arrays along dim .
|
|
AFAPI array | tile (const array &in, const unsigned x, const unsigned y=1, const unsigned z=1, const unsigned w=1) |
|
AFAPI array | tile (const array &in, const dim4 &dims) |
|
AFAPI array | reorder (const array &in, const unsigned x, const unsigned y=1, const unsigned z=2, const unsigned w=3) |
|
AFAPI array | shift (const array &in, const int x, const int y=0, const int z=0, const int w=0) |
|
AFAPI array | moddims (const array &in, const dim4 &dims) |
| C++ Interface for modifying the dimensions of an input array to the shape specified by a dim4 object.
|
|
AFAPI array | moddims (const array &in, const dim_t d0, const dim_t d1=1, const dim_t d2=1, const dim_t d3=1) |
| C++ Interface for modifying the dimensions of an input array to the shape specified by dimension length parameters.
|
|
AFAPI array | moddims (const array &in, const unsigned ndims, const dim_t *const dims) |
| C++ Interface for modifying the dimensions of an input array to the shape specified by an array of ndims dimensions.
|
|
AFAPI array | flat (const array &in) |
|
AFAPI array | flip (const array &in, const unsigned dim) |
|
AFAPI array | lower (const array &in, bool is_unit_diag=false) |
|
AFAPI array | upper (const array &in, bool is_unit_diag=false) |
|
AFAPI array | select (const array &cond, const array &a, const array &b) |
|
AFAPI array | select (const array &cond, const array &a, const double &b) |
|
AFAPI array | select (const array &cond, const double &a, const array &b) |
|
AFAPI void | replace (array &a, const array &cond, const array &b) |
|
AFAPI void | replace (array &a, const array &cond, const double &b) |
|
AFAPI array | pad (const array &in, const dim4 &beginPadding, const dim4 &endPadding, const borderType padFillType) |
|
AFAPI void | info () |
|
AFAPI const char * | infoString (const bool verbose=false) |
|
AFAPI void | deviceInfo (char *d_name, char *d_platform, char *d_toolkit, char *d_compute) |
|
AFAPI int | getDeviceCount () |
| Gets the number of devices.
|
|
AFAPI int | getDevice () |
| Gets the current device ID.
|
|
AFAPI bool | isDoubleAvailable (const int device) |
| Queries the current device for double precision floating point support.
|
|
AFAPI bool | isHalfAvailable (const int device) |
| Queries the current device for half precision floating point support.
|
|
AFAPI void | setDevice (const int device) |
| Sets the current device.
|
|
AFAPI void | sync (const int device=-1) |
| Blocks until the device is finished processing.
|
|
AFAPI void | free (const void *ptr) |
| Returns memory to ArrayFire's memory manager.
|
|
AFAPI void | freeV2 (const void *ptr) |
|
AFAPI void | freePinned (const void *ptr) |
| Free pinned memory allocated by ArrayFire's memory manager.
|
|
AFAPI void * | allocHost (const size_t elements, const dtype type) |
| Allocate memory on host.
|
|
template<typename T > |
AFAPI T * | allocHost (const size_t elements) |
| Allocate memory on host.
|
|
AFAPI void | freeHost (const void *ptr) |
| Free memory allocated internally by ArrayFire.
|
|
AFAPI void | setMemStepSize (const size_t size) |
| Set the resolution of memory chunks.
|
|
AFAPI size_t | getMemStepSize () |
| Get the resolution of memory chunks.
|
|
AFAPI dim4 | operator+ (const dim4 &first, const dim4 &second) |
| Performs an element-wise addition of two dim4 objects.
|
|
AFAPI dim4 | operator- (const dim4 &first, const dim4 &second) |
| Performs an element-wise subtraction of two dim4 objects.
|
|
AFAPI dim4 | operator* (const dim4 &first, const dim4 &second) |
| Performs an element-wise multiplication of two dim4 objects.
|
|
static std::ostream & | operator<< (std::ostream &ostr, const dim4 &dims) |
| Prints the elements of the dim4 array separated by spaces.
|
|
static std::istream & | operator>> (std::istream &istr, dim4 &dims) |
| Reads 4 dim_t values from an input stream and stores the results in a dim4.
|
|
AFAPI bool | isSpan (const af_seq &seq) |
| Returns true if the af_seq object represents the entire range of an axis.
|
|
AFAPI size_t | seqElements (const af_seq &seq) |
| Returns the number of elements that the af_seq object represents.
|
|
AFAPI dim_t | calcDim (const af_seq &seq, const dim_t &parentDim) |
| Returns the number of elements that will be represented by seq if applied on an array.
|
|
AFAPI bool | gforToggle () |
|
AFAPI bool | gforGet () |
|
AFAPI void | gforSet (bool val) |
|
AFAPI array | batchFunc (const array &lhs, const array &rhs, batchFunc_t func) |
|
AFAPI void | grad (array &dx, array &dy, const array &in) |
| C++ Interface for calculating the gradients.
|
|
AFAPI array | loadImage (const char *filename, const bool is_color=false) |
| C++ Interface for loading an image.
|
|
AFAPI void | saveImage (const char *filename, const array &in) |
| C++ Interface for saving an image.
|
|
AFAPI array | loadImageMem (const void *ptr) |
| C++ Interface for loading an image from memory.
|
|
AFAPI void * | saveImageMem (const array &in, const imageFormat format=AF_FIF_PNG) |
| C++ Interface for saving an image to memory.
|
|
AFAPI void | deleteImageMem (void *ptr) |
| C++ Interface for deleting memory created by saveImageMem or af_save_image_memory.
|
|
AFAPI array | loadImageNative (const char *filename) |
| C++ Interface for loading an image as its original type.
|
|
AFAPI void | saveImageNative (const char *filename, const array &in) |
| C++ Interface for saving an image without modifications.
|
|
AFAPI bool | isImageIOAvailable () |
| Function to check if Image IO is available.
|
|
AFAPI array | resize (const array &in, const dim_t odim0, const dim_t odim1, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for resizing an image to specified dimensions.
|
|
AFAPI array | resize (const float scale0, const float scale1, const array &in, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for resizing an image to specified scales.
|
|
AFAPI array | resize (const float scale, const array &in, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for resizing an image to specified scale.
|
|
AFAPI array | rotate (const array &in, const float theta, const bool crop=true, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for rotating an image.
|
|
AFAPI array | transform (const array &in, const array &transform, const dim_t odim0=0, const dim_t odim1=0, const interpType method=AF_INTERP_NEAREST, const bool inverse=true) |
| C++ Interface for transforming an image.
|
|
AFAPI array | transformCoordinates (const array &tf, const float d0, const float d1) |
| C++ Interface for transforming coordinates.
|
|
AFAPI array | translate (const array &in, const float trans0, const float trans1, const dim_t odim0=0, const dim_t odim1=0, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for translating an image.
|
|
AFAPI array | scale (const array &in, const float scale0, const float scale1, const dim_t odim0=0, const dim_t odim1=0, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for scaling an image.
|
|
AFAPI array | skew (const array &in, const float skew0, const float skew1, const dim_t odim0=0, const dim_t odim1=0, const bool inverse=true, const interpType method=AF_INTERP_NEAREST) |
| C++ Interface for skewing an image.
|
|
AFAPI array | bilateral (const array &in, const float spatial_sigma, const float chromatic_sigma, const bool is_color=false) |
| C++ Interface for bilateral filter.
|
|
AFAPI array | histogram (const array &in, const unsigned nbins, const double minval, const double maxval) |
| C++ Interface for histogram.
|
|
AFAPI array | histogram (const array &in, const unsigned nbins) |
| C++ Interface for histogram.
|
|
AFAPI array | meanShift (const array &in, const float spatial_sigma, const float chromatic_sigma, const unsigned iter, const bool is_color=false) |
| C++ Interface for mean shift.
|
|
AFAPI array | minfilt (const array &in, const dim_t wind_length=3, const dim_t wind_width=3, const borderType edge_pad=AF_PAD_ZERO) |
| C++ Interface for minimum filter.
|
|
AFAPI array | maxfilt (const array &in, const dim_t wind_length=3, const dim_t wind_width=3, const borderType edge_pad=AF_PAD_ZERO) |
| C++ Interface for maximum filter.
|
|
AFAPI array | dilate (const array &in, const array &mask) |
| C++ Interface for image dilation (max filter)
|
|
AFAPI array | dilate3 (const array &in, const array &mask) |
| C++ Interface for 3D image dilation.
|
|
AFAPI array | erode (const array &in, const array &mask) |
| C++ Interface for image erosion (min filter)
|
|
AFAPI array | erode3 (const array &in, const array &mask) |
| C++ Interface for 3d for image erosion.
|
|
AFAPI array | regions (const array &in, const af::connectivity connectivity=AF_CONNECTIVITY_4, const dtype type=f32) |
| C++ Interface for getting regions in an image.
|
|
AFAPI void | sobel (array &dx, array &dy, const array &img, const unsigned ker_size=3) |
| C++ Interface for extracting sobel gradients.
|
|
AFAPI array | sobel (const array &img, const unsigned ker_size=3, const bool isFast=false) |
| C++ Interface for sobel filtering.
|
|
AFAPI array | rgb2gray (const array &in, const float rPercent=0.2126f, const float gPercent=0.7152f, const float bPercent=0.0722f) |
| C++ Interface for RGB to gray conversion.
|
|
AFAPI array | gray2rgb (const array &in, const float rFactor=1.0, const float gFactor=1.0, const float bFactor=1.0) |
| C++ Interface for gray to RGB conversion.
|
|
AFAPI array | histEqual (const array &in, const array &hist) |
| C++ Interface for histogram equalization.
|
|
AFAPI array | gaussianKernel (const int rows, const int cols, const double sig_r=0, const double sig_c=0) |
| C++ Interface for generating gausian kernels.
|
|
AFAPI array | hsv2rgb (const array &in) |
| C++ Interface for converting HSV to RGB.
|
|
AFAPI array | rgb2hsv (const array &in) |
| C++ Interface for converting RGB to HSV.
|
|
AFAPI array | colorSpace (const array &image, const CSpace to, const CSpace from) |
| C++ Interface wrapper for colorspace conversion.
|
|
AFAPI array | unwrap (const array &in, const dim_t wx, const dim_t wy, const dim_t sx, const dim_t sy, const dim_t px=0, const dim_t py=0, const bool is_column=true) |
| C++ Interface for rearranging windowed sections of an input into columns (or rows)
|
|
AFAPI array | wrap (const array &in, const dim_t ox, const dim_t oy, const dim_t wx, const dim_t wy, const dim_t sx, const dim_t sy, const dim_t px=0, const dim_t py=0, const bool is_column=true) |
| C++ Interface for performing the opposite of unwrap.
|
|
AFAPI array | sat (const array &in) |
| C++ Interface wrapper for summed area tables.
|
|
AFAPI array | ycbcr2rgb (const array &in, const YCCStd standard=AF_YCC_601) |
| C++ Interface for converting YCbCr to RGB.
|
|
AFAPI array | rgb2ycbcr (const array &in, const YCCStd standard=AF_YCC_601) |
| C++ Interface for converting RGB to YCbCr.
|
|
AFAPI void | moments (double *out, const array &in, const momentType moment=AF_MOMENT_FIRST_ORDER) |
| C++ Interface for calculating an image moment.
|
|
AFAPI array | moments (const array &in, const momentType moment=AF_MOMENT_FIRST_ORDER) |
| C++ Interface for calculating image moments.
|
|
AFAPI array | canny (const array &in, const cannyThreshold thresholdType, const float lowThresholdRatio, const float highThresholdRatio, const unsigned sobelWindow=3, const bool isFast=false) |
| C++ Interface for canny edge detector.
|
|
AFAPI array | anisotropicDiffusion (const af::array &in, const float timestep, const float conductance, const unsigned iterations, const fluxFunction fftype=AF_FLUX_EXPONENTIAL, const diffusionEq diffusionKind=AF_DIFFUSION_GRAD) |
| C++ Interface for gradient anisotropic(non-linear diffusion) smoothing.
|
|
AFAPI array | iterativeDeconv (const array &in, const array &ker, const unsigned iterations, const float relaxFactor, const iterativeDeconvAlgo algo) |
| C++ Interface for Iterative deconvolution algorithm.
|
|
AFAPI array | inverseDeconv (const array &in, const array &psf, const float gamma, const inverseDeconvAlgo algo) |
| C++ Interface for Tikhonov deconvolution algorithm.
|
|
AFAPI array | confidenceCC (const array &in, const array &seeds, const unsigned radius, const unsigned multiplier, const int iter, const double segmentedValue) |
| C++ Interface for confidence connected components.
|
|
AFAPI array | confidenceCC (const array &in, const array &seedx, const array &seedy, const unsigned radius, const unsigned multiplier, const int iter, const double segmentedValue) |
| C++ Interface for confidence connected components.
|
|
AFAPI array | confidenceCC (const array &in, const size_t num_seeds, const unsigned *seedx, const unsigned *seedy, const unsigned radius, const unsigned multiplier, const int iter, const double segmentedValue) |
| C++ Interface for confidence connected components.
|
|
AFAPI array | lookup (const array &in, const array &idx, const int dim=-1) |
| Lookup the values of an input array by indexing with another array.
|
|
AFAPI void | copy (array &dst, const array &src, const index &idx0, const index &idx1=span, const index &idx2=span, const index &idx3=span) |
| Copy the values of an input array based on index.
|
|
AFAPI array | createStridedArray (const void *data, const dim_t offset, const dim4 dims, const dim4 strides, const af::dtype ty, const af::source location) |
|
AFAPI dim4 | getStrides (const array &in) |
|
AFAPI dim_t | getOffset (const array &in) |
|
AFAPI void * | getRawPtr (const array &in) |
|
AFAPI bool | isLinear (const array &in) |
|
AFAPI bool | isOwner (const array &in) |
|
AFAPI void | svd (array &u, array &s, array &vt, const array &in) |
| C++ Interface for SVD decomposition.
|
|
AFAPI void | svdInPlace (array &u, array &s, array &vt, array &in) |
| C++ Interface for SVD decomposition (in-place)
|
|
AFAPI void | lu (array &out, array &pivot, const array &in, const bool is_lapack_piv=true) |
| C++ Interface for LU decomposition in packed format.
|
|
AFAPI void | lu (array &lower, array &upper, array &pivot, const array &in) |
| C++ Interface for LU decomposition.
|
|
AFAPI void | luInPlace (array &pivot, array &in, const bool is_lapack_piv=true) |
| C++ Interface for in place LU decomposition.
|
|
AFAPI void | qr (array &out, array &tau, const array &in) |
| C++ Interface for QR decomposition in packed format.
|
|
AFAPI void | qr (array &q, array &r, array &tau, const array &in) |
| C++ Interface for QR decomposition.
|
|
AFAPI void | qrInPlace (array &tau, array &in) |
| C++ Interface for QR decomposition.
|
|
AFAPI int | cholesky (array &out, const array &in, const bool is_upper=true) |
| C++ Interface for cholesky decomposition.
|
|
AFAPI int | choleskyInPlace (array &in, const bool is_upper=true) |
| C++ Interface for in place cholesky decomposition.
|
|
AFAPI array | solve (const array &a, const array &b, const matProp options=AF_MAT_NONE) |
| C++ Interface for solving a system of equations.
|
|
AFAPI array | solveLU (const array &a, const array &piv, const array &b, const matProp options=AF_MAT_NONE) |
| C++ Interface for solving a system of equations.
|
|
AFAPI array | inverse (const array &in, const matProp options=AF_MAT_NONE) |
| C++ Interface for inverting a matrix.
|
|
AFAPI array | pinverse (const array &in, const double tol=1E-6, const matProp options=AF_MAT_NONE) |
| C++ Interface for pseudo-inverting (Moore-Penrose) a matrix.
|
|
AFAPI unsigned | rank (const array &in, const double tol=1E-5) |
| C++ Interface for finding the rank of a matrix.
|
|
template<typename T > |
T | det (const array &in) |
| C++ Interface for finding the determinant of a matrix.
|
|
AFAPI double | norm (const array &in, const normType type=AF_NORM_EUCLID, const double p=1, const double q=1) |
| C++ Interface for norm of a matrix.
|
|
AFAPI bool | isLAPACKAvailable () |
| Returns true is ArrayFire is compiled with LAPACK support.
|
|
AFAPI array | convolve2GradientNN (const array &incoming_gradient, const array &original_signal, const array &original_filter, const array &convolved_output, const dim4 stride, const dim4 padding, const dim4 dilation, convGradientType grad_type) |
| C++ interface for calculating backward pass gradient of 2D convolution This function calculates the gradient with respect to the output of the convolve2NN function that uses the machine learning formulation for the dimensions of the signals and filters.
|
|
AFAPI array | randu (const dim4 &dims, const dtype ty, randomEngine &r) |
|
AFAPI array | randn (const dim4 &dims, const dtype ty, randomEngine &r) |
|
AFAPI array | randu (const dim4 &dims, const dtype ty=f32) |
|
AFAPI array | randu (const dim_t d0, const dtype ty=f32) |
|
AFAPI array | randu (const dim_t d0, const dim_t d1, const dtype ty=f32) |
|
AFAPI array | randu (const dim_t d0, const dim_t d1, const dim_t d2, const dtype ty=f32) |
|
AFAPI array | randu (const dim_t d0, const dim_t d1, const dim_t d2, const dim_t d3, const dtype ty=f32) |
|
AFAPI array | randn (const dim4 &dims, const dtype ty=f32) |
|
AFAPI array | randn (const dim_t d0, const dtype ty=f32) |
|
AFAPI array | randn (const dim_t d0, const dim_t d1, const dtype ty=f32) |
|
AFAPI array | randn (const dim_t d0, const dim_t d1, const dim_t d2, const dtype ty=f32) |
|
AFAPI array | randn (const dim_t d0, const dim_t d1, const dim_t d2, const dim_t d3, const dtype ty=f32) |
|
AFAPI void | setDefaultRandomEngineType (randomEngineType rtype) |
|
AFAPI randomEngine | getDefaultRandomEngine (void) |
|
AFAPI void | setSeed (const unsigned long long seed) |
| Sets the seed of the default random number generator.
|
|
AFAPI unsigned long long | getSeed () |
| Gets the seed of the default random number generator.
|
|
AFAPI array | approx1 (const array &in, const array &pos, const interpType method=AF_INTERP_LINEAR, const float off_grid=0.0f) |
| C++ Interface for data interpolation on one-dimensional signals.
|
|
AFAPI array | approx2 (const array &in, const array &pos0, const array &pos1, const interpType method=AF_INTERP_LINEAR, const float off_grid=0.0f) |
| C++ Interface for data interpolation on two-dimensional signals.
|
|
AFAPI array | approx1 (const array &in, const array &pos, const int interp_dim, const double idx_start, const double idx_step, const interpType method=AF_INTERP_LINEAR, const float off_grid=0.0f) |
| C++ Interface for data interpolation on one-dimensional signals.
|
|
AFAPI array | approx2 (const array &in, const array &pos0, const int interp_dim0, const double idx_start_dim0, const double idx_step_dim0, const array &pos1, const int interp_dim1, const double idx_start_dim1, const double idx_step_dim1, const interpType method=AF_INTERP_LINEAR, const float off_grid=0.0f) |
| C++ Interface for data interpolation on two-dimensional signals.
|
|
AFAPI array | fftNorm (const array &in, const double norm_factor, const dim_t odim0=0) |
| C++ Interface for fast fourier transform on one dimensional signals.
|
|
AFAPI array | fft2Norm (const array &in, const double norm_factor, const dim_t odim0=0, const dim_t odim1=0) |
| C++ Interface for fast fourier transform on two dimensional signals.
|
|
AFAPI array | fft3Norm (const array &in, const double norm_factor, const dim_t odim0=0, const dim_t odim1=0, const dim_t odim2=0) |
| C++ Interface for fast fourier transform on three dimensional signals.
|
|
AFAPI void | fftInPlace (array &in, const double norm_factor=1.0) |
| C++ Interface for fast fourier transform on one dimensional signals.
|
|
AFAPI void | fft2InPlace (array &in, const double norm_factor=1.0) |
| C++ Interface for fast fourier transform on two dimensional signals.
|
|
AFAPI void | fft3InPlace (array &in, const double norm_factor=1.0) |
| C++ Interface for fast fourier transform on three dimensional signals.
|
|
AFAPI array | fft (const array &in, const dim_t odim0=0) |
| C++ Interface for fast fourier transform on one dimensional signals.
|
|
AFAPI array | fft2 (const array &in, const dim_t odim0=0, const dim_t odim1=0) |
| C++ Interface for fast fourier transform on two dimensional signals.
|
|
AFAPI array | fft3 (const array &in, const dim_t odim0=0, const dim_t odim1=0, const dim_t odim2=0) |
| C++ Interface for fast fourier transform on three dimensional signals.
|
|
AFAPI array | dft (const array &in, const double norm_factor, const dim4 outDims) |
| C++ Interface for fast fourier transform on any(1d, 2d, 3d) dimensional signals.
|
|
AFAPI array | dft (const array &in, const dim4 outDims) |
| C++ Interface for fast fourier transform on any(1d, 2d, 3d) dimensional signals.
|
|
AFAPI array | dft (const array &in) |
| C++ Interface for fast fourier transform on any(1d, 2d, 3d) dimensional signals.
|
|
AFAPI array | ifftNorm (const array &in, const double norm_factor, const dim_t odim0=0) |
| C++ Interface for inverse fast fourier transform on one dimensional signals.
|
|
AFAPI array | ifft2Norm (const array &in, const double norm_factor, const dim_t odim0=0, const dim_t odim1=0) |
| C++ Interface for inverse fast fourier transform on two dimensional signals.
|
|
AFAPI array | ifft3Norm (const array &in, const double norm_factor, const dim_t odim0=0, const dim_t odim1=0, const dim_t odim2=0) |
| C++ Interface for inverse fast fourier transform on three dimensional signals.
|
|
AFAPI void | ifftInPlace (array &in, const double norm_factor=1.0) |
| C++ Interface for fast fourier transform on one dimensional signals.
|
|
AFAPI void | ifft2InPlace (array &in, const double norm_factor=1.0) |
| C++ Interface for fast fourier transform on two dimensional signals.
|
|
AFAPI void | ifft3InPlace (array &in, const double norm_factor=1.0) |
| C++ Interface for fast fourier transform on three dimensional signals.
|
|
AFAPI array | ifft (const array &in, const dim_t odim0=0) |
| C++ Interface for inverse fast fourier transform on one dimensional signals.
|
|
AFAPI array | ifft2 (const array &in, const dim_t odim0=0, const dim_t odim1=0) |
| C++ Interface for inverse fast fourier transform on two dimensional signals.
|
|
AFAPI array | ifft3 (const array &in, const dim_t odim0=0, const dim_t odim1=0, const dim_t odim2=0) |
| C++ Interface for inverse fast fourier transform on three dimensional signals.
|
|
AFAPI array | idft (const array &in, const double norm_factor, const dim4 outDims) |
| C++ Interface for inverse fast fourier transform on any(1d, 2d, 3d) dimensional signals.
|
|
AFAPI array | idft (const array &in, const dim4 outDims) |
| C++ Interface for inverse fast fourier transform on any(1d, 2d, 3d) dimensional signals.
|
|
AFAPI array | idft (const array &in) |
| C++ Interface for inverse fast fourier transform on any(1d, 2d, 3d) dimensional signals.
|
|
template<int rank> |
array | fftR2C (const array &in, const dim4 &dims, const double norm_factor=1.0) |
| C++ Interface for real to complex fast fourier transform for one dimensional signals.
|
|
template<int rank> |
array | fftR2C (const array &in, const double norm_factor=1.0) |
| C++ Interface for real to complex fast fourier transform for one dimensional signals.
|
|
template<int rank> |
array | fftC2R (const array &in, bool is_odd=false, const double norm_factor=1.0) |
| C++ Interface for complex to real fast fourier transform.
|
|
AFAPI array | convolve (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO) |
| C++ Interface for convolution any(one through three) dimensional signals.
|
|
AFAPI array | convolve (const array &col_filter, const array &row_filter, const array &signal, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for separable convolution on two dimensional signals.
|
|
AFAPI array | convolve1 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO) |
| C++ Interface for convolution on one dimensional signals.
|
|
AFAPI array | convolve2 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO) |
| C++ Interface for convolution on two dimensional signals.
|
|
AFAPI array | convolve2NN (const array &signal, const array &filter, const dim4 stride, const dim4 padding, const dim4 dilation) |
| C++ Interface for 2D convolution.
|
|
AFAPI array | convolve3 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT, const convDomain domain=AF_CONV_AUTO) |
| C++ Interface for convolution on three dimensional signals.
|
|
AFAPI array | fftConvolve (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for FFT-based convolution any(one through three) dimensional signals.
|
|
AFAPI array | fftConvolve1 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for convolution on 1D signals using FFT.
|
|
AFAPI array | fftConvolve2 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for convolution on 2D signals using FFT.
|
|
AFAPI array | fftConvolve3 (const array &signal, const array &filter, const convMode mode=AF_CONV_DEFAULT) |
| C++ Interface for convolution on 3D signals using FFT.
|
|
AFAPI array | fir (const array &b, const array &x) |
| C++ Interface for finite impulse response filter.
|
|
AFAPI array | iir (const array &b, const array &a, const array &x) |
| C++ Interface for infinite impulse response filter.
|
|
AFAPI array | medfilt (const array &in, const dim_t wind_length=3, const dim_t wind_width=3, const borderType edge_pad=AF_PAD_ZERO) |
| C++ Interface for median filter.
|
|
AFAPI array | medfilt1 (const array &in, const dim_t wind_width=3, const borderType edge_pad=AF_PAD_ZERO) |
| C++ Interface for median filter.
|
|
AFAPI array | medfilt2 (const array &in, const dim_t wind_length=3, const dim_t wind_width=3, const borderType edge_pad=AF_PAD_ZERO) |
| C++ Interface for median filter.
|
|
AFAPI void | setFFTPlanCacheSize (size_t cacheSize) |
| C++ Interface for setting plan cache size.
|
|
AFAPI array | sparse (const dim_t nRows, const dim_t nCols, const array values, const array rowIdx, const array colIdx, const af::storage stype=AF_STORAGE_CSR) |
| This function converts af::array of values, row indices and column indices into a sparse array.
|
|
AFAPI array | sparse (const dim_t nRows, const dim_t nCols, const dim_t nNZ, const void *const values, const int *const rowIdx, const int *const colIdx, const dtype type=f32, const af::storage stype=AF_STORAGE_CSR, const af::source src=afHost) |
| This function converts host or device arrays of values, row indices and column indices into a sparse array on the device.
|
|
AFAPI array | sparse (const array dense, const af::storage stype=AF_STORAGE_CSR) |
| This function converts a dense af::array into a sparse array.
|
|
AFAPI array | sparseConvertTo (const array in, const af::storage destStrorage) |
|
AFAPI array | dense (const array sparse) |
|
AFAPI void | sparseGetInfo (array &values, array &rowIdx, array &colIdx, af::storage &stype, const array in) |
|
AFAPI array | sparseGetValues (const array in) |
|
AFAPI array | sparseGetRowIdx (const array in) |
|
AFAPI array | sparseGetColIdx (const array in) |
|
AFAPI dim_t | sparseGetNNZ (const array in) |
|
AFAPI af::storage | sparseGetStorage (const array in) |
|
AFAPI array | mean (const array &in, const dim_t dim=-1) |
| C++ Interface for mean.
|
|
AFAPI array | mean (const array &in, const array &weights, const dim_t dim=-1) |
| C++ Interface for mean of weighted inputs.
|
|
AFAPI array | var (const array &in, const bool isbiased=false, const dim_t dim=-1) |
| C++ Interface for variance.
|
|
AFAPI array | var (const array &in, const af_var_bias bias, const dim_t dim=-1) |
| C++ Interface for variance.
|
|
AFAPI array | var (const array &in, const array &weights, const dim_t dim=-1) |
| C++ Interface for variance of weighted inputs.
|
|
AFAPI void | meanvar (array &mean, array &var, const array &in, const array &weights, const af_var_bias bias=AF_VARIANCE_POPULATION, const dim_t dim=-1) |
| C++ Interface for mean and variance.
|
|
AFAPI array | stdev (const array &in, const dim_t dim=-1) |
| C++ Interface for standard deviation.
|
|
AFAPI array | stdev (const array &in, const af_var_bias bias, const dim_t dim=-1) |
| C++ Interface for standard deviation.
|
|
AFAPI array | cov (const array &X, const array &Y, const bool isbiased=false) |
| C++ Interface for covariance.
|
|
AFAPI array | cov (const array &X, const array &Y, const af_var_bias bias) |
| C++ Interface for covariance.
|
|
AFAPI array | median (const array &in, const dim_t dim=-1) |
| C++ Interface for median.
|
|
template<typename T > |
AFAPI T | mean (const array &in) |
| C++ Interface for mean of all elements.
|
|
template<typename T > |
AFAPI T | mean (const array &in, const array &weights) |
| C++ Interface for mean of all elements in weighted input.
|
|
template<typename T > |
AFAPI T | var (const array &in, const bool isbiased=false) |
| C++ Interface for variance of all elements.
|
|
template<typename T > |
AFAPI T | var (const array &in, const af_var_bias bias) |
| C++ Interface for variance of all elements.
|
|
template<typename T > |
AFAPI T | var (const array &in, const array &weights) |
| C++ Interface for variance of all elements in weighted input.
|
|
template<typename T > |
AFAPI T | stdev (const array &in) |
| C++ Interface for standard deviation of all elements.
|
|
template<typename T > |
AFAPI T | stdev (const array &in, const af_var_bias bias) |
| C++ Interface for standard deviation of all elements.
|
|
template<typename T > |
AFAPI T | median (const array &in) |
| C++ Interface for median of all elements.
|
|
template<typename T > |
AFAPI T | corrcoef (const array &X, const array &Y) |
| C++ Interface for correlation coefficient.
|
|
AFAPI void | topk (array &values, array &indices, const array &in, const int k, const int dim=-1, const topkFunction order=AF_TOPK_MAX) |
| C++ Interface for finding top k elements along a given dimension.
|
|
AFAPI double | timeit (void(*fn)()) |
|
AFAPI void | print (const char *exp, const array &arr) |
|
AFAPI void | print (const char *exp, const array &arr, const int precision) |
|
AFAPI int | saveArray (const char *key, const array &arr, const char *filename, const bool append=false) |
|
AFAPI array | readArray (const char *filename, const unsigned index) |
|
AFAPI array | readArray (const char *filename, const char *key) |
|
AFAPI int | readArrayCheck (const char *filename, const char *key) |
| When reading by key, it may be a good idea to run this function first to check for the key and then call the readArray using the index.
|
|
AFAPI void | toString (char **output, const char *exp, const array &arr, const int precision=4, const bool transpose=true) |
|
AFAPI const char * | toString (const char *exp, const array &arr, const int precision=4, const bool transpose=true) |
|
AFAPI array | exampleFunction (const array &in, const af_someenum_t param) |
|
AFAPI size_t | getSizeOf (af::dtype type) |
| Get the size of the type represented by an af_dtype enum.
|
|
AFAPI features | fast (const array &in, const float thr=20.0f, const unsigned arc_length=9, const bool non_max=true, const float feature_ratio=0.05f, const unsigned edge=3) |
| C++ Interface for FAST feature detector.
|
|
AFAPI features | harris (const array &in, const unsigned max_corners=500, const float min_response=1e5f, const float sigma=1.f, const unsigned block_size=0, const float k_thr=0.04f) |
| C++ Interface for Harris corner detector.
|
|
AFAPI void | orb (features &feat, array &desc, const array &image, const float fast_thr=20.f, const unsigned max_feat=400, const float scl_fctr=1.5f, const unsigned levels=4, const bool blur_img=false) |
| C++ Interface for ORB feature descriptor.
|
|
AFAPI void | sift (features &feat, array &desc, const array &in, const unsigned n_layers=3, const float contrast_thr=0.04f, const float edge_thr=10.f, const float init_sigma=1.6f, const bool double_input=true, const float intensity_scale=0.00390625f, const float feature_ratio=0.05f) |
| C++ Interface for SIFT feature detector and descriptor.
|
|
AFAPI void | gloh (features &feat, array &desc, const array &in, const unsigned n_layers=3, const float contrast_thr=0.04f, const float edge_thr=10.f, const float init_sigma=1.6f, const bool double_input=true, const float intensity_scale=0.00390625f, const float feature_ratio=0.05f) |
| C++ Interface for SIFT feature detector and GLOH descriptor.
|
|
AFAPI void | hammingMatcher (array &idx, array &dist, const array &query, const array &train, const dim_t dist_dim=0, const unsigned n_dist=1) |
| C++ Interface wrapper for Hamming matcher.
|
|
AFAPI void | nearestNeighbour (array &idx, array &dist, const array &query, const array &train, const dim_t dist_dim=0, const unsigned n_dist=1, const af_match_type dist_type=AF_SSD) |
| C++ interface wrapper for determining the nearest neighbouring points to a given set of points.
|
|
AFAPI array | matchTemplate (const array &searchImg, const array &templateImg, const matchType mType=AF_SAD) |
| C++ Interface for image template matching.
|
|
AFAPI features | susan (const array &in, const unsigned radius=3, const float diff_thr=32.0f, const float geom_thr=10.0f, const float feature_ratio=0.05f, const unsigned edge=3) |
| C++ Interface for SUSAN corner detector.
|
|
AFAPI array | dog (const array &in, const int radius1, const int radius2) |
| C++ Interface wrapper for Difference of Gaussians.
|
|
AFAPI void | homography (array &H, int &inliers, const array &x_src, const array &y_src, const array &x_dst, const array &y_dst, const af_homography_type htype=AF_HOMOGRAPHY_RANSAC, const float inlier_thr=3.f, const unsigned iterations=1000, const dtype otype=f32) |
| C++ Interface for Homography estimation.
|
|
|
AFAPI array | clamp (const array &in, const array &lo, const array &hi) |
|
AFAPI array | clamp (const array &in, const array &lo, const double hi) |
|
AFAPI array | clamp (const array &in, const double lo, const array &hi) |
|
AFAPI array | clamp (const array &in, const double lo, const double hi) |
|
|
AFAPI array | rem (const array &lhs, const array &rhs) |
|
AFAPI array | rem (const array &lhs, const double rhs) |
|
AFAPI array | rem (const double lhs, const array &rhs) |
|
|
AFAPI array | mod (const array &lhs, const array &rhs) |
|
AFAPI array | mod (const array &lhs, const double rhs) |
|
AFAPI array | mod (const double lhs, const array &rhs) |
|
|
AFAPI array | hypot (const array &lhs, const array &rhs) |
| C++ Interface to calculate the length of the hypotenuse of two inputs.
|
|
AFAPI array | hypot (const array &lhs, const double rhs) |
| C++ Interface to calculate the length of the hypotenuse of two inputs.
|
|
AFAPI array | hypot (const double lhs, const array &rhs) |
| C++ Interface to calculate the length of the hypotenuse of two inputs.
|
|
|
AFAPI array | atan2 (const array &lhs, const array &rhs) |
| C++ Interface to evaluate the inverse tangent of two arrays.
|
|
AFAPI array | atan2 (const array &lhs, const double rhs) |
| C++ Interface to evaluate the inverse tangent of two arrays.
|
|
AFAPI array | atan2 (const double lhs, const array &rhs) |
| C++ Interface to evaluate the inverse tangent of two arrays.
|
|
|
AFAPI array | complex (const array &in) |
| C++ Interface to create a complex array from a single real array.
|
|
AFAPI array | complex (const array &real_, const array &imag_) |
| C++ Interface to create a complex array from two real arrays.
|
|
AFAPI array | complex (const array &real_, const double imag_) |
| C++ Interface to create a complex array from a single real array for the real component and a single scalar for each imaginary component.
|
|
AFAPI array | complex (const double real_, const array &imag_) |
| C++ Interface to create a complex array from a single scalar for each real component and a single real array for the imaginary component.
|
|
|
AFAPI array | pow (const array &base, const array &exponent) |
| C++ Interface to raise a base to a power (or exponent).
|
|
AFAPI array | pow (const array &base, const double exponent) |
| C++ Interface to raise a base to a power (or exponent).
|
|
AFAPI array | pow (const double base, const array &exponent) |
| C++ Interface to raise a base to a power (or exponent).
|
|
AFAPI array | pow2 (const array &in) |
| C++ Interface to raise 2 to a power (or exponent).
|
|
|
AFAPI array | operator+ (const array &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const bool &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const int &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const unsigned &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const char &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const unsigned char &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const long &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const unsigned long &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const long long &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const unsigned long long &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const double &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const float &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const cfloat &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const cdouble &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const bool &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const int &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const unsigned &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const char &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const unsigned char &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const long &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const unsigned long &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const long long &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const unsigned long long &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const double &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const float &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const cfloat &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator+ (const short &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const unsigned short &lhs, const array &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const short &rhs) |
| Adds two arrays or an array and a value.
|
|
AFAPI array | operator+ (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator- (const array &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const bool &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const int &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const unsigned &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const char &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const unsigned char &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const long &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const unsigned long &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const long long &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const unsigned long long &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const double &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const float &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const cfloat &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const cdouble &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const bool &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const int &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const unsigned &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const char &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const unsigned char &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const long &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const unsigned long &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const long long &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const unsigned long long &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const double &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const float &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const cfloat &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator- (const short &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const unsigned short &lhs, const array &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const short &rhs) |
| Subtracts two arrays or an array and a value.
|
|
AFAPI array | operator- (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator* (const array &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const bool &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const int &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const unsigned &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const char &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const unsigned char &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const long &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const unsigned long &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const long long &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const unsigned long long &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const double &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const float &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const cfloat &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const cdouble &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const bool &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const int &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const unsigned &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const char &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const unsigned char &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const long &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const unsigned long &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const long long &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const unsigned long long &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const double &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const float &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const cfloat &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator* (const short &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const unsigned short &lhs, const array &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const short &rhs) |
| Multiplies two arrays or an array and a value.
|
|
AFAPI array | operator* (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator/ (const array &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const bool &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const int &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const unsigned &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const char &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const unsigned char &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const long &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const unsigned long &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const long long &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const unsigned long long &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const double &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const float &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const cfloat &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const cdouble &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const bool &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const int &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const unsigned &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const char &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const unsigned char &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const long &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const unsigned long &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const long long &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const unsigned long long &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const double &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const float &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const cfloat &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator/ (const short &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const unsigned short &lhs, const array &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const short &rhs) |
| Divides two arrays or an array and a value.
|
|
AFAPI array | operator/ (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator== (const array &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const bool &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const int &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const unsigned &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const char &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const unsigned char &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const long &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const unsigned long &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const long long &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const unsigned long long &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const double &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const float &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const cfloat &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const cdouble &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const bool &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const int &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const unsigned &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const char &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const unsigned char &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const long &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const unsigned long &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const long long &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const unsigned long long &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const double &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const float &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const cfloat &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator== (const short &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const unsigned short &lhs, const array &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const short &rhs) |
| Performs an equality operation on two arrays or an array and a value.
|
|
AFAPI array | operator== (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator!= (const array &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const bool &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const int &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const unsigned &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const char &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const unsigned char &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const long &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const unsigned long &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const long long &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const unsigned long long &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const double &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const float &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const cfloat &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const cdouble &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const bool &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const int &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const unsigned &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const char &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const unsigned char &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const long &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const unsigned long &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const long long &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const unsigned long long &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const double &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const float &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const cfloat &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator!= (const short &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const unsigned short &lhs, const array &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const short &rhs) |
| Performs an inequality operation on two arrays or an array and a value.
|
|
AFAPI array | operator!= (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator< (const array &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const bool &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const int &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const unsigned &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const char &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const unsigned char &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const long &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const unsigned long &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const long long &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const unsigned long long &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const double &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const float &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const cfloat &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const cdouble &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const bool &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const int &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const unsigned &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const char &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const unsigned char &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const long &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const unsigned long &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const long long &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const unsigned long long &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const double &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const float &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const cfloat &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator< (const short &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const unsigned short &lhs, const array &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const short &rhs) |
| Performs a lower than operation on two arrays or an array and a value.
|
|
AFAPI array | operator< (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator<= (const array &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const bool &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const int &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const unsigned &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const char &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const unsigned char &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const long &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const unsigned long &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const long long &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const unsigned long long &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const double &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const float &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const cfloat &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const cdouble &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const bool &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const int &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const unsigned &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const char &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const unsigned char &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const long &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const unsigned long &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const long long &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const unsigned long long &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const double &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const float &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const cfloat &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator<= (const short &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const unsigned short &lhs, const array &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const short &rhs) |
| Performs an lower or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator<= (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator> (const array &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const bool &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const int &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const unsigned &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const char &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const unsigned char &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const long &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const unsigned long &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const long long &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const unsigned long long &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const double &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const float &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const cfloat &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const cdouble &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const bool &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const int &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const unsigned &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const char &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const unsigned char &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const long &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const unsigned long &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const long long &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const unsigned long long &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const double &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const float &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const cfloat &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator> (const short &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const unsigned short &lhs, const array &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const short &rhs) |
| Performs an greater than operation on two arrays or an array and a value.
|
|
AFAPI array | operator> (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator>= (const array &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const bool &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const int &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const unsigned &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const char &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const unsigned char &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const long &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const unsigned long &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const long long &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const unsigned long long &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const double &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const float &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const cfloat &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const cdouble &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const bool &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const int &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const unsigned &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const char &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const unsigned char &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const long &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const unsigned long &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const long long &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const unsigned long long &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const double &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const float &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const cfloat &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator>= (const short &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const unsigned short &lhs, const array &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const short &rhs) |
| Performs an greater or equal operation on two arrays or an array and a value.
|
|
AFAPI array | operator>= (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator|| (const array &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const bool &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const int &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const unsigned &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const char &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const unsigned char &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const long &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const unsigned long &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const long long &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const unsigned long long &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const double &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const float &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const cfloat &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const cdouble &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const bool &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const int &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const unsigned &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const char &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const unsigned char &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const long &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const unsigned long &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const long long &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const unsigned long long &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const double &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const float &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const cfloat &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator|| (const short &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const unsigned short &lhs, const array &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const short &rhs) |
| Performs an logical OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator|| (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator% (const array &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const bool &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const int &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const unsigned &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const char &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const unsigned char &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const long &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const unsigned long &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const long long &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const unsigned long long &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const double &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const float &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const cfloat &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const cdouble &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const bool &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const int &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const unsigned &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const char &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const unsigned char &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const long &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const unsigned long &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const long long &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const unsigned long long &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const double &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const float &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const cfloat &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator% (const short &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const unsigned short &lhs, const array &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const short &rhs) |
| Performs an modulo operation on two arrays or an array and a value.
|
|
AFAPI array | operator% (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator| (const array &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const bool &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const int &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const unsigned &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const char &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const unsigned char &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const long &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const unsigned long &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const long long &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const unsigned long long &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const double &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const float &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const cfloat &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const cdouble &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const bool &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const int &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const unsigned &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const char &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const unsigned char &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const long &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const unsigned long &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const long long &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const unsigned long long &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const double &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const float &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const cfloat &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator| (const short &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const unsigned short &lhs, const array &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const short &rhs) |
| Performs an bitwise OR operation on two arrays or an array and a value.
|
|
AFAPI array | operator| (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator^ (const array &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const bool &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const int &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const unsigned &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const char &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const unsigned char &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const long &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const unsigned long &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const long long &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const unsigned long long &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const double &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const float &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const cfloat &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const cdouble &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const bool &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const int &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const unsigned &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const char &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const unsigned char &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const long &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const unsigned long &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const long long &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const unsigned long long &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const double &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const float &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const cfloat &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator^ (const short &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const unsigned short &lhs, const array &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const short &rhs) |
| Performs an bitwise XOR operation on two arrays or an array and a value.
|
|
AFAPI array | operator^ (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator<< (const array &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const bool &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const int &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const unsigned &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const char &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const unsigned char &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const long &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const unsigned long &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const long long &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const unsigned long long &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const double &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const float &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const cfloat &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const cdouble &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const bool &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const int &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const unsigned &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const char &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const unsigned char &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const long &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const unsigned long &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const long long &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const unsigned long long &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const double &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const float &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const cfloat &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator<< (const short &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const unsigned short &lhs, const array &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const short &rhs) |
| Performs an left shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator<< (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator>> (const array &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const bool &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const int &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const unsigned &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const char &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const unsigned char &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const long &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const unsigned long &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const long long &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const unsigned long long &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const double &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const float &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const cfloat &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const cdouble &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const bool &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const int &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const unsigned &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const char &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const unsigned char &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const long &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const unsigned long &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const long long &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const unsigned long long &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const double &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const float &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const cfloat &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator>> (const short &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const unsigned short &lhs, const array &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const short &rhs) |
| Performs an right shift operation on two arrays or an array and a value.
|
|
AFAPI array | operator>> (const array &lhs, const unsigned short &rhs) |
|
|
AFAPI array | operator& (const array &lhs, const array &rhs) |
| Performs an bitwise AND operation on two arrays or an array and a value.
|
|
AFAPI array | operator& (const array &lhs, const bool &rhs) |
|
AFAPI array | operator& (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator& (const array &lhs, const cfloat &rhs) |
|
AFAPI array | operator& (const array &lhs, const char &rhs) |
|
AFAPI array | operator& (const array &lhs, const double &rhs) |
|
AFAPI array | operator& (const array &lhs, const float &rhs) |
|
AFAPI array | operator& (const array &lhs, const int &rhs) |
|
AFAPI array | operator& (const array &lhs, const long long &rhs) |
|
AFAPI array | operator& (const array &lhs, const long &rhs) |
|
AFAPI array | operator& (const array &lhs, const short &rhs) |
|
AFAPI array | operator& (const array &lhs, const unsigned char &rhs) |
|
AFAPI array | operator& (const array &lhs, const unsigned long long &rhs) |
|
AFAPI array | operator& (const array &lhs, const unsigned long &rhs) |
|
AFAPI array | operator& (const array &lhs, const unsigned short &rhs) |
|
AFAPI array | operator& (const array &lhs, const unsigned &rhs) |
|
AFAPI array | operator& (const bool &lhs, const array &rhs) |
|
AFAPI array | operator& (const cdouble &lhs, const array &rhs) |
|
AFAPI array | operator& (const cfloat &lhs, const array &rhs) |
|
AFAPI array | operator& (const char &lhs, const array &rhs) |
|
AFAPI array | operator& (const double &lhs, const array &rhs) |
|
AFAPI array | operator& (const float &lhs, const array &rhs) |
|
AFAPI array | operator& (const int &lhs, const array &rhs) |
|
AFAPI array | operator& (const long long &lhs, const array &rhs) |
|
AFAPI array | operator& (const long &lhs, const array &rhs) |
|
AFAPI array | operator& (const short &lhs, const array &rhs) |
|
AFAPI array | operator& (const unsigned char &lhs, const array &rhs) |
|
AFAPI array | operator& (const unsigned long long &lhs, const array &rhs) |
|
AFAPI array | operator& (const unsigned long &lhs, const array &rhs) |
|
AFAPI array | operator& (const unsigned short &lhs, const array &rhs) |
|
AFAPI array | operator& (const unsigned &lhs, const array &rhs) |
|
|
AFAPI array | operator&& (const array &lhs, const array &rhs) |
| Performs a logical AND operation on two arrays or an array and a value.
|
|
AFAPI array | operator&& (const array &lhs, const bool &rhs) |
|
AFAPI array | operator&& (const array &lhs, const cdouble &rhs) |
|
AFAPI array | operator&& (const array &lhs, const cfloat &rhs) |
|
AFAPI array | operator&& (const array &lhs, const char &rhs) |
|
AFAPI array | operator&& (const array &lhs, const double &rhs) |
|
AFAPI array | operator&& (const array &lhs, const float &rhs) |
|
AFAPI array | operator&& (const array &lhs, const int &rhs) |
|
AFAPI array | operator&& (const array &lhs, const long long &rhs) |
|
AFAPI array | operator&& (const array &lhs, const long &rhs) |
|
AFAPI array | operator&& (const array &lhs, const short &rhs) |
|
AFAPI array | operator&& (const array &lhs, const unsigned char &rhs) |
|
AFAPI array | operator&& (const array &lhs, const unsigned long long &rhs) |
|
AFAPI array | operator&& (const array &lhs, const unsigned long &rhs) |
|
AFAPI array | operator&& (const array &lhs, const unsigned short &rhs) |
|
AFAPI array | operator&& (const array &lhs, const unsigned &rhs) |
|
AFAPI array | operator&& (const bool &lhs, const array &rhs) |
|
AFAPI array | operator&& (const cdouble &lhs, const array &rhs) |
|
AFAPI array | operator&& (const cfloat &lhs, const array &rhs) |
|
AFAPI array | operator&& (const char &lhs, const array &rhs) |
|
AFAPI array | operator&& (const double &lhs, const array &rhs) |
|
AFAPI array | operator&& (const float &lhs, const array &rhs) |
|
AFAPI array | operator&& (const int &lhs, const array &rhs) |
|
AFAPI array | operator&& (const long long &lhs, const array &rhs) |
|
AFAPI array | operator&& (const long &lhs, const array &rhs) |
|
AFAPI array | operator&& (const short &lhs, const array &rhs) |
|
AFAPI array | operator&& (const unsigned char &lhs, const array &rhs) |
|
AFAPI array | operator&& (const unsigned long long &lhs, const array &rhs) |
|
AFAPI array | operator&& (const unsigned long &lhs, const array &rhs) |
|
AFAPI array | operator&& (const unsigned short &lhs, const array &rhs) |
|
AFAPI array | operator&& (const unsigned &lhs, const array &rhs) |
|
|
array & | eval (array &a) |
| Evaluate an expression (nonblocking).
|
|
AFAPI void | eval (int num, array **arrays) |
| Evaluate multiple arrays simultaneously.
|
|
void | eval (array &a, array &b) |
|
void | eval (array &a, array &b, array &c) |
|
void | eval (array &a, array &b, array &c, array &d) |
|
void | eval (array &a, array &b, array &c, array &d, array &e) |
|
void | eval (array &a, array &b, array &c, array &d, array &e, array &f) |
|
const array & | eval (const array &a) |
| Evaluate an expression (nonblocking).
|
|
void | eval (const array &a, const array &b) |
|
void | eval (const array &a, const array &b, const array &c) |
|
void | eval (const array &a, const array &b, const array &c, const array &d) |
|
void | eval (const array &a, const array &b, const array &c, const array &d, const array &e) |
|
void | eval (const array &a, const array &b, const array &c, const array &d, const array &e, const array &f) |
|
AFAPI void | setManualEvalFlag (bool flag) |
| Turn the manual eval flag on or off.
|
|
AFAPI bool | getManualEvalFlag () |
| Get the manual eval flag.
|
|
|
AFAPI void * | alloc (const size_t elements, const dtype type) |
| Allocates memory using ArrayFire's memory manager.
|
|
AFAPI void * | allocV2 (const size_t bytes) |
| Allocates memory using ArrayFire's memory manager.
|
|
template<typename T > |
T * | alloc (const size_t elements) |
| Allocates memory using ArrayFire's memory manager.
|
|
|
AFAPI void * | pinned (const size_t elements, const dtype type) |
|
template<typename T > |
T * | pinned (const size_t elements) |
| Allocate pinned memory using ArrayFire's memory manager.
|
|
|
AFAPI void | deviceMemInfo (size_t *alloc_bytes, size_t *alloc_buffers, size_t *lock_bytes, size_t *lock_buffers) |
| Gets information about the memory manager.
|
|
AFAPI void | printMemInfo (const char *msg=NULL, const int device_id=-1) |
| Prints buffer details from the ArrayFire Device Manager.
|
|
AFAPI void | deviceGC () |
| Call the garbage collection function in the memory manager.
|
|