From 275cb64124930ba604403484a5346763c8abfff5 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 27 Oct 2018 16:32:57 +0200 Subject: [PATCH 1/1] Revert "[smpi] use maps on actor to use one buffer for each" This reverts commit 4b1773e713af47a4917278519ab87386d1de48c5. I fail to understand the problem that this commit wants to solve, and it introduces many issues. Amongst which, a memory exhaustion on 32bit. --- src/smpi/internals/smpi_memory.cpp | 54 ++++++++++++------------------ 1 file changed, 21 insertions(+), 33 deletions(-) diff --git a/src/smpi/internals/smpi_memory.cpp b/src/smpi/internals/smpi_memory.cpp index 1b415473cb..b09a4f45ec 100644 --- a/src/smpi/internals/smpi_memory.cpp +++ b/src/smpi/internals/smpi_memory.cpp @@ -243,43 +243,32 @@ void smpi_destroy_global_memory_segments(){ #endif } +static int sendbuffer_size = 0; +static char* sendbuffer = nullptr; +static int recvbuffer_size = 0; +static char* recvbuffer = nullptr; -//allocate a single buffer for all sends, and an other of all reads, for each actor. -//buffer size is growing if needed - -typedef std::tuple buffer_tuple; -static std::map sendbuffer_map; -static std::map recvbuffer_map; -static void* smpi_get_tmp_buffer(int size, std::map buffer_map) +//allocate a single buffer for all sends, growing it if needed +void* smpi_get_tmp_sendbuffer(int size) { - // Because this kind of process maintain is own list of buffers and call - // `smpi_free_tmp_buffer(void* buf)` to free them if (not smpi_process()->replaying()) return xbt_malloc(size); - - // check if the process is registered - aid_t id = simgrid::s4u::this_actor::get_pid(); - if (not (buffer_map.find(id) == buffer_map.end())) - { - // This tuple represents a buffer and his size - buffer_tuple buffer_tuple(nullptr, 0); - buffer_map[id] = buffer_tuple; + if (sendbuffer_size(xbt_realloc(sendbuffer,size)); + sendbuffer_size=size; } - if (std::get<1>(buffer_map[id]) < size){ - std::get<0>(buffer_map[id]) = static_cast(xbt_realloc(std::get<0>(buffer_map[id]), size)); - std::get<1>(buffer_map[id]) = size; - } - return std::get<0>(buffer_map[id]); -} - -void* smpi_get_tmp_sendbuffer(int size) -{ - return smpi_get_tmp_buffer(size, sendbuffer_map); + return sendbuffer; } -void* smpi_get_tmp_recvbuffer(int size) -{ - return smpi_get_tmp_buffer(size, recvbuffer_map); +//allocate a single buffer for all recv +void* smpi_get_tmp_recvbuffer(int size){ + if (not smpi_process()->replaying()) + return xbt_malloc(size); + if (recvbuffer_size(xbt_realloc(recvbuffer,size)); + recvbuffer_size=size; + } + return recvbuffer; } void smpi_free_tmp_buffer(void* buf){ @@ -288,7 +277,6 @@ void smpi_free_tmp_buffer(void* buf){ } void smpi_free_replay_tmp_buffers(){ - aid_t id = simgrid::s4u::this_actor::get_pid(); - xbt_free(std::get<0>(recvbuffer_map[id])); - xbt_free(std::get<0>(sendbuffer_map[id])); + xbt_free(sendbuffer); + xbt_free(recvbuffer); } -- 2.20.1