|
| bool | isConstant (Element e) |
| bool | isSingleValue (Element e) |
| | The function returns true when the input is a single valued object e.g. aclConstatnt, aclVariable.
|
| bool | isMemBlock (Element e) |
| template<typename T> |
| void | copy (MemBlock &source, T *destination) |
| template<typename T> |
| void | copy (T *source, MemBlock &destination) |
| template<typename T> |
| void | copy (MemBlock &source, std::vector< T > &destination) |
| template<typename T> |
| void | copy (std::vector< T > &source, MemBlock &destination) |
| template<typename T> |
| void | copy (MemBlock &source, MemBlock &destination) |
| template<typename T> |
| void | copy (Element source, std::vector< T > &destination) |
| template<typename T> |
| void | copy (std::vector< T > &source, Element destination) |
| template<typename T> |
| void | copy (Element source, T *destination) |
| template<typename T> |
| void | copy (T *source, Element destination) |
| void | initData (Element a, Element initializationValue, const KernelConfiguration &kernelConfig=KERNEL_BASIC) |
| Element | generateSubElement (Element, unsigned int size, int offset) |
| | function creates subElement with given length and offset; offset is constant
|
| Element | generateSubElement (Element, unsigned int size, int *offset) |
| | function creates subElement with given length and offset; offset can be a variable
|
| Element | generateSubElement (Element, unsigned int size, Element offset) |
| Element | generateShiftedElement (Element, int offset) |
| Element | generateShiftedElement (Element, int *offset) |
| Element | generateShiftedElement (Element, Element offset) |
| template<typename T> |
| void | swapBuffers (std::shared_ptr< Array< T > >a, std::shared_ptr< Array< T > > b) |
| ElementData | generateElementArray (TypeID typeID, unsigned int size) |
| ElementData | generateElementArray (TypeID typeID, unsigned int size, CommandQueue queue_) |
| Element | generateElementLocalArray (TypeID typeID, unsigned int size) |
| template<typename T> |
| VectorOfElements | generateVEConstant (T a) |
| | Generates VectorOfElements with 1 Element acl::Constant with value a.
|
| template<typename T> |
| VectorOfElements | generateVEConstant (T a, T b) |
| | Generates VectorOfElements with 2 Elements acl::Constant with values a and b.
|
| template<typename T> |
| VectorOfElements | generateVEConstant (T a, T b, T c) |
| | Generates VectorOfElements with 3 Elements acl::Constant with values a,b and c.
|
| template<typename T> |
| VectorOfElements | generateVEConstantN (unsigned int n, T a) |
| | Generates VectorOfElements with n Elements acl::Constant with values a.
|
| template<typename T> |
| VectorOfElements | generateVEConstant (unsigned int n, const T *const a) |
| | Generates VectorOfElements with n Elements acl::Constant with values a[i].
|
| template<typename T> |
| VectorOfElements | generateVEConstant (const std::vector< T > &a) |
| | Generates VectorOfElements with a.size() Elements acl::Constant with values a[i].
|
| template<typename T> |
| VectorOfElements | generateVEConstant (const asl::AVec< T > &a) |
| | Generates VectorOfElements correspondinng to a.
|
| template<typename T> |
| MatrixOfElements | generateMEConstant (const asl::AMatr< T > &a) |
| | Generates VectorOfElements correspondinng to a.
|
| template<typename T> |
| VectorOfElementsData | generateVEData (unsigned int length, unsigned int nComponents, CommandQueue queue) |
| | Generates VectorOfElements with nComponents Elements acl::Vector with size length.
|
| template<typename T> |
| VectorOfElementsData | generateVEData (unsigned int length, unsigned int nComponents=1) |
| | Generates VectorOfElements with nComponents Elements acl::Vector with size length and default queue.
|
| VectorOfElementsData | generateVEData (unsigned int length, TypeID typeID, unsigned int nComponents, CommandQueue queue) |
| | Generates VectorOfElementsData with nComponents Elements acl::Array of type with size length.
|
| VectorOfElementsData | generateVEData (unsigned int length, TypeID typeID, unsigned int nComponents=1) |
| | Generates VectorOfElementsData with nComponents Elements acl::Array of type with size length and default queue.
|
| VectorOfElements | generateVELocalArray (unsigned int componentSize, TypeID typeID, unsigned int size) |
| | Generates VectorOfElements with size Elements acl::LocalArray of type typeID with size componentSize.
|
| template<typename T> |
| VectorOfElements | generateVEPrivateArray (const vector< T > &data) |
| | Generates VectorOfElements with size Elements acl::PrivateArray of type with data defined by data.
|
| template<typename T> |
| VectorOfElements | generateVEPrivateArray (const vector< asl::AVec< T > > &data) |
| | Generates VectorOfElements with size Elements acl::PrivateArray of type with data defined by data.
|
| template<typename T> |
| VectorOfElements | generateVEPrivateArray (const vector< T > &data, TypeID typeID) |
| | Generates VectorOfElements with size Elements acl::PrivateArray of type with size componentSize.
|
| template<typename T> |
| VectorOfElements | generateVEPrivateArray (const vector< asl::AVec< T > > &data, TypeID typeID) |
| | Generates VectorOfElements with size Elements acl::PrivateArray of type with size componentSize.
|
| template<typename T> |
| VectorOfElements | generateVEDataSub (T, unsigned int sublength, unsigned int length, unsigned int nComponents, CommandQueue queue) |
| | Generates VectorOfElements with nComponents Elements acl::Subvector with size sublength. length is the vector size.
|
| template<typename T> |
| VectorOfElements | generateVEVariableR (T &a) |
| | Generates VectorOfElements with 1 Element acl::VariableReference with reference on a.
|
| template<typename T> |
| VectorOfElements | generateVEVariableR (T &a, T &b) |
| | Generates VectorOfElements with 2 Element acl::VariableReference with references on a and b.
|
| template<typename T> |
| VectorOfElements | generateVEVariableR (T &a, T &b, T &c) |
| | Generates VectorOfElements with 3 Element acl::VariableReference with references on a, b and c.
|
| template<typename T> |
| VectorOfElements | generateVEVariableR (asl::AVec< T > &a) |
| | Generates VectorOfElements with nD(a) Element acl::VariableReference with reference on a[i].
|
| template<typename T> |
| VectorOfElements | generateVEVariableSP (std::shared_ptr< T > a) |
| | Generates VectorOfElements with 1 Element acl::VariableReference with reference on a.
|
| template<typename T> |
| VectorOfElements | generateVEVariableSP (std::shared_ptr< T > a, std::shared_ptr< T > b) |
| | Generates VectorOfElements with 2 Element acl::VariableReference with references on a and b.
|
| template<typename T> |
| VectorOfElements | generateVEVariableSP (std::shared_ptr< T > a, std::shared_ptr< T > b, std::shared_ptr< T > c) |
| | Generates VectorOfElements with 3 Element acl::VariableReference with references on a, b and c.
|
| template<typename T> |
| VectorOfElements | generateVEVariableSP (std::shared_ptr< asl::AVec< T > > a) |
| | Generates VectorOfElements with nD(a) Element acl::VariableReference with reference on a[i].
|
| template<typename T> |
| VectorOfElements | generateVEPrivateVariable (unsigned int n) |
| | Generates VectorOfElements with n Element of acl::PrivateVariable.
|
| VectorOfElements | generateVEPrivateVariable (unsigned int n, TypeID t) |
| | Generates VectorOfElements with n Element of acl::PrivateVariable with type t.
|
| MatrixOfElements | generateMEPrivateVariable (unsigned int nR, unsigned int nC, TypeID t) |
| | Generates VectorOfElements with n Element of acl::PrivateVariable with type t.
|
| VectorOfElements | generateVESubElements (VectorOfElements a, unsigned int length, int offset) |
| | Generates VectorOfElements which contains SubElements of the corresponding element of a.
|
| VectorOfElements | generateVESubElements (VectorOfElements a, unsigned int length, VectorOfElements offset) |
| | Generates VectorOfElements which contains SubElements of the corresponding element of a.
|
| VectorOfElements | generateVEShftedElements (VectorOfElements a, int offset) |
| | Generates VectorOfElements which contains SubElements of the corresponding element of a.
|
| VectorOfElements | generateVEShftedElements (VectorOfElements a, const std::vector< int > &offset) |
| | Generates VectorOfElements which contains SubElements of the corresponding element of a.
|
| VectorOfElements | generateVEShiftedElements (VectorOfElements a, VectorOfElements offset) |
| | Generates VectorOfElements which contains SubElements of the corresponding element of a.
|
| VectorOfElements | generateVEPolynom (VectorOfElements x, VectorOfElements coefs) |
| VectorOfElements | generateParsedVE (const VectorOfElements &fields, const vector< string > &names, const string &statement) |
| template<typename T = int> |
| MatrixOfElements | generateMEUnit (unsigned int n) |
| MatrixOfElements | generateMEDiagonal (const VectorOfElements &d) |
| MatrixOfElements | generateMEGivensRotation (unsigned int k, unsigned int l, const VectorOfElements &sc) |
| template<typename T> |
| VectorOfElements | indexDependedConstant (vector< unsigned int > r, vector< T > values) |
| VectorOfElements | generateVEIndex (unsigned int size=0) |
| VectorOfElements | generateVEGroupID () |
| VectorOfElements | generateVEIndexExt (unsigned int size=0) |
| std::string | getPlatformVendor (const CommandQueue &queue) |
| std::string | getDeviceName (const CommandQueue &queue) |
| std::string | getDeviceVersion (const CommandQueue &queue) |
| std::string | getDriverVersion (const CommandQueue &queue) |
| cl_device_type | getDeviceType (const CommandQueue &queue) |
| cl_uint | getNComputeUnits (const CommandQueue &queue) |
| cl::Device | getDevice (const CommandQueue &queue) |
| cl::Context | getContext (const CommandQueue &queue) |
| unsigned int | getAlignment (const CommandQueue &queue) |
| cl_device_local_mem_type | getLocalMemoryType (const CommandQueue &queue) |
| cl_ulong | getLocalMemorySize (const CommandQueue &queue) |
| size_t | getMaxItemSize (const CommandQueue &queue) |
| cl_uint | getVectorWidth (const CommandQueue &queue, const TypeID typeID) |
| bool | extensionAvailable (const CommandQueue &queue, const Extension extension) |
| cl_device_fp_config | doublePrecisionSupport (const CommandQueue &queue) |
| cl_ulong | getKernelLocalMemSize (const Kernel &kernel) |
| cl_ulong | getKernelPrivateMemSize (const Kernel &kernel) |
| void | findNearestDirectionCode (const vector< asl::AVec<> > &directions, VectorOfElements v, VectorOfElements iDir, ExpressionContainer &k) |
| | generates code for finding nearest direction from given directions set directions
|
| void | findNearestDirectionCode (const vector< asl::AVec<> > &directions, VectorOfElements v, VectorOfElements iDir, VectorOfElements scalProduct, ExpressionContainer &k) |
| | generates code for finding nearest direction from given directions set directions
|
| VectorOfElements | differentSign (VectorOfElements v) |
| | generate expresion returning true if elements of v have different signs or one of them zerow
|
| VectorOfElements | generateVEOutOfBoundarySafe (const VectorOfElements &a) |
| | generates Vector of elements wraping the a in order to avoid out of boundary acces
|
| VectorOfElements | generateVEOutOfBoundarySafe (const VectorOfElements &a, const VectorOfElements &outVal) |
| | generates Vector of elements wraping the a in order to avoid out of boundary acces with given out of boundary value
|
| VectorOfElements | solveSystem (const MatrixOfElements &a, const VectorOfElements &b) |
| | returns solution of a system of linear equations
|
| vector< Element > | gcSolveSystem (const MatrixOfElements &a, const VectorOfElements &b, const VectorOfElements &x) |
| | generates code for solving the solution of a system of linear equations
|
| vector< Element > | gcSolveSystemCG (const MatrixOfElements &a, const VectorOfElements &b, const VectorOfElements &x) |
| | generates code for solving the solution of a system of linear equations
|
| QuaternionOfElements | normalize (QuaternionOfElements &a) |
| template<typename ResType> |
| std::shared_ptr< ReductionAlgGenerator< ResType, ROT_SUM > > | generateSumAlg (VectorOfElements v) |
| template<typename ResType> |
| std::shared_ptr< ReductionAlgGenerator< ResType, ROT_MINIMUM > > | generateMinAlg (VectorOfElements v) |
| template<typename ResType> |
| std::shared_ptr< ReductionAlgGenerator< ResType, ROT_MAXIMUM > > | generateMaxAlg (VectorOfElements v) |
| template<typename ResType> |
| std::shared_ptr< ReductionAlgGenerator< ResType, ROT_PRODUCT > > | generateProductAlg (VectorOfElements v) |
| bool | compatibleSizes (unsigned int s, const VectorOfElements &a) |
| vector< Element > | gcNormalize (const VectorOfElements &a) |
| | generates code corresponding \( \vec a /= |\vec a|\)
|
| vector< Element > | gcLength2 (const VectorOfElements &a, const VectorOfElements &l2) |
| | generates code corresponding \( |\vec a|^2 \). Result will be stored in l2
|
| vector< Element > | gcLength (const VectorOfElements &a, const VectorOfElements &l) |
| | generates code corresponding \( |\vec a| \). Result will be stored in l
|
| VectorOfElements | l2 (const VectorOfElements &a) |
| bool | compatible (unsigned int size1, CommandQueue queue1, unsigned int size2, CommandQueue queue2) |
| bool | compatible (unsigned int size, CommandQueue queue, Element e) |
| bool | compatible (Element e1, Element e2) |
| bool | compatibleSizes (unsigned int s1, unsigned int s2) |
| | if s and size of e are the same or at least one of them is 0
|
| bool | compatibleSizes (Element e1, Element e2) |
| | if both elements have the same size or size of at least one of them is 0
|
| bool | compatibleSizes (unsigned int s, Element e) |
| | if s and size of e are the same or at least one of them is 0
|
| unsigned int | paddingBytes (unsigned int size, unsigned int typeSize, CommandQueue queue) |
| | Adds padding in bytes based on the device's alignment.
|
| unsigned int | paddingElements (unsigned int size, const KernelConfiguration &kernelConfig) |
| | Adds padding in elements based on vector width.
|
| bool | onSameDevice (CommandQueue queue1, CommandQueue queue2) |
| | checks whether both elements reside on the same device
|
| bool | onSameDevice (CommandQueue queue, Element e) |
| bool | onSameDevice (Element e1, Element e2) |
| bool | isDeclarable (Element e) |
| bool | isArgument (Element e) |
| void | addElementToKernelSource (Element e, std::vector< Element > &arguments, std::vector< Element > &localDeclarations) |
| | adds e either to arguments or to localDeclarations
|
| template<typename T> |
| const std::string & | typeToStr () |
| template<typename T> |
| const std::string | typeToStr (unsigned int i) |
| template<typename T> |
| constexpr const TypeID | typeToTypeID () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_double > () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_float > () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_int > () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_uint > () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_long > () |
| void | swapBuffers (MemBlock &a, MemBlock &b) |
| template<typename T> |
| std::shared_ptr< T > | map (ElementData m) |
| void | createKernels (std::vector< SPKernel > &vk, unsigned int n, const KernelConfiguration &kernelConfig_) |
| void | copy (const vector< Element > &source, VectorOfElements &destination) |
| void | copy (const VectorOfElementsData &source, VectorOfElementsData &destination) |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_double > () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_float > () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_int > () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_uint > () |
| template<> |
| constexpr const TypeID | typeToTypeID< cl_long > () |
| ExpressionContainer & | operator<< (ExpressionContainer &ec, const std::vector< Element > &a) |
| | puts a vector<Element> in ExpressionContainer
|
| std::vector< Element > & | operator<< (std::vector< Element > &ec, const std::vector< Element > &a) |
| | puts a vector<Element> in ExpressionContainer
|
| ExpressionContainer & | operator<< (ExpressionContainer &ec, const MatrixOfElements &a) |
| | puts a MatrixOfElements in ExpressionContainer
|
| ExpressionContainer & | operator<< (ExpressionContainer &ec, const ExpressionContainer &a) |
| | puts a ExpressionContainer in ExpressionContainer
|
| void | copy (const ComplexNumOfElements &source, ComplexNumOfElements &destination) |
| | function copies the ComplexNumOfElements class.
|
| ComplexNumOfElements | operator+ (ComplexNumOfElements &a, ComplexNumOfElements &b) |
| | summ of two matrices
|
| ComplexNumOfElements | operator- (ComplexNumOfElements &a, ComplexNumOfElements &b) |
| | difference of two matrices
|
| ComplexNumOfElements | operator* (const ComplexNumOfElements &a, const ComplexNumOfElements &b) |
| | product of two matrices
|
| void | copy (const MatrixOfElements &source, MatrixOfElements &destination) |
| | function copies the MatrixOfElements class.
|
| MatrixOfElements | operator+ (const MatrixOfElements &a, const MatrixOfElements &b) |
| | summ of two matrices
|
| MatrixOfElements | operator- (const MatrixOfElements &a, const MatrixOfElements &b) |
| | difference of two matrices
|
| MatrixOfElements | operator* (const MatrixOfElements &a, const MatrixOfElements &b) |
| | product of two matrices
|
| VectorOfElements | operator* (const VectorOfElements &a, const MatrixOfElements &b) |
| | product of vector and matrix
|
| VectorOfElements | operator* (const MatrixOfElements &a, const VectorOfElements &b) |
| | product of vector and matrix
|
| MatrixOfElements | operator/ (const MatrixOfElements &a, const VectorOfElements &b) |
| | division of a matrix on a VectorOfElements with 1 element
|
| MatrixOfElements | transpose (MatrixOfElements &source) |
| | transposed matrix
|
| MatrixOfElements | elementProduct (const VectorOfElements &a, const VectorOfElements &b) |
| | element product of two vectors
|
| VectorOfElements | trace (const MatrixOfElements &a) |
| | Trace of a matrix \(Tr(A)\equiv A_{ii}\).
|
| VectorOfElements | trace (const MatrixOfElements &a, const MatrixOfElements &b) |
| | Trace of a matrix product \(Tr(A B)\equiv A_{ij}B_{ji}\).
|
| MatrixOfElements | generateME (const VectorOfElements &a) |
| | generates a matrix with a row
|
| MatrixOfElements | generateME (const VectorOfElements &a, VectorOfElements &b) |
| | generates a matrix with two rows
|
| MatrixOfElements | generateME (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c) |
| | generates a matrix with three rows
|
| MatrixOfElements | generateME (const VectorOfElements *a, unsigned int n) |
| | generates a matrix with n rows \( generateME(\{u_i\}_j) = A_{ji}\)
|
| MatrixOfElements | generateME (const vector< VectorOfElements > &a) |
| | generates a matrix with n rows \( generateME(\{u_i\}_j) = A_{ji}\)
|
| VectorOfElements | getDiagonal (const MatrixOfElements &a) |
| | returns VectorOfElements containing the diagonal elements
|
| VectorOfElements | getOffDiagonalUp (const MatrixOfElements &a) |
| | returns VectorOfElements containing the uper off diagonal elements
|
| VectorOfElements | det (const MatrixOfElements &m) |
| | computes determinant expression fo cases 2x2 and 3x3 only
|
| MatrixOfElements | replaceRow (const MatrixOfElements &a, const VectorOfElements &b, unsigned int r) |
| | generate matrix with content of the matrix a but with replaced row r by vector b
|
| MatrixOfElements | replaceColumn (const MatrixOfElements &a, const VectorOfElements &b, unsigned int c) |
| | generate matrix with content of the matrix a but with replaced column c by vector b
|
| MatrixOfElements | generateMatrixCofactors (const MatrixOfElements &a) |
| | returns the matrix of cofactors for cases 2x2 and 3x3
|
| vector< Element > | gcMatrixInversion (const MatrixOfElements &a, MatrixOfElements &inv) |
| | returns vector of elements for computing the inverse matrix for cases 2x2 and 3x3
|
| void | copy (const QuaternionOfElements &source, QuaternionOfElements &destination) |
| | function copies the QuaternionOfElements class.
|
| QuaternionOfElements | operator+ (QuaternionOfElements &a, QuaternionOfElements &b) |
| | summ of two matrices
|
| QuaternionOfElements | operator- (QuaternionOfElements &a, QuaternionOfElements &b) |
| | difference of two matrices
|
| QuaternionOfElements | operator* (const QuaternionOfElements &a, const QuaternionOfElements &b) |
| | product of two matrices
|
| VectorOfElements | l2 (QuaternionOfElements &a) |
| | L2 norm of a quaternion.
|
| acl::TypeID | getElementType (const VectorOfElements &a, unsigned int i=0) |
| unsigned int | getElementsSize (const VectorOfElements &a) |
| VectorOfElementsData | clone (VectorOfElementsData a) |
| VectorOfElementsData | clone (VectorOfElementsData a, unsigned int n) |
| void | initData (VectorOfElements a, VectorOfElements initializationValue, const KernelConfiguration &kernelConfig) |
| void | initData (VectorOfElements a, VectorOfElements initializationValue) |
| void | copy (const vector< Element > &source, VectorOfElements &destination) |
| | Copies the VectorOfElements class.
|
| void | copy (const vector< ElementData > &source, VectorOfElements &destination) |
| | Copies the VectorOfElements class.
|
| void | copy (const vector< Element > &source, VectorOfElements &destination, unsigned int start, unsigned int end) |
| | Copies the VectorOfElements class.
|
| void | copy (const VectorOfElementsData &source, VectorOfElementsData &destination) |
| | Copies the VectorOfElementsData class.
|
| VectorOfElements | subVE (const VectorOfElements &source, unsigned int start, unsigned int end) |
| VectorOfElements | subVE (const VectorOfElements &source, unsigned int i) |
| VectorOfElements | subVE (const VectorOfElements &source, const vector< unsigned int > &iList) |
| VectorOfElementsData | subVE (const VectorOfElementsData &source, unsigned int start, unsigned int end) |
| void | swapBuffers (const VectorOfElementsData &a, const VectorOfElementsData &b) |
| VectorOfElements | assignmentSafe (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator- (const VectorOfElements &a) |
| VectorOfElements | operator+= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator-= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator*= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator/= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator+ (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator- (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator* (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator/ (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator% (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator== (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator!= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator> (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator< (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator<= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator>= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator&& (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator|| (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator! (const VectorOfElements &a) |
| VectorOfElements | crossProduct (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | l2 (const VectorOfElements &a) |
| VectorOfElements | productOfElements (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | productOfElements (const VectorOfElements &a) |
| VectorOfElements | divisionOfElements (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | min (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | min (const VectorOfElements &a, const VectorOfElements &b, TypeID type) |
| VectorOfElements | minAbs (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | max (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | max (const VectorOfElements &a, const VectorOfElements &b, TypeID type) |
| VectorOfElements | copysign (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | copysign (const VectorOfElements &a, const VectorOfElements &b, TypeID t) |
| VectorOfElements | sign (const VectorOfElements &a) |
| VectorOfElements | excerpt (const VectorOfElements &source, const VectorOfElements &filter) |
| VectorOfElements | select (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c) |
| VectorOfElements | select (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c, TypeID t) |
| VectorOfElements | select (const VectorOfElements &b, const VectorOfElements &c, TypeID t) |
| VectorOfElements | mad (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c) |
| VectorOfElements | mad (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c, TypeID t) |
| VectorOfElements | log (const VectorOfElements &a) |
| VectorOfElements | log10 (const VectorOfElements &a) |
| VectorOfElements | powI (const VectorOfElements &a, unsigned int i) |
| VectorOfElements | exp (const VectorOfElements &a) |
| VectorOfElements | sqrt (const VectorOfElements &a) |
| VectorOfElements | rsqrt (const VectorOfElements &a) |
| VectorOfElements | fabs (const VectorOfElements &a) |
| VectorOfElements | abs (const VectorOfElements &a) |
| VectorOfElements | abs_diff (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | floor (const VectorOfElements &a) |
| VectorOfElements | convert (acl::TypeID type, const VectorOfElements &a, bool strong=true) |
| VectorOfElements | minElement (const VectorOfElements &a) |
| VectorOfElements | minAbsElement (const VectorOfElements &a) |
| VectorOfElements | maxElement (const VectorOfElements &a) |
| VectorOfElements | sumOfElements (const VectorOfElements &a) |
| VectorOfElements | andOfElements (const VectorOfElements &a) |
| VectorOfElements | orOfElements (const VectorOfElements &a) |
| VectorOfElements | cat (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElementsData | cat (const VectorOfElementsData &a, const VectorOfElementsData &b) |
| VectorOfElements | cat (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c) |
| VectorOfElements | cat (const VectorOfElements *a, unsigned int n) |
| VectorOfElements | catN (const VectorOfElements &a, unsigned int n) |
| template<typename T> |
| VectorOfElements | operator+= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator-= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator*= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator/= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator+ (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator+ (const T &a, const VectorOfElements &b) |
| template<typename T> |
| VectorOfElements | operator- (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator- (const T &a, const VectorOfElements &b) |
| template<typename T> |
| VectorOfElements | operator* (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator* (const T &a, const VectorOfElements &b) |
| template<typename T> |
| VectorOfElements | operator/ (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator% (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator/ (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator% (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator> (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator> (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator< (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator< (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator>= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator>= (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator<= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator<= (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator== (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator== (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator!= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator!= (const T &b, const VectorOfElements &a) |
| void | createKernels (std::vector< SPKernel > &vk, unsigned int n, const KernelConfiguration &kernelConfig_=KERNEL_BASIC) |
| ExpressionContainer & | operator<< (ExpressionContainer &ec, const std::vector< Element > &a) |
| | puts a vector<Element> in ExpressionContainer
|
| std::vector< Element > & | operator<< (std::vector< Element > &ec, const std::vector< Element > &a) |
| | puts a vector<Element> in ExpressionContainer
|
| ExpressionContainer & | operator<< (ExpressionContainer &ec, const MatrixOfElements &a) |
| | puts a MatrixOfElements in ExpressionContainer
|
| ExpressionContainer & | operator<< (ExpressionContainer &ec, const ExpressionContainer &a) |
| | puts a ExpressionContainer in ExpressionContainer
|
| void | copy (const ComplexNumOfElements &source, ComplexNumOfElements &destination) |
| | function copies the ComplexNumOfElements class.
|
| ComplexNumOfElements | operator+ (ComplexNumOfElements &a, ComplexNumOfElements &b) |
| | summ of two matrices
|
| ComplexNumOfElements | operator- (ComplexNumOfElements &a, ComplexNumOfElements &b) |
| | difference of two matrices
|
| ComplexNumOfElements | operator* (const ComplexNumOfElements &a, const ComplexNumOfElements &b) |
| | product of two matrices
|
| void | copy (const MatrixOfElements &source, MatrixOfElements &destination) |
| | function copies the MatrixOfElements class.
|
| MatrixOfElements | operator+ (const MatrixOfElements &a, const MatrixOfElements &b) |
| | summ of two matrices
|
| MatrixOfElements | operator- (const MatrixOfElements &a, const MatrixOfElements &b) |
| | difference of two matrices
|
| MatrixOfElements | operator* (const MatrixOfElements &a, const MatrixOfElements &b) |
| | product of two matrices
|
| VectorOfElements | operator* (const VectorOfElements &a, const MatrixOfElements &b) |
| | product of vector and matrix
|
| VectorOfElements | operator* (const MatrixOfElements &a, const VectorOfElements &b) |
| | product of vector and matrix
|
| MatrixOfElements | operator/ (const MatrixOfElements &a, const VectorOfElements &b) |
| | division of a matrix on a VectorOfElements with 1 element
|
| MatrixOfElements | transpose (MatrixOfElements &source) |
| | transposed matrix
|
| MatrixOfElements | elementProduct (const VectorOfElements &a, const VectorOfElements &b) |
| | element product of two vectors
|
| VectorOfElements | trace (const MatrixOfElements &a) |
| | Trace of a matrix \(Tr(A)\equiv A_{ii}\).
|
| VectorOfElements | trace (const MatrixOfElements &a, const MatrixOfElements &b) |
| | Trace of a matrix product \(Tr(A B)\equiv A_{ij}B_{ji}\).
|
| MatrixOfElements | generateME (const VectorOfElements &a) |
| | generates a matrix with a row
|
| MatrixOfElements | generateME (const VectorOfElements &a, VectorOfElements &b) |
| | generates a matrix with two rows
|
| MatrixOfElements | generateME (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c) |
| | generates a matrix with three rows
|
| MatrixOfElements | generateME (const VectorOfElements *a, unsigned int n) |
| | generates a matrix with n rows \( generateME(\{u_i\}_j) = A_{ji}\)
|
| MatrixOfElements | generateME (const vector< VectorOfElements > &a) |
| | generates a matrix with n rows \( generateME(\{u_i\}_j) = A_{ji}\)
|
| VectorOfElements | getDiagonal (const MatrixOfElements &a) |
| | returns VectorOfElements containing the diagonal elements
|
| VectorOfElements | getOffDiagonalUp (const MatrixOfElements &a) |
| | returns VectorOfElements containing the uper off diagonal elements
|
| VectorOfElements | det (const MatrixOfElements &m) |
| | computes determinant expression fo cases 2x2 and 3x3 only
|
| MatrixOfElements | replaceRow (const MatrixOfElements &a, const VectorOfElements &b, unsigned int r) |
| | generate matrix with content of the matrix a but with replaced row r by vector b
|
| MatrixOfElements | replaceColumn (const MatrixOfElements &a, const VectorOfElements &b, unsigned int c) |
| | generate matrix with content of the matrix a but with replaced column c by vector b
|
| MatrixOfElements | generateMatrixCofactors (const MatrixOfElements &a) |
| | returns the matrix of cofactors for cases 2x2 and 3x3
|
| vector< Element > | gcMatrixInversion (const MatrixOfElements &a, MatrixOfElements &inv) |
| | returns vector of elements for computing the inverse matrix for cases 2x2 and 3x3
|
| void | copy (const QuaternionOfElements &source, QuaternionOfElements &destination) |
| | function copies the QuaternionOfElements class.
|
| QuaternionOfElements | operator+ (QuaternionOfElements &a, QuaternionOfElements &b) |
| | summ of two matrices
|
| QuaternionOfElements | operator- (QuaternionOfElements &a, QuaternionOfElements &b) |
| | difference of two matrices
|
| QuaternionOfElements | operator* (const QuaternionOfElements &a, const QuaternionOfElements &b) |
| | product of two matrices
|
| VectorOfElements | l2 (QuaternionOfElements &a) |
| | L2 norm of a quaternion.
|
| acl::TypeID | getElementType (const VectorOfElements &a, unsigned int i=0) |
| unsigned int | getElementsSize (const VectorOfElements &a) |
| VectorOfElementsData | clone (VectorOfElementsData a) |
| VectorOfElementsData | clone (VectorOfElementsData a, unsigned int n) |
| void | initData (VectorOfElements a, VectorOfElements initializationValue, const KernelConfiguration &kernelConfig) |
| void | initData (VectorOfElements a, VectorOfElements initializationValue) |
| void | copy (const vector< Element > &source, VectorOfElements &destination) |
| | Copies the VectorOfElements class.
|
| void | copy (const vector< ElementData > &source, VectorOfElements &destination) |
| | Copies the VectorOfElements class.
|
| void | copy (const vector< Element > &source, VectorOfElements &destination, unsigned int start, unsigned int end) |
| | Copies the VectorOfElements class.
|
| void | copy (const VectorOfElementsData &source, VectorOfElementsData &destination) |
| | Copies the VectorOfElementsData class.
|
| VectorOfElements | subVE (const VectorOfElements &source, unsigned int start, unsigned int end) |
| VectorOfElements | subVE (const VectorOfElements &source, unsigned int i) |
| VectorOfElements | subVE (const VectorOfElements &source, const vector< unsigned int > &iList) |
| VectorOfElementsData | subVE (const VectorOfElementsData &source, unsigned int start, unsigned int end) |
| void | swapBuffers (const VectorOfElementsData &a, const VectorOfElementsData &b) |
| VectorOfElements | assignmentSafe (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator- (const VectorOfElements &a) |
| VectorOfElements | operator+= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator-= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator*= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator/= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator+ (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator- (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator* (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator/ (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator% (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator== (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator!= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator> (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator< (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator<= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator>= (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator&& (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator|| (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | operator! (const VectorOfElements &a) |
| VectorOfElements | crossProduct (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | l2 (const VectorOfElements &a) |
| VectorOfElements | productOfElements (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | productOfElements (const VectorOfElements &a) |
| VectorOfElements | divisionOfElements (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | min (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | min (const VectorOfElements &a, const VectorOfElements &b, TypeID type) |
| VectorOfElements | minAbs (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | max (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | max (const VectorOfElements &a, const VectorOfElements &b, TypeID type) |
| VectorOfElements | copysign (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | copysign (const VectorOfElements &a, const VectorOfElements &b, TypeID t) |
| VectorOfElements | sign (const VectorOfElements &a) |
| VectorOfElements | excerpt (const VectorOfElements &source, const VectorOfElements &filter) |
| VectorOfElements | select (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c) |
| VectorOfElements | select (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c, TypeID t) |
| VectorOfElements | select (const VectorOfElements &b, const VectorOfElements &c, TypeID t) |
| VectorOfElements | mad (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c) |
| VectorOfElements | mad (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c, TypeID t) |
| VectorOfElements | log (const VectorOfElements &a) |
| VectorOfElements | log10 (const VectorOfElements &a) |
| VectorOfElements | powI (const VectorOfElements &a, unsigned int i) |
| VectorOfElements | exp (const VectorOfElements &a) |
| VectorOfElements | sqrt (const VectorOfElements &a) |
| VectorOfElements | rsqrt (const VectorOfElements &a) |
| VectorOfElements | fabs (const VectorOfElements &a) |
| VectorOfElements | abs (const VectorOfElements &a) |
| VectorOfElements | abs_diff (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElements | floor (const VectorOfElements &a) |
| VectorOfElements | convert (acl::TypeID type, const VectorOfElements &a, bool strong=true) |
| VectorOfElements | minElement (const VectorOfElements &a) |
| VectorOfElements | minAbsElement (const VectorOfElements &a) |
| VectorOfElements | maxElement (const VectorOfElements &a) |
| VectorOfElements | sumOfElements (const VectorOfElements &a) |
| VectorOfElements | andOfElements (const VectorOfElements &a) |
| VectorOfElements | orOfElements (const VectorOfElements &a) |
| VectorOfElements | cat (const VectorOfElements &a, const VectorOfElements &b) |
| VectorOfElementsData | cat (const VectorOfElementsData &a, const VectorOfElementsData &b) |
| VectorOfElements | cat (const VectorOfElements &a, const VectorOfElements &b, const VectorOfElements &c) |
| VectorOfElements | cat (const VectorOfElements *a, unsigned int n) |
| VectorOfElements | catN (const VectorOfElements &a, unsigned int n) |
| template<typename T> |
| VectorOfElements | operator+= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator-= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator*= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator/= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator+ (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator+ (const T &a, const VectorOfElements &b) |
| template<typename T> |
| VectorOfElements | operator- (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator- (const T &a, const VectorOfElements &b) |
| template<typename T> |
| VectorOfElements | operator* (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator* (const T &a, const VectorOfElements &b) |
| template<typename T> |
| VectorOfElements | operator/ (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator% (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator/ (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator% (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator> (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator> (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator< (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator< (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator>= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator>= (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator<= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator<= (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator== (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator== (const T &b, const VectorOfElements &a) |
| template<typename T> |
| VectorOfElements | operator!= (const VectorOfElements &a, const T &b) |
| template<typename T> |
| VectorOfElements | operator!= (const T &b, const VectorOfElements &a) |
| void | createKernels (std::vector< SPKernel > &vk, unsigned int n, const KernelConfiguration &kernelConfig_=KERNEL_BASIC) |