MFEM
v4.0
Finite element discretization library
|
A basic generic Tensor class, appropriate for use on the GPU. More...
#include <dtensor.hpp>
Public Member Functions | |
DeviceTensor ()=delete | |
Default constructor. More... | |
template<typename... Args> | |
DeviceTensor (Scalar *_data, Args...args) | |
Constructor to initialize a tensor from the Scalar array _data. More... | |
MFEM_HOST_DEVICE | DeviceTensor (const DeviceTensor &t) |
Copy constructor. More... | |
operator Scalar * () const | |
Conversion to Scalar * . More... | |
template<typename... Args> | |
MFEM_HOST_DEVICE Scalar & | operator() (Args...args) const |
Const accessor for the data. More... | |
MFEM_HOST_DEVICE Scalar & | operator[] (int i) const |
Subscript operator where the tensor is viewed as a 1D array. More... | |
Protected Attributes | |
int | capacity |
Scalar * | data |
int | sizes [Dim] |
A basic generic Tensor class, appropriate for use on the GPU.
Definition at line 80 of file dtensor.hpp.
|
delete |
Default constructor.
|
inline |
Constructor to initialize a tensor from the Scalar array _data.
Definition at line 93 of file dtensor.hpp.
|
inline |
Copy constructor.
Definition at line 103 of file dtensor.hpp.
|
inline |
Conversion to Scalar *
.
Definition at line 114 of file dtensor.hpp.
|
inline |
Const accessor for the data.
Definition at line 118 of file dtensor.hpp.
|
inline |
Subscript operator where the tensor is viewed as a 1D array.
Definition at line 125 of file dtensor.hpp.
|
protected |
Definition at line 83 of file dtensor.hpp.
|
protected |
Definition at line 84 of file dtensor.hpp.
|
protected |
Definition at line 85 of file dtensor.hpp.