From c05b2199f6f3d10ceedda091b9527a78ab1cef05 Mon Sep 17 00:00:00 2001 From: Peter Boyle Date: Mon, 4 Sep 2017 10:41:21 -0400 Subject: [PATCH] Improvements to huge memory --- lib/communicator/Communicator_base.cc | 1 + lib/communicator/Communicator_mpi3.cc | 16 ++++++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/lib/communicator/Communicator_base.cc b/lib/communicator/Communicator_base.cc index 50f0673f..600b890b 100644 --- a/lib/communicator/Communicator_base.cc +++ b/lib/communicator/Communicator_base.cc @@ -157,6 +157,7 @@ void CartesianCommunicator::ShmInitGeneric(void){ perror("mmap failed "); exit(EXIT_FAILURE); } + if (!Hugepages ) madvise(ShmCommBuf,MAX_MPI_SHM_BYTES,MADV_HUGEPAGE); #else ShmBufStorageVector.resize(MAX_MPI_SHM_BYTES); ShmCommBuf=(void *)&ShmBufStorageVector[0]; diff --git a/lib/communicator/Communicator_mpi3.cc b/lib/communicator/Communicator_mpi3.cc index cb7fa390..77042be0 100644 --- a/lib/communicator/Communicator_mpi3.cc +++ b/lib/communicator/Communicator_mpi3.cc @@ -198,7 +198,7 @@ void CartesianCommunicator::Init(int *argc, char ***argv) { ShmCommBuf = 0; ShmCommBufs.resize(ShmSize); -#if 1 +#if 0 char shm_name [NAME_MAX]; if ( ShmRank == 0 ) { for(int r=0;r