|
Peano
|
#include "tarch/accelerator/accelerator.h"#include "tarch/Assertions.h"#include "tarch/compiler/CompilerSpecificSettings.h"#include "tarch/la/la.h"#include <bitset>#include <initializer_list>#include <sstream>#include <string>#include "tarch/la/Vector.cpph"#include "tarch/la/VectorOperations.h"#include "tarch/la/VectorScalarOperations.h"#include "tarch/la/VectorSlice.h"#include "tarch/la/VectorVectorOperations.h"
Go to the source code of this file.
Data Structures | |
| struct | tarch::la::Vector< Size, Scalar > |
| Simple vector class. More... | |
Namespaces | |
| namespace | tarch |
| Have to include this header, as I need access to the SYCL_EXTERNAL keyword. | |
| namespace | tarch::la |
| My collection of tiny vector operations. | |
Functions | |
| template<typename NewScalarType, int Size, typename Scalar> | |
| tarch::la::Vector< Size, NewScalarType > | tarch::la::convertScalar (const tarch::la::Vector< Size, Scalar > &vector) |
| Convert the scalar type underlying a vector. | |
| template<int Size, typename Scalar> | |
| std::string | toString (const tarch::la::Vector< Size, Scalar > &vector) |
| Pipes the elements of a vector into a std::string and returns the string. | |
| std::string toString | ( | const tarch::la::Vector< Size, Scalar > & | vector | ) |
Pipes the elements of a vector into a std::string and returns the string.
Not a member of the class as I otherwise can't translate it for GPUs.
Definition at line 48 of file Vector.cpph.