2015-04-18 20:44:19 +01:00
|
|
|
#ifndef GRID_LATTICE_REALITY_H
|
|
|
|
#define GRID_LATTICE_REALITY_H
|
|
|
|
|
|
|
|
|
|
|
|
// FIXME .. this is the sector of the code
|
|
|
|
// I am most worried about the directions
|
|
|
|
// The choice of burying complex in the SIMD
|
|
|
|
// is making the use of "real" and "imag" very cumbersome
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
|
|
|
|
template<class vobj> inline Lattice<vobj> adj(const Lattice<vobj> &lhs){
|
|
|
|
Lattice<vobj> ret(lhs._grid);
|
2015-05-12 07:51:41 +01:00
|
|
|
PARALLEL_FOR_LOOP
|
2015-04-18 20:44:19 +01:00
|
|
|
for(int ss=0;ss<lhs._grid->oSites();ss++){
|
|
|
|
ret._odata[ss] = adj(lhs._odata[ss]);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
|
2015-05-19 13:57:35 +01:00
|
|
|
template<class vobj> inline Lattice<vobj> conjugate(const Lattice<vobj> &lhs){
|
2015-04-18 20:44:19 +01:00
|
|
|
Lattice<vobj> ret(lhs._grid);
|
2015-05-12 07:51:41 +01:00
|
|
|
PARALLEL_FOR_LOOP
|
2015-04-18 20:44:19 +01:00
|
|
|
for(int ss=0;ss<lhs._grid->oSites();ss++){
|
2015-05-19 13:57:35 +01:00
|
|
|
ret._odata[ss] = conjugate(lhs._odata[ss]);
|
2015-04-18 20:44:19 +01:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
|
2015-06-04 10:29:55 +01:00
|
|
|
|
2015-04-18 20:44:19 +01:00
|
|
|
}
|
|
|
|
#endif
|