2015-04-18 20:44:19 +01:00
|
|
|
#ifndef GRID_LATTICE_TRANSPOSE_H
|
|
|
|
#define GRID_LATTICE_TRANSPOSE_H
|
|
|
|
|
|
|
|
///////////////////////////////////////////////
|
|
|
|
// Transpose
|
|
|
|
///////////////////////////////////////////////
|
|
|
|
|
|
|
|
namespace Grid {
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Transpose
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
template<class vobj>
|
|
|
|
inline Lattice<vobj> transpose(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] = transpose(lhs._odata[ss]);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Index level dependent transpose
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
template<int Index,class vobj>
|
2015-06-30 15:17:27 +01:00
|
|
|
inline auto TransposeIndex(const Lattice<vobj> &lhs) -> Lattice<decltype(transposeIndex<Index>(lhs._odata[0]))>
|
2015-04-18 20:44:19 +01:00
|
|
|
{
|
|
|
|
Lattice<decltype(transposeIndex<Index>(lhs._odata[0]))> 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] = transposeIndex<Index>(lhs._odata[ss]);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|