From bfcab72268bf4eba75002d0d62cb1694d2ad5d3e Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 14 Dec 2016 15:24:55 -0500 Subject: [PATCH] restore change to make -DLAMMPS_MEMALIGN=64 default when USER-INTEL package is installed (which requires it) --- src/memory.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/memory.cpp b/src/memory.cpp index ed0993202b..eb5309b8b7 100644 --- a/src/memory.cpp +++ b/src/memory.cpp @@ -26,6 +26,10 @@ #endif #endif +#if defined(LMP_USER_INTEL) && !defined(LAMMPS_MEMALIGN) +#define LAMMPS_MEMALIGN 64 +#endif + using namespace LAMMPS_NS; /* ---------------------------------------------------------------------- */