mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Moving more into the ET system
This commit is contained in:
parent
8bafe067eb
commit
f8f4b8a249
@ -27,37 +27,6 @@ PARALLEL_FOR_LOOP
|
|||||||
return ret;
|
return ret;
|
||||||
};
|
};
|
||||||
|
|
||||||
template<class vobj> inline auto real(const Lattice<vobj> &z) -> Lattice<vobj>
|
|
||||||
{
|
|
||||||
Lattice<vobj> ret(z._grid);
|
|
||||||
PARALLEL_FOR_LOOP
|
|
||||||
for(int ss=0;ss<z._grid->oSites();ss++){
|
|
||||||
ret._odata[ss] = real(z._odata[ss]);
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
template<class vobj> inline auto imag(const Lattice<vobj> &z) -> Lattice<vobj>
|
|
||||||
{
|
|
||||||
Lattice<vobj> ret(z._grid);
|
|
||||||
PARALLEL_FOR_LOOP
|
|
||||||
for(int ss=0;ss<z._grid->oSites();ss++){
|
|
||||||
ret._odata[ss] = imag(z._odata[ss]);
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
template<class vobj> inline auto Ta(const Lattice<vobj> &z) -> Lattice<decltype(Ta(z._odata[0]))>
|
|
||||||
{
|
|
||||||
Lattice<decltype(Ta(z._odata[0]))> ret(z._grid);
|
|
||||||
PARALLEL_FOR_LOOP
|
|
||||||
for(int ss=0;ss<z._grid->oSites();ss++){
|
|
||||||
ret._odata[ss] = Ta(z._odata[ss]);
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user