Go to the source code of this file.
Data Structures | |
class | dim4 |
Generic object that represents size and shape. More... | |
Namespaces | |
namespace | af |
Functions | |
AFAPI dim4 | operator+ (const dim4 &first, const dim4 &second) |
Performs an element-wise addition of two dim4 objects. More... | |
AFAPI dim4 | operator- (const dim4 &first, const dim4 &second) |
Performs an element-wise subtraction of two dim4 objects. More... | |
AFAPI dim4 | operator* (const dim4 &first, const dim4 &second) |
Performs an element-wise multiplication of two dim4 objects. More... | |
static std::ostream & | operator<< (std::ostream &ostr, const dim4 &dims) |
Prints the elements of the dim4 array separated by spaces. More... | |
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. More... | |
AFAPI bool | isSpan (const af_seq &seq) |
Returns true if the af_seq object represents the entire range of an axis. More... | |
AFAPI size_t | seqElements (const af_seq &seq) |
Returns the number of elements that the af_seq object represents. More... | |
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. More... | |