From 5ddea3829d53f7aeaa69f9a70cf4fed4a9e97a53 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Sat, 28 May 2022 15:52:39 -0700 Subject: [PATCH] Extra easier signature for peek --- Grid/lattice/Lattice_peekpoke.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Grid/lattice/Lattice_peekpoke.h b/Grid/lattice/Lattice_peekpoke.h index 5caab214..f3b485a4 100644 --- a/Grid/lattice/Lattice_peekpoke.h +++ b/Grid/lattice/Lattice_peekpoke.h @@ -125,6 +125,12 @@ void pokeSite(const sobj &s,Lattice &l,const Coordinate &site){ ////////////////////////////////////////////////////////// // Peek a scalar object from the SIMD array ////////////////////////////////////////////////////////// +template +typename vobj::scalar_object peekSite(const Lattice &l,const Coordinate &site){ + typename vobj::scalar_object s; + peekSite(s,l,site); + return s; +} template void peekSite(sobj &s,const Lattice &l,const Coordinate &site){