11#include <af/compilers.h>
23#if AF_API_VERSION >= 38
24#if AF_COMPILER_CXX_GENERALIZED_INITIALIZERS
25#include <initializer_list>
58 struct array_proxy_impl;
59 array_proxy_impl *impl;
64#if AF_COMPILER_CXX_RVALUE_REFERENCES
75 array_proxy& operator OP(const array_proxy &a); \
76 array_proxy& operator OP(const array &a); \
77 array_proxy& operator OP(const double &a); \
78 array_proxy& operator OP(const cdouble &a); \
79 array_proxy& operator OP(const cfloat &a); \
80 array_proxy& operator OP(const float &a); \
81 array_proxy& operator OP(const int &a); \
82 array_proxy& operator OP(const unsigned &a); \
83 array_proxy& operator OP(const bool &a); \
84 array_proxy& operator OP(const char &a); \
85 array_proxy& operator OP(const unsigned char &a); \
86 array_proxy& operator OP(const long &a); \
87 array_proxy& operator OP(const unsigned long &a); \
88 array_proxy& operator OP(const long long &a); \
89 array_proxy& operator OP(const unsigned long long &a);
91#if AF_API_VERSION >= 32
92#define ASSIGN_32(OP) \
93 array_proxy& operator OP(const short &a); \
94 array_proxy& operator OP(const unsigned short &a);
99#if AF_API_VERSION >= 310
100#define ASSIGN_310(OP) \
101 array_proxy& operator OP(const signed char &a);
103#define ASSIGN_310(OP)
125 template<
typename T> T*
host()
const;
140 inline bool isreal()
const {
return !iscomplex(); }
143#if AF_API_VERSION >= 37
150#if AF_API_VERSION >= 34
160#if AF_API_VERSION >= 31
164#if AF_API_VERSION >= 34
195#if AF_API_VERSION >= 37
196#if AF_COMPILER_CXX_RVALUE_REFERENCES
540#if AF_API_VERSION >= 38
541#if AF_COMPILER_CXX_GENERALIZED_INITIALIZERS
543 template <
typename T,
typename =
typename std::enable_if<
544 std::is_fundamental<T>::value,
void>::type>
545 array(std::initializer_list<T> list)
547 dim_t size = list.size();
552 af::exception ex(msg, __PRETTY_FUNCTION__,
"include/af/array.h",
560 template <
typename T,
typename =
typename std::enable_if<
561 std::is_fundamental<T>::value,
void>::type>
562 array(
const af::dim4 &dims, std::initializer_list<T> list)
570 af::exception ex(msg, __PRETTY_FUNCTION__,
"include/af/array.h",
659 template<
typename T> T*
host()
const;
744 inline bool isreal()
const {
return !iscomplex(); }
756#if AF_API_VERSION >= 37
785#if AF_API_VERSION >= 34
864 const index &s2 = span,
865 const index &s3 = span);
874 const index &s2 = span,
875 const index &s3 = span)
const;
1002#define ASSIGN_(OP2) \
1003 array& OP2(const array &val); \
1004 array& OP2(const double &val); \
1005 array& OP2(const cdouble &val); \
1006 array& OP2(const cfloat &val); \
1007 array& OP2(const float &val); \
1008 array& OP2(const int &val); \
1009 array& OP2(const unsigned &val); \
1010 array& OP2(const bool &val); \
1011 array& OP2(const char &val); \
1012 array& OP2(const unsigned char &val); \
1013 array& OP2(const long &val); \
1014 array& OP2(const unsigned long &val); \
1015 array& OP2(const long long &val); \
1016 array& OP2(const unsigned long long &val);
1018#if AF_API_VERSION >= 32
1019#define ASSIGN_32(OP) \
1020 array& OP(const short &val); \
1021 array& OP(const unsigned short &val);
1023#define ASSIGN_32(OP)
1026#if AF_API_VERSION >= 310
1027#define ASSIGN_310(OP) \
1028 array& OP(const signed char &val);
1030#define ASSIGN_310(OP)
1110 array operator -()
const;
1117 array operator !()
const;
1119#if AF_API_VERSION >= 38
1125 array operator ~()
const;
1132 int nonzeros()
const;
1143#if AF_API_VERSION >= 34
1149 bool isLocked()
const;
1158 void unlock()
const;
1162#define BIN_OP_(OP) \
1163 AFAPI array OP (const array& lhs, const array& rhs); \
1164 AFAPI array OP (const bool& lhs, const array& rhs); \
1165 AFAPI array OP (const int& lhs, const array& rhs); \
1166 AFAPI array OP (const unsigned& lhs, const array& rhs); \
1167 AFAPI array OP (const char& lhs, const array& rhs); \
1168 AFAPI array OP (const unsigned char& lhs, const array& rhs); \
1169 AFAPI array OP (const long& lhs, const array& rhs); \
1170 AFAPI array OP (const unsigned long& lhs, const array& rhs); \
1171 AFAPI array OP (const long long& lhs, const array& rhs); \
1172 AFAPI array OP (const unsigned long long& lhs, const array& rhs); \
1173 AFAPI array OP (const double& lhs, const array& rhs); \
1174 AFAPI array OP (const float& lhs, const array& rhs); \
1175 AFAPI array OP (const cfloat& lhs, const array& rhs); \
1176 AFAPI array OP (const cdouble& lhs, const array& rhs); \
1177 AFAPI array OP (const array& lhs, const bool& rhs); \
1178 AFAPI array OP (const array& lhs, const int& rhs); \
1179 AFAPI array OP (const array& lhs, const unsigned& rhs); \
1180 AFAPI array OP (const array& lhs, const char& rhs); \
1181 AFAPI array OP (const array& lhs, const unsigned char& rhs); \
1182 AFAPI array OP (const array& lhs, const long& rhs); \
1183 AFAPI array OP (const array& lhs, const unsigned long& rhs); \
1184 AFAPI array OP (const array& lhs, const long long& rhs); \
1185 AFAPI array OP (const array& lhs, const unsigned long long& rhs); \
1186 AFAPI array OP (const array& lhs, const double& rhs); \
1187 AFAPI array OP (const array& lhs, const float& rhs); \
1188 AFAPI array OP (const array& lhs, const cfloat& rhs); \
1189 AFAPI array OP (const array& lhs, const cdouble& rhs);
1191#if AF_API_VERSION >= 32
1192#define BIN_OP_32(OP) \
1193 AFAPI array OP (const short& lhs, const array& rhs); \
1194 AFAPI array OP (const unsigned short& lhs, const array& rhs); \
1195 AFAPI array OP (const array& lhs, const short& rhs); \
1196 AFAPI array OP (const array& lhs, const unsigned short& rhs);
1199#define BIN_OP_32(OP)
1202#if AF_API_VERSION >= 310
1203#define BIN_OP_310(OP) \
1204 AFAPI array OP (const signed char& lhs, const array& rhs); \
1205 AFAPI array OP (const array& lhs, const signed char& rhs);
1207#define BIN_OP_310(OP)
1509#if AF_API_VERSION >= 34
1518#if AF_API_VERSION >= 34
1519 array *arrays[] = {&a, &b};
1520 return eval(2, arrays);
1526 inline void eval(array &a, array &b, array &c)
1528#if AF_API_VERSION >= 34
1529 array *arrays[] = {&a, &b, &c};
1530 return eval(3, arrays);
1532 eval(a, b); c.eval();
1536 inline void eval(array &a, array &b, array &c, array &d)
1538#if AF_API_VERSION >= 34
1539 array *arrays[] = {&a, &b, &c, &d};
1540 return eval(4, arrays);
1542 eval(a, b, c); d.eval();
1547 inline void eval(array &a, array &b, array &c, array &d, array &e)
1549#if AF_API_VERSION >= 34
1550 array *arrays[] = {&a, &b, &c, &d, &e};
1551 return eval(5, arrays);
1553 eval(a, b, c, d); e.eval();
1557 inline void eval(array &a, array &b, array &c, array &d, array &e, array &f)
1559#if AF_API_VERSION >= 34
1560 array *arrays[] = {&a, &b, &c, &d, &e, &f};
1561 return eval(6, arrays);
1563 eval(a, b, c, d, e); f.eval();
1567#if AF_API_VERSION >= 37
1570 inline const array &
eval(
const array &a) { a.
eval();
return a; }
1572#if AF_COMPILER_CXX_VARIADIC_TEMPLATES
1573 template <
typename... ARRAYS>
1574 inline void eval(ARRAYS... in) {
1575 array *arrays[] = {
const_cast<array *
>(&in)...};
1576 eval((
int)
sizeof...(in), arrays);
1581 inline void eval(
const array &a,
const array &b)
1584 return eval(2,
const_cast<array **
>(arrays));
1587 inline void eval(
const array &a,
const array &b,
const array &c)
1590 return eval(3,
const_cast<array **
>(arrays));
1593 inline void eval(
const array &a,
const array &b,
const array &c,
1596 const array *arrays[] = {&a, &b, &c, &d};
1597 return eval(4,
const_cast<array **
>(arrays));
1600 inline void eval(
const array &a,
const array &b,
const array &c,
1601 const array &d,
const array &e)
1603 const array *arrays[] = {&a, &b, &c, &d, &e};
1604 return eval(5,
const_cast<array **
>(arrays));
1607 inline void eval(
const array &a,
const array &b,
const array &c,
1608 const array &d,
const array &e,
const array &f)
1610 const array *arrays[] = {&a, &b, &c, &d, &e, &f};
1611 return eval(6,
const_cast<array **
>(arrays));
1616#if AF_API_VERSION >= 34
1623#if AF_API_VERSION >= 34
1703#if AF_API_VERSION >= 31
1715#if AF_API_VERSION >= 34
1722#if AF_API_VERSION >= 34
1729#if AF_API_VERSION >= 34
1874#if AF_API_VERSION >= 37
1929#if AF_API_VERSION >= 34
1941#if AF_API_VERSION >= 35
array::array_proxy slices(int first, int last)
bool isrealfloating() const
array as(dtype type) const
const array::array_proxy slice(int index) const
void host(void *ptr) const
array::array_proxy slice(int index)
array_proxy(const array_proxy &other)
dim_t dims(unsigned dim) const
array_proxy(array &par, af_index_t *ssss, bool linear=false)
const array::array_proxy rows(int first, int last) const
const array::array_proxy row(int index) const
const array::array_proxy cols(int first, int last) const
array::array_proxy row(int index)
array::array_proxy cols(int first, int last)
array::array_proxy rows(int first, int last)
const array::array_proxy slices(int first, int last) const
array::array_proxy col(int index)
const array::array_proxy col(int index) const
A multi dimensional data container.
bool isempty() const
Returns true of the array is empty.
T scalar() const
Get the first element of the array as a scalar.
dim4 dims() const
Get dimensions of the array.
array(const dim4 &dims, const T *pointer, af::source src=afHost)
Create an array of specified size on the device using a host/device pointer.
dtype type() const
Get array data type.
array(dim_t dim0, dim_t dim1, dtype ty=f32)
Allocate a two-dimensional array of a specified size with undefined contents.
array H() const
Get the conjugate-transpose of the current array.
bool isvector() const
Returns true if only one of the array dimensions has more than one element.
bool isrealfloating() const
Returns true if the array type is f16 f32 or f64.
bool iscomplex() const
Returns true if the array type is c32 or c64.
size_t bytes() const
Get the size of the array in bytes.
bool ishalf() const
Returns true if the array type is f16.
bool isscalar() const
Returns true of the array contains only one value.
T * host() const
Copy array data to host and return host pointer.
void set(af_array tmp)
Updates the internal af_array object.
array(const array &input, const dim_t dim0, const dim_t dim1=1, const dim_t dim2=1, const dim_t dim3=1)
Adjust the dimensions of an N-D array (fast).
bool isinteger() const
Returns true if the array type is s8, u8, b8, s32, u32, s64, u64, s16, u16.
bool issparse() const
Returns true if the array is a sparse array.
array(const dim4 &dims, dtype ty=f32)
Allocate an array of a specified size with undefined contents.
const array as(dtype type) const
Casts the array into another data type.
void host(void *ptr) const
Copy array data to existing host pointer.
T * device() const
Get the device pointer from the array and lock the buffer in memory manager.
array(dim_t dim0, dim_t dim1, dim_t dim2, dtype ty=f32)
Allocate a three-dimensional (3D) array of a specified size with undefined contents.
void eval() const
Evaluate any JIT expressions to generate data for the array.
array(dim_t dim0, dim_t dim1, dim_t dim2, dim_t dim3, dtype ty=f32)
Allocate a four-dimensional (4D) array of a specified size with undefined contents.
array(dim_t dim0, dtype ty=f32)
Allocate a one-dimensional array of a specified size with undefined contents.
bool isbool() const
Returns true if the array type is b8.
array T() const
Get the transposed the array.
bool issingle() const
Returns true if the array type is either f32 nor c32.
dim_t dims(unsigned dim) const
Get dimensions of the array.
dim_t elements() const
Get the total number of elements across all dimensions of the array.
size_t allocated() const
Get the size of the array in memory.
array(dim_t dim0, const T *pointer, af::source src=afHost)
Create a column vector on the device using a host/device pointer.
bool isrow() const
Returns true if only the second dimension has more than one element.
array()
Create an uninitialized array (no data, undefined size)
array(dim_t dim0, dim_t dim1, const T *pointer, af::source src=afHost)
Create a 2D array on the device using a host/device pointer.
void write(const T *ptr, const size_t bytes, af::source src=afHost)
Perform deep copy from host/device pointer to an existing array.
array copy() const
Perform deep copy of the array.
array(dim_t dim0, dim_t dim1, dim_t dim2, dim_t dim3, const T *pointer, af::source src=afHost)
Create a 4D array on the device using a host/device pointer.
af_array get()
get the af_array handle
bool isfloating() const
Returns true if the array type is f16 f32, f64, c32 or c64.
array(const array &input, const dim4 &dims)
Adjust the dimensions of an N-D array (fast).
array(dim_t dim0, dim_t dim1, dim_t dim2, const T *pointer, af::source src=afHost)
Create a 3D array on the device using a host/device pointer.
array(const array &in)
Creates a copy to the in array.
array(const af_array handle)
Creates an array from an af_array handle.
bool isdouble() const
Returns true if the array type is f64 or c64.
af_array get() const
get the af_array handle
bool isreal() const
Returns true if the array type is neither c32 nor c64.
unsigned numdims() const
Get the number of dimensions of the array.
bool iscolumn() const
Returns true if only the first dimension has more than one element.
Generic object that represents size and shape.
dim_t * get()
Returns the underlying pointer to the dim4 object.
An ArrayFire exception class.
@ f32
32-bit floating point values
AFAPI void af_get_last_error(char **msg, dim_t *len)
Returns the last error message that occurred and its error message.
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 array &rhs)
Performs an bitwise AND operation on two arrays or an array and a value.
const array::array_proxy cols(int first, int last) const
Returns a reference to sequence of columns.
array::array_proxy cols(int first, int last)
Returns a reference to sequence of columns.
array::array_proxy col(int index)
Returns a reference to a col.
const array::array_proxy col(int index) const
Returns a reference to a col.
array::array_proxy operator()(const index &s0)
This operator returns a reference of the original array at a given coordinate.
const array::array_proxy operator()(const index &s0, const index &s1, const index &s2=span, const index &s3=span) const
This operator returns a reference of the original array at a given coordinate.
const array::array_proxy operator()(const index &s0) const
This operator returns a reference of the original array at a given coordinate.
array::array_proxy operator()(const index &s0, const index &s1, const index &s2=span, const index &s3=span)
This operator returns a reference of the original array at a given coordinate.
const array::array_proxy rows(int first, int last) const
Returns a reference to sequence of rows.
const array::array_proxy row(int index) const
Returns a reference to a row.
array::array_proxy row(int index)
Returns a reference to a row.
array::array_proxy rows(int first, int last)
Returns a reference to sequence of rows.
array::array_proxy slices(int first, int last)
Returns a reference to a matrix in a volume.
const array::array_proxy slice(int index) const
Returns a reference to a matrix in a volume.
array::array_proxy slice(int index)
Returns a reference to a matrix in a volume.
const array::array_proxy slices(int first, int last) const
Returns a reference to a matrix in a volume.
AFAPI af_err af_is_vector(bool *result, const af_array arr)
Check if an array is a vector.
AFAPI af_err af_get_type(af_dtype *type, const af_array arr)
Gets the type of an array.
AFAPI af_err af_copy_array(af_array *arr, const af_array in)
Deep copy an array to another.
AFAPI af_err af_is_column(bool *result, const af_array arr)
Check if an array is a column vector.
AFAPI af_err af_is_empty(bool *result, const af_array arr)
Check if an array is empty.
AFAPI af_err af_is_single(bool *result, const af_array arr)
Check if an array is single precision type.
AFAPI af_err af_is_half(bool *result, const af_array arr)
Check if an array is 16 bit floating point type.
AFAPI af_err af_get_data_ref_count(int *use_count, const af_array in)
Get the reference count of af_array.
AFAPI af_err af_create_handle(af_array *arr, const unsigned ndims, const dim_t *const dims, const af_dtype type)
Create af_array handle.
AFAPI af_err af_is_floating(bool *result, const af_array arr)
Check if an array is floating precision type.
AFAPI af_err af_get_data_ptr(void *data, const af_array arr)
Copy data from an af_array to a C pointer.
AFAPI af_err af_get_elements(dim_t *elems, const af_array arr)
Get the total number of elements across all dimensions of the array.
AFAPI af_err af_is_realfloating(bool *result, const af_array arr)
Check if an array is real floating point type.
AFAPI af_err af_is_integer(bool *result, const af_array arr)
Check if an array is integer type.
AFAPI af_err af_retain_array(af_array *out, const af_array in)
Increments an af_array reference count.
AFAPI af_err af_create_array(af_array *arr, const void *const data, const unsigned ndims, const dim_t *const dims, const af_dtype type)
Create an af_array handle initialized with user defined data.
AFAPI af_err af_set_manual_eval_flag(bool flag)
Turn the manual eval flag on or off.
AFAPI af_err af_get_manual_eval_flag(bool *flag)
Get the manual eval flag.
AFAPI af_err af_get_dims(dim_t *d0, dim_t *d1, dim_t *d2, dim_t *d3, const af_array arr)
Gets the dimensions of an array.
AFAPI af_err af_eval(af_array in)
Evaluate any expressions in the Array.
AFAPI af_err af_eval_multiple(const int num, af_array *arrays)
Evaluate multiple arrays together.
AFAPI af_err af_is_row(bool *result, const af_array arr)
Check if an array is row vector.
AFAPI af_err af_is_sparse(bool *result, const af_array arr)
Check if an array is sparse.
AFAPI af_err af_is_complex(bool *result, const af_array arr)
Check if an array is complex type.
AFAPI af_err af_release_array(af_array arr)
Reduce the reference count of the af_array.
AFAPI af_err af_is_double(bool *result, const af_array arr)
Check if an array is double precision type.
AFAPI af_err af_is_scalar(bool *result, const af_array arr)
Check if an array is scalar, ie.
AFAPI af_err af_get_numdims(unsigned *result, const af_array arr)
Gets the number of dimensions of an array.
AFAPI af_err af_get_scalar(void *output_value, const af_array arr)
Get first element from an array.
AFAPI af_err af_is_real(bool *result, const af_array arr)
Check if an array is real type.
AFAPI af_err af_is_bool(bool *result, const af_array arr)
Check if an array is bool type.
AFAPI af_err af_write_array(af_array arr, const void *data, const size_t bytes, af_source src)
Copy data from a C pointer (host/device) to an existing array.
AFAPI bool getManualEvalFlag()
Get the manual eval flag.
AFAPI void setManualEvalFlag(bool flag)
Turn the manual eval flag on or off.
array & eval(array &a)
Evaluate an expression (nonblocking).
AFAPI af_err af_free_host(void *ptr)
Struct used to index an af_array.