1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-04 11:15:55 +01:00

Nsimd() and coalesced support

This commit is contained in:
Peter Boyle 2019-05-25 12:44:07 +01:00
parent d8098f1ecd
commit ffde81f22a
2 changed files with 9 additions and 0 deletions

View File

@ -64,6 +64,8 @@ public:
enum { TensorLevel = GridTypeMapper<vtype>::TensorLevel + 1 };
static constexpr accelerator_inline int Nsimd(void) { return sizeof(vector_type)/sizeof(scalar_type); }
// Scalar no action
accelerator iScalar() = default;
@ -194,6 +196,8 @@ public:
// get double precision version
typedef iVector<typename GridTypeMapper<vtype>::DoublePrecision, N> DoublePrecision;
static constexpr accelerator_inline int Nsimd(void) { return sizeof(vector_type)/sizeof(scalar_type); }
template <class T, typename std::enable_if<!isGridTensor<T>::value, T>::type * = nullptr>
accelerator_inline auto operator=(T arg) -> iVector<vtype, N> {
@ -304,6 +308,8 @@ public:
enum { TensorLevel = GridTypeMapper<vtype>::TensorLevel + 1 };
static constexpr accelerator_inline int Nsimd(void) { return sizeof(vector_type)/sizeof(scalar_type); }
accelerator_inline iMatrix(const Zero &z) { zeroit(*this); };
accelerator iMatrix() = default;

View File

@ -48,4 +48,7 @@ Author: neo <cossu@post.kek.jp>
#include <Grid/tensors/Tensor_extract_merge.h>
#include <Grid/tensors/Tensor_logical.h>
// Maybe expect different thread on each SIMD lane
#include <Grid/tensors/Tensor_SIMT.h>
#endif