From 0c570824f24e2033b15d5efa291430561a9c2c83 Mon Sep 17 00:00:00 2001 From: Daniel Richtmann Date: Tue, 21 Apr 2020 13:26:43 +0200 Subject: [PATCH 1/4] Add missing declaration of GridCmdOptionInt --- Grid/util/Init.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Grid/util/Init.h b/Grid/util/Init.h index f7f032ba..dad963a0 100644 --- a/Grid/util/Init.h +++ b/Grid/util/Init.h @@ -56,6 +56,7 @@ std::string GridCmdVectorIntToString(const VectorInt & vec); void GridCmdOptionCSL(std::string str,std::vector & vec); template void GridCmdOptionIntVector(std::string &str,VectorInt & vec); +void GridCmdOptionInt(std::string &str,int & val); void GridParseLayout(char **argv,int argc, From 779e3c74425c9d5e0a65abc0128e215a911fe90a Mon Sep 17 00:00:00 2001 From: Daniel Richtmann Date: Tue, 21 Apr 2020 13:30:08 +0200 Subject: [PATCH 2/4] Const-correctness for retrieval routines of GridStopWatch --- Grid/perfmon/Timer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Grid/perfmon/Timer.h b/Grid/perfmon/Timer.h index 88b4e1cc..2a44faee 100644 --- a/Grid/perfmon/Timer.h +++ b/Grid/perfmon/Timer.h @@ -110,15 +110,15 @@ public: #endif accumulator = std::chrono::duration_cast(start-start); } - GridTime Elapsed(void) { + GridTime Elapsed(void) const { assert(running == false); return std::chrono::duration_cast( accumulator ); } - uint64_t useconds(void){ + uint64_t useconds(void) const { assert(running == false); return (uint64_t) accumulator.count(); } - bool isRunning(void){ + bool isRunning(void) const { return running; } }; From ab0c5d77fbce6a0525fbe4385d45bec58f3bb3cb Mon Sep 17 00:00:00 2001 From: Daniel Richtmann Date: Wed, 22 Apr 2020 19:50:30 +0200 Subject: [PATCH 3/4] Correct NonHermitianSchurOperatorBase --- Grid/algorithms/LinearOperator.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Grid/algorithms/LinearOperator.h b/Grid/algorithms/LinearOperator.h index a7fa1a90..c41f8eef 100644 --- a/Grid/algorithms/LinearOperator.h +++ b/Grid/algorithms/LinearOperator.h @@ -364,6 +364,9 @@ public: void OpDir(const Field& in, Field& out, int dir, int disp) { assert(0); } + void OpDirAll(const Field& in, std::vector& out){ + assert(0); + }; }; template From c83471bfd098c4ad36f5f368231c68dfa48ca6bf Mon Sep 17 00:00:00 2001 From: Daniel Richtmann Date: Thu, 23 Apr 2020 10:54:19 +0200 Subject: [PATCH 4/4] Fix missing checkerboards for adj und conjugate --- Grid/lattice/Lattice_reality.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Grid/lattice/Lattice_reality.h b/Grid/lattice/Lattice_reality.h index 7373b2f9..96af8dab 100644 --- a/Grid/lattice/Lattice_reality.h +++ b/Grid/lattice/Lattice_reality.h @@ -40,6 +40,7 @@ NAMESPACE_BEGIN(Grid); template inline Lattice adj(const Lattice &lhs){ Lattice ret(lhs.Grid()); + ret.Checkerboard()=lhs.Checkerboard(); auto lhs_v = lhs.View(); auto ret_v = ret.View(); accelerator_for( ss, lhs_v.size(), vobj::Nsimd(), { @@ -50,6 +51,7 @@ template inline Lattice adj(const Lattice &lhs){ template inline Lattice conjugate(const Lattice &lhs){ Lattice ret(lhs.Grid()); + ret.Checkerboard() = lhs.Checkerboard(); auto lhs_v = lhs.View(); auto ret_v = ret.View(); accelerator_for( ss, lhs_v.size(), vobj::Nsimd(), {