/************************************************************************************* Grid physics library, www.github.com/paboyle/Grid Source file: ./lib/lattice/Lattice_where.h Copyright (C) 2015 Author: Azusa Yamaguchi Author: Peter Boyle Author: Peter Boyle This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. See the full license in the file "LICENSE" in the top level distribution directory *************************************************************************************/ /* END LEGAL */ #ifndef GRID_LATTICE_WHERE_H #define GRID_LATTICE_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 whereWolf(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_object scalar_object; 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(); autoView(iftrue_v,iftrue,CpuRead); autoView(iffalse_v,iffalse,CpuRead); autoView(predicate_v,predicate,CpuRead); autoView(ret_v,ret,CpuWrite); Integer NN= grid->oSites(); thread_for(ss,NN,{ Integer mask; scalar_object trueval; scalar_object falseval; for(int l=0;l inline Lattice whereWolf(const Lattice &predicate,Lattice &iftrue,Lattice &iffalse) { conformable(iftrue,iffalse); conformable(iftrue,predicate); Lattice ret(iftrue.Grid()); whereWolf(ret,predicate,iftrue,iffalse); return ret; } } #endif