#ifndef GRID_MATH_TENSORS_H #define GRID_MATH_TENSORS_H namespace Grid { /////////////////////////////////////////////////// // Scalar, Vector, Matrix objects. // These can be composed to form tensor products of internal indices. /////////////////////////////////////////////////// // It is useful to NOT have any constructors // so that these classes assert "is_pod == true" // because then the standard C++ valarray container eliminates fill overhead on new allocation and // non-move copying. // // However note that doing this eliminates some syntactical sugar such as // calling the constructor explicitly or implicitly // class GridTensorBase {}; template class iScalar { public: vtype _internal; typedef typename GridTypeMapper::scalar_type scalar_type; typedef typename GridTypeMapper::vector_type vector_type; typedef typename GridTypeMapper::tensor_reduced tensor_reduced_v; typedef iScalar tensor_reduced; typedef typename GridTypeMapper::scalar_object recurse_scalar_object; typedef iScalar scalar_object; // substitutes a real or complex version with same tensor structure typedef iScalar::Complexified > Complexified; typedef iScalar::Realified > Realified; enum { TensorLevel = GridTypeMapper::TensorLevel + 1}; // Scalar no action // template using tensor_reduce_level = typename iScalar::tensor_reduce_level >; iScalar() = default; /* iScalar(const iScalar ©me)=default; iScalar(iScalar &©me)=default; iScalar & operator= (const iScalar ©me) = default; iScalar & operator= (iScalar &©me) = default; */ iScalar(scalar_type s) : _internal(s) {};// recurse down and hit the constructor for vector_type iScalar(const Zero &z){ *this = zero; }; iScalar & operator= (const Zero &hero){ zeroit(*this); return *this; } friend strong_inline void vstream(iScalar &out,const iScalar &in){ vstream(out._internal,in._internal); } friend strong_inline void zeroit(iScalar &that){ zeroit(that._internal); } friend strong_inline void prefetch(iScalar &that){ prefetch(that._internal); } friend strong_inline void permute(iScalar &out,const iScalar &in,int permutetype){ permute(out._internal,in._internal,permutetype); } // Unary negation friend strong_inline iScalar operator -(const iScalar &r) { iScalar ret; ret._internal= -r._internal; return ret; } // *=,+=,-= operators inherit from corresponding "*,-,+" behaviour strong_inline iScalar &operator *=(const iScalar &r) { *this = (*this)*r; return *this; } strong_inline iScalar &operator -=(const iScalar &r) { *this = (*this)-r; return *this; } strong_inline iScalar &operator +=(const iScalar &r) { *this = (*this)+r; return *this; } strong_inline vtype & operator ()(void) { return _internal; } strong_inline const vtype & operator ()(void) const { return _internal; } // Type casts meta programmed, must be pure scalar to match TensorRemove template = 0,IfNotSimd = 0> operator ComplexF () const { return(TensorRemove(_internal)); }; template = 0,IfNotSimd = 0> operator ComplexD () const { return(TensorRemove(_internal)); }; // template = 0,IfNotSimd = 0> operator RealD () const { return(real(TensorRemove(_internal))); } template = 0,IfNotSimd = 0> operator RealD () const { return TensorRemove(_internal); } template = 0,IfNotSimd = 0> operator Integer () const { return Integer(TensorRemove(_internal)); } // convert from a something to a scalar via constructor of something arg template::value, T>::type* = nullptr > strong_inline iScalar operator = (T arg) { _internal = arg; return *this; } friend std::ostream& operator<< (std::ostream& stream, const iScalar &o){ stream<< "S {"<>>> back to double. /////////////////////////////////////////////////////////// template strong_inline typename std::enable_if::value, T>::type TensorRemove(T arg) { return arg;} template strong_inline auto TensorRemove(iScalar arg) -> decltype(TensorRemove(arg._internal)) { return TensorRemove(arg._internal); } template class iVector { public: vtype _internal[N]; typedef typename GridTypeMapper::scalar_type scalar_type; typedef typename GridTypeMapper::vector_type vector_type; typedef typename GridTypeMapper::tensor_reduced tensor_reduced_v; typedef typename GridTypeMapper::scalar_object recurse_scalar_object; typedef iScalar tensor_reduced; typedef iVector scalar_object; // substitutes a real or complex version with same tensor structure typedef iVector::Complexified,N > Complexified; typedef iVector::Realified,N > Realified; template::value, T>::type* = nullptr > strong_inline auto operator = (T arg) -> iVector { zeroit(*this); for(int i=0;i::TensorLevel + 1}; iVector(const Zero &z){ *this = zero; }; iVector() =default; /* iVector(const iVector ©me)=default; iVector(iVector &©me)=default; iVector & operator= (const iVector ©me) = default; iVector & operator= (iVector &©me) = default; */ iVector & operator= (const Zero &hero){ zeroit(*this); return *this; } friend strong_inline void zeroit(iVector &that){ for(int i=0;i &that){ for(int i=0;i &out,const iVector &in){ for(int i=0;i &out,const iVector &in,int permutetype){ for(int i=0;i operator -(const iVector &r) { iVector ret; for(int i=0;i &operator *=(const iScalar &r) { *this = (*this)*r; return *this; } strong_inline iVector &operator -=(const iVector &r) { *this = (*this)-r; return *this; } strong_inline iVector &operator +=(const iVector &r) { *this = (*this)+r; return *this; } strong_inline vtype & operator ()(int i) { return _internal[i]; } strong_inline const vtype & operator ()(int i) const { return _internal[i]; } friend std::ostream& operator<< (std::ostream& stream, const iVector &o){ stream<< "V<"<{"; for(int i=0;i class iMatrix { public: vtype _internal[N][N]; typedef typename GridTypeMapper::scalar_type scalar_type; typedef typename GridTypeMapper::vector_type vector_type; typedef typename GridTypeMapper::tensor_reduced tensor_reduced_v; typedef typename GridTypeMapper::scalar_object recurse_scalar_object; // substitutes a real or complex version with same tensor structure typedef iMatrix::Complexified,N > Complexified; typedef iMatrix::Realified,N > Realified; // Tensure removal typedef iScalar tensor_reduced; typedef iMatrix scalar_object; enum { TensorLevel = GridTypeMapper::TensorLevel + 1}; iMatrix(const Zero &z){ *this = zero; }; iMatrix() =default; iMatrix& operator=(const iMatrix& rhs){ for(int i=0;i ©me)=default; iMatrix(iMatrix &©me)=default; iMatrix & operator= (const iMatrix ©me) = default; iMatrix & operator= (iMatrix &©me) = default; */ iMatrix & operator= (const Zero &hero){ zeroit(*this); return *this; } template::value, T>::type* = nullptr > strong_inline auto operator = (T arg) -> iMatrix { zeroit(*this); for(int i=0;i &that){ for(int i=0;i &that){ for(int i=0;i &out,const iMatrix &in){ for(int i=0;i &out,const iMatrix &in,int permutetype){ for(int i=0;i operator -(const iMatrix &r) { iMatrix ret; for(int i=0;i strong_inline iMatrix &operator *=(const T &r) { *this = (*this)*r; return *this; } template strong_inline iMatrix &operator -=(const T &r) { *this = (*this)-r; return *this; } template strong_inline iMatrix &operator +=(const T &r) { *this = (*this)+r; return *this; } // returns an lvalue reference strong_inline vtype & operator ()(int i,int j) { return _internal[i][j]; } strong_inline const vtype & operator ()(int i,int j) const { return _internal[i][j]; } friend std::ostream& operator<< (std::ostream& stream, const iMatrix &o){ stream<< "M<"<{"; for(int i=0;i void vprefetch(const iScalar &vv) { vprefetch(vv._internal); } template void vprefetch(const iVector &vv) { for(int i=0;i void vprefetch(const iMatrix &vv) { for(int i=0;i