From 98a24ebf31d071f0d13bc67f165ce904c49db7d7 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Mon, 10 Apr 2017 16:58:54 +0100 Subject: [PATCH 1/2] =?UTF-8?q?The=20macro=20=E2=80=9Cmagics=E2=80=9D=20is?= =?UTF-8?q?=20very=20intensive=20for=20the=20preprocessor=20in=20the=20mea?= =?UTF-8?q?surement=20code=20which=20has=20numerous=20serialisable=20class?= =?UTF-8?q?es.=20Reducing=20the=20number=20of=20serialisable=20fields=20to?= =?UTF-8?q?=2064=20(instead=20of=201024)=20helps=20a=20lot,=20this=20is=20?= =?UTF-8?q?enough=20for=20now=20and=20can=20be=20extended=20trivially=20if?= =?UTF-8?q?=20needed=20in=20the=20future.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/serialisation/MacroMagic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/serialisation/MacroMagic.h b/lib/serialisation/MacroMagic.h index ca789312..a864989c 100644 --- a/lib/serialisation/MacroMagic.h +++ b/lib/serialisation/MacroMagic.h @@ -54,7 +54,7 @@ THE SOFTWARE. #define GRID_MACRO_EMPTY() -#define GRID_MACRO_EVAL(...) GRID_MACRO_EVAL1024(__VA_ARGS__) +#define GRID_MACRO_EVAL(...) GRID_MACRO_EVAL64(__VA_ARGS__) #define GRID_MACRO_EVAL1024(...) GRID_MACRO_EVAL512(GRID_MACRO_EVAL512(__VA_ARGS__)) #define GRID_MACRO_EVAL512(...) GRID_MACRO_EVAL256(GRID_MACRO_EVAL256(__VA_ARGS__)) #define GRID_MACRO_EVAL256(...) GRID_MACRO_EVAL128(GRID_MACRO_EVAL128(__VA_ARGS__)) From 8ef4300412ee7a3ac028effae9b3a52a732179fe Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Mon, 10 Apr 2017 17:00:22 +0100 Subject: [PATCH 2/2] spurious .dirstamp files removed --- lib/algorithms/approx/.dirstamp | 0 lib/communicator/.dirstamp | 0 lib/qcd/action/fermion/.dirstamp | 0 lib/qcd/spin/.dirstamp | 0 lib/qcd/utils/.dirstamp | 0 lib/stencil/.dirstamp | 0 6 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 lib/algorithms/approx/.dirstamp delete mode 100644 lib/communicator/.dirstamp delete mode 100644 lib/qcd/action/fermion/.dirstamp delete mode 100644 lib/qcd/spin/.dirstamp delete mode 100644 lib/qcd/utils/.dirstamp delete mode 100644 lib/stencil/.dirstamp diff --git a/lib/algorithms/approx/.dirstamp b/lib/algorithms/approx/.dirstamp deleted file mode 100644 index e69de29b..00000000 diff --git a/lib/communicator/.dirstamp b/lib/communicator/.dirstamp deleted file mode 100644 index e69de29b..00000000 diff --git a/lib/qcd/action/fermion/.dirstamp b/lib/qcd/action/fermion/.dirstamp deleted file mode 100644 index e69de29b..00000000 diff --git a/lib/qcd/spin/.dirstamp b/lib/qcd/spin/.dirstamp deleted file mode 100644 index e69de29b..00000000 diff --git a/lib/qcd/utils/.dirstamp b/lib/qcd/utils/.dirstamp deleted file mode 100644 index e69de29b..00000000 diff --git a/lib/stencil/.dirstamp b/lib/stencil/.dirstamp deleted file mode 100644 index e69de29b..00000000