#ifndef GRID_WHERE_H #define GRID_WHERE_H namespace Grid { // Must implement the predicate gating the // Must be able to reduce the predicate down to a single vInteger per site. // Must be able to require the type be iScalar x iScalar x .... // give a GetVtype method in iScalar // and blow away the tensor structures. // template inline void where(Lattice &ret,const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) { conformable(iftrue,iffalse); conformable(iftrue,predicate); conformable(iftrue,ret); GridBase *grid=iftrue._grid; typedef typename vobj::scalar_type scalar_type; typedef typename vobj::vector_type vector_type; typedef typename iobj::vector_type mask_type; const int Nsimd = grid->Nsimd(); const int words = sizeof(vobj)/sizeof(vector_type); std::vector mask(Nsimd); std::vector > truevals (Nsimd,std::vector(words) ); std::vector > falsevals(Nsimd,std::vector(words) ); std::vector pointers(Nsimd); #pragma omp parallel for for(int ss=0;ssoSites(); ss++){ for(int s=0;s inline Lattice where(const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) { conformable(iftrue,iffalse); conformable(iftrue,predicate); Lattice ret(iftrue._grid); where(ret,predicate,iftrue,iffalse); return ret; } } #endif