1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-09-20 09:15:38 +01:00
Grid/lib/lattice/Grid_lattice_base.h

308 lines
8.4 KiB
C
Raw Normal View History

2015-05-11 19:09:49 +01:00
#ifndef GRID_LATTICE_BASE_H
#define GRID_LATTICE_BASE_H
2015-05-21 06:47:05 +01:00
#define STREAMING_STORES
2015-05-11 19:09:49 +01:00
namespace Grid {
// TODO:
// mac,real,imag
// Functionality:
// -=,+=,*=,()
// add,+,sub,-,mult,mac,*
// adj,conjugate
2015-05-11 19:09:49 +01:00
// real,imag
// transpose,transposeIndex
// trace,traceIndex
// peekIndex
// innerProduct,outerProduct,
// localNorm2
// localInnerProduct
extern int GridCshiftPermuteMap[4][16];
////////////////////////////////////////////////
// Basic expressions used in Expression Template
////////////////////////////////////////////////
class LatticeBase {};
class LatticeExpressionBase {};
template <typename Op, typename T1>
class LatticeUnaryExpression : public std::pair<Op,std::tuple<T1> > , public LatticeExpressionBase {
public:
LatticeUnaryExpression(const std::pair<Op,std::tuple<T1> > &arg): std::pair<Op,std::tuple<T1> >(arg) {};
};
template <typename Op, typename T1, typename T2>
class LatticeBinaryExpression : public std::pair<Op,std::tuple<T1,T2> > , public LatticeExpressionBase {
public:
LatticeBinaryExpression(const std::pair<Op,std::tuple<T1,T2> > &arg): std::pair<Op,std::tuple<T1,T2> >(arg) {};
};
template <typename Op, typename T1, typename T2, typename T3>
class LatticeTrinaryExpression :public std::pair<Op,std::tuple<T1,T2,T3> >, public LatticeExpressionBase {
public:
LatticeTrinaryExpression(const std::pair<Op,std::tuple<T1,T2,T3> > &arg): std::pair<Op,std::tuple<T1,T2,T3> >(arg) {};
};
void inline conformable(GridBase *lhs,GridBase *rhs)
{
assert(lhs == rhs);
}
2015-05-11 19:09:49 +01:00
template<class vobj>
class Lattice : public LatticeBase
{
public:
GridBase *_grid;
int checkerboard;
std::vector<vobj,alignedAllocator<vobj> > _odata;
public:
typedef typename vobj::scalar_type scalar_type;
typedef typename vobj::vector_type vector_type;
typedef vobj vector_object;
2015-05-11 19:09:49 +01:00
////////////////////////////////////////////////////////////////////////////////
// Expression Template closure support
////////////////////////////////////////////////////////////////////////////////
2015-05-16 04:36:22 +01:00
template <typename Op, typename T1> strong_inline Lattice<vobj> & operator=(const LatticeUnaryExpression<Op,T1> &expr)
2015-05-11 19:09:49 +01:00
{
2015-05-25 13:45:08 +01:00
GridBase *egrid(nullptr);
GridFromExpression(egrid,expr);
assert(egrid!=nullptr);
conformable(_grid,egrid);
int cb=-1;
CBFromExpression(cb,expr);
assert( (cb==Odd) || (cb==Even));
checkerboard=cb;
2015-05-15 11:48:04 +01:00
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<_grid->oSites();ss++){
2015-05-21 06:47:05 +01:00
#ifdef STREAMING_STORES
vobj tmp = eval(ss,expr);
2015-05-11 19:09:49 +01:00
vstream(_odata[ss] ,tmp);
2015-05-21 06:47:05 +01:00
#else
_odata[ss]=eval(ss,expr);
#endif
2015-05-11 19:09:49 +01:00
}
return *this;
}
2015-05-16 04:36:22 +01:00
template <typename Op, typename T1,typename T2> strong_inline Lattice<vobj> & operator=(const LatticeBinaryExpression<Op,T1,T2> &expr)
2015-05-11 19:09:49 +01:00
{
2015-05-25 13:45:08 +01:00
GridBase *egrid(nullptr);
GridFromExpression(egrid,expr);
assert(egrid!=nullptr);
conformable(_grid,egrid);
int cb=-1;
CBFromExpression(cb,expr);
assert( (cb==Odd) || (cb==Even));
checkerboard=cb;
2015-05-15 11:48:04 +01:00
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<_grid->oSites();ss++){
2015-05-21 06:47:05 +01:00
#ifdef STREAMING_STORES
vobj tmp = eval(ss,expr);
2015-05-11 19:09:49 +01:00
vstream(_odata[ss] ,tmp);
2015-05-21 06:47:05 +01:00
#else
_odata[ss]=eval(ss,expr);
#endif
2015-05-11 19:09:49 +01:00
}
return *this;
}
2015-05-16 04:36:22 +01:00
template <typename Op, typename T1,typename T2,typename T3> strong_inline Lattice<vobj> & operator=(const LatticeTrinaryExpression<Op,T1,T2,T3> &expr)
2015-05-11 19:09:49 +01:00
{
2015-05-25 13:45:08 +01:00
GridBase *egrid(nullptr);
GridFromExpression(egrid,expr);
assert(egrid!=nullptr);
conformable(_grid,egrid);
int cb=-1;
CBFromExpression(cb,expr);
assert( (cb==Odd) || (cb==Even));
checkerboard=cb;
2015-05-15 11:48:04 +01:00
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<_grid->oSites();ss++){
2015-05-21 06:47:05 +01:00
#ifdef STREAMING_STORES
vobj tmp = eval(ss,expr);
2015-05-11 19:09:49 +01:00
vstream(_odata[ss] ,tmp);
2015-05-21 06:47:05 +01:00
#else
_odata[ss] = eval(ss,expr);
#endif
2015-05-11 19:09:49 +01:00
}
return *this;
}
//GridFromExpression is tricky to do
template<class Op,class T1>
Lattice(const LatticeUnaryExpression<Op,T1> & expr): _grid(nullptr){
2015-05-25 13:45:08 +01:00
2015-05-11 19:09:49 +01:00
GridFromExpression(_grid,expr);
assert(_grid!=nullptr);
2015-05-25 13:45:08 +01:00
int cb=-1;
CBFromExpression(cb,expr);
assert( (cb==Odd) || (cb==Even));
checkerboard=cb;
2015-05-11 19:09:49 +01:00
_odata.resize(_grid->oSites());
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<_grid->oSites();ss++){
2015-05-21 06:47:05 +01:00
#ifdef STREAMING_STORES
vobj tmp = eval(ss,expr);
vstream(_odata[ss] ,tmp);
#else
_odata[ss]=_eval(ss,expr);
#endif
2015-05-11 19:09:49 +01:00
}
};
template<class Op,class T1, class T2>
Lattice(const LatticeBinaryExpression<Op,T1,T2> & expr): _grid(nullptr){
GridFromExpression(_grid,expr);
assert(_grid!=nullptr);
2015-05-25 13:45:08 +01:00
int cb=-1;
CBFromExpression(cb,expr);
assert( (cb==Odd) || (cb==Even));
checkerboard=cb;
2015-05-11 19:09:49 +01:00
_odata.resize(_grid->oSites());
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<_grid->oSites();ss++){
2015-05-21 06:47:05 +01:00
#ifdef STREAMING_STORES
vobj tmp = eval(tmp,ss,expr);
vstream(_odata[ss] ,tmp);
#else
_odata[ss]=eval(ss,expr);
#endif
2015-05-11 19:09:49 +01:00
}
};
template<class Op,class T1, class T2, class T3>
Lattice(const LatticeTrinaryExpression<Op,T1,T2,T3> & expr): _grid(nullptr){
GridFromExpression(_grid,expr);
assert(_grid!=nullptr);
2015-05-25 13:45:08 +01:00
int cb=-1;
CBFromExpression(cb,expr);
assert( (cb==Odd) || (cb==Even));
checkerboard=cb;
2015-05-11 19:09:49 +01:00
_odata.resize(_grid->oSites());
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<_grid->oSites();ss++){
2015-05-21 06:47:05 +01:00
#ifdef STREAMING_STORES
vobj tmp = eval(ss,expr);
vstream(_odata[ss] ,tmp);
#else
_odata[ss]=eval(ss,expr);
#endif
2015-05-11 19:09:49 +01:00
}
};
//////////////////////////////////////////////////////////////////
// Constructor requires "grid" passed.
// what about a default grid?
//////////////////////////////////////////////////////////////////
Lattice(GridBase *grid) : _grid(grid), _odata(_grid->oSites()) {
// _odata.reserve(_grid->oSites());
// _odata.resize(_grid->oSites());
assert((((uint64_t)&_odata[0])&0xF) ==0);
checkerboard=0;
}
2015-05-16 04:36:22 +01:00
template<class sobj> strong_inline Lattice<vobj> & operator = (const sobj & r){
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<_grid->oSites();ss++){
this->_odata[ss]=r;
}
return *this;
}
2015-05-16 04:36:22 +01:00
template<class robj> strong_inline Lattice<vobj> & operator = (const Lattice<robj> & r){
2015-05-25 13:45:08 +01:00
this->checkerboard = r.checkerboard;
2015-05-11 19:09:49 +01:00
conformable(*this,r);
std::cout<<"Lattice operator ="<<std::endl;
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<_grid->oSites();ss++){
this->_odata[ss]=r._odata[ss];
}
return *this;
}
// *=,+=,-= operators inherit behvour from correspond */+/- operation
2015-05-16 04:36:22 +01:00
template<class T> strong_inline Lattice<vobj> &operator *=(const T &r) {
2015-05-11 19:09:49 +01:00
*this = (*this)*r;
return *this;
}
2015-05-16 04:36:22 +01:00
template<class T> strong_inline Lattice<vobj> &operator -=(const T &r) {
2015-05-11 19:09:49 +01:00
*this = (*this)-r;
return *this;
}
2015-05-16 04:36:22 +01:00
template<class T> strong_inline Lattice<vobj> &operator +=(const T &r) {
2015-05-11 19:09:49 +01:00
*this = (*this)+r;
return *this;
}
2015-05-16 04:36:22 +01:00
strong_inline friend Lattice<vobj> operator / (const Lattice<vobj> &lhs,const Lattice<vobj> &rhs){
2015-05-11 19:09:49 +01:00
conformable(lhs,rhs);
Lattice<vobj> ret(lhs._grid);
PARALLEL_FOR_LOOP
2015-05-11 19:09:49 +01:00
for(int ss=0;ss<lhs._grid->oSites();ss++){
ret._odata[ss] = lhs._odata[ss]/rhs._odata[ss];
}
return ret;
};
2015-05-13 09:24:10 +01:00
2015-05-11 19:09:49 +01:00
}; // class Lattice
2015-05-13 09:24:10 +01:00
2015-05-16 04:36:22 +01:00
template<class vobj> std::ostream& operator<< (std::ostream& stream, const Lattice<vobj> &o){
2015-05-13 09:24:10 +01:00
std::vector<int> gcoor;
typedef typename vobj::scalar_object sobj;
sobj ss;
for(int g=0;g<o._grid->_gsites;g++){
o._grid->GlobalIndexToGlobalCoor(g,gcoor);
peekSite(ss,o,gcoor);
stream<<"[";
for(int d=0;d<gcoor.size();d++){
stream<<gcoor[d];
if(d!=gcoor.size()-1) stream<<",";
}
stream<<"]\t";
stream<<ss<<std::endl;
}
return stream;
}
2015-05-11 19:09:49 +01:00
}
#include <lattice/Grid_lattice_conformable.h>
2015-05-12 20:41:44 +01:00
#define GRID_LATTICE_EXPRESSION_TEMPLATES
#ifdef GRID_LATTICE_EXPRESSION_TEMPLATES
2015-05-11 19:09:49 +01:00
#include <lattice/Grid_lattice_ET.h>
#else
#include <lattice/Grid_lattice_overload.h>
#endif
#include <lattice/Grid_lattice_arith.h>
#include <lattice/Grid_lattice_trace.h>
#include <lattice/Grid_lattice_transpose.h>
#include <lattice/Grid_lattice_local.h>
#include <lattice/Grid_lattice_reduction.h>
#include <lattice/Grid_lattice_peekpoke.h>
#include <lattice/Grid_lattice_reality.h>
#include <Grid_extract.h>
#include <lattice/Grid_lattice_coordinate.h>
#include <lattice/Grid_lattice_rng.h>
#include <lattice/Grid_lattice_transfer.h>
#endif