2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2016,2017,2018, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
53 #include "thread_mpi/threads.h"
55 #include "gromacs/utility/alignedallocator.h"
56 #include "gromacs/utility/dir_separator.h"
57 #include "gromacs/utility/fatalerror.h"
59 #include "gromacs/utility/basenetwork.h"
60 #include "gromacs/utility/gmxmpi.h"
63 static gmx_bool g_bOverAllocDD
= FALSE
;
64 static tMPI_Thread_mutex_t g_over_alloc_mutex
= TMPI_THREAD_MUTEX_INITIALIZER
;
66 void *save_malloc(const char *name
, const char *file
, int line
, size_t size
)
77 if ((p
= malloc(size
)) == nullptr)
79 gmx_fatal(errno
, __FILE__
, __LINE__
,
80 "Not enough memory. Failed to malloc %" PRId64
" bytes for %s\n"
81 "(called from file %s, line %d)",
82 static_cast<int64_t>(size
), name
, file
, line
);
84 (void) memset(p
, 0, size
);
89 void *save_calloc(const char *name
, const char *file
, int line
,
90 size_t nelem
, size_t elsize
)
95 if ((nelem
== 0) || (elsize
== 0))
101 #ifdef PRINT_ALLOC_KB
102 if (nelem
*elsize
>= PRINT_ALLOC_KB
*1024)
104 int rank
= gmx_node_rank();
105 printf("Allocating %.1f MB for %s (called from file %s, line %d on %d)\n",
106 nelem
*elsize
/1048576.0, name
, file
, line
, rank
);
109 #if GMX_BROKEN_CALLOC
110 /* emulate calloc(3) with malloc/memset on machines with
111 a broken calloc, e.g. in -lgmalloc on cray xt3. */
112 if ((p
= malloc((size_t)nelem
*(size_t)elsize
)) == NULL
)
114 gmx_fatal(errno
, __FILE__
, __LINE__
,
115 "Not enough memory. Failed to calloc %" PRId64
116 " elements of size %" PRId64
117 " for %s\n(called from file %s, line %d)",
118 (int64_t)nelem
, (int64_t)elsize
,
121 memset(p
, 0, (size_t) (nelem
* elsize
));
123 if ((p
= calloc(nelem
, elsize
)) == nullptr)
125 gmx_fatal(errno
, __FILE__
, __LINE__
,
126 "Not enough memory. Failed to calloc %" PRId64
127 " elements of size %" PRId64
128 " for %s\n(called from file %s, line %d)",
129 static_cast<int64_t>(nelem
), static_cast<int64_t>(elsize
), name
, file
, line
);
136 void *save_realloc(const char *name
, const char *file
, int line
, void *ptr
,
137 size_t nelem
, size_t elsize
)
140 size_t size
= nelem
*elsize
;
145 save_free(name
, file
, line
, ptr
);
149 #ifdef PRINT_ALLOC_KB
150 if (size
>= PRINT_ALLOC_KB
*1024)
152 int rank
= gmx_node_rank();
153 printf("Reallocating %.1f MB for %s (called from file %s, line %d on %d)\n",
154 size
/1048576.0, name
, file
, line
, rank
);
163 p
= realloc(ptr
, size
);
167 gmx_fatal(errno
, __FILE__
, __LINE__
,
168 "Not enough memory. Failed to realloc %zu bytes for %s, %s=%p\n"
169 "(called from file %s, line %d)",
170 size
, name
, name
, ptr
, file
, line
);
176 void save_free(const char gmx_unused
*name
, const char gmx_unused
*file
, int gmx_unused line
, void *ptr
)
184 /* Pointers allocated with this routine should only be freed
185 * with save_free_aligned, however this will only matter
186 * on systems that lack posix_memalign() and memalign() when
187 * freeing memory that needed to be adjusted to achieve
188 * the necessary alignment. */
189 void *save_malloc_aligned(const char *name
, const char *file
, int line
,
190 size_t nelem
, size_t elsize
, size_t alignment
)
196 gmx_fatal(errno
, __FILE__
, __LINE__
,
197 "Cannot allocate aligned memory with alignment of zero!\n(called from file %s, line %d)", file
, line
);
200 size_t alignmentSize
= gmx::AlignedAllocationPolicy::alignment();
201 if (alignment
> alignmentSize
)
203 gmx_fatal(errno
, __FILE__
, __LINE__
,
204 "Cannot allocate aligned memory with alignment > %zu bytes\n(called from file %s, line %d)", alignmentSize
, file
, line
);
208 if (nelem
== 0 || elsize
== 0)
214 #ifdef PRINT_ALLOC_KB
215 if (nelem
*elsize
>= PRINT_ALLOC_KB
*1024)
217 int rank
= gmx_node_rank();
218 printf("Allocating %.1f MB for %s (called from file %s, line %d on %d)\n",
219 nelem
*elsize
/1048576.0, name
, file
, line
, rank
);
223 p
= gmx::AlignedAllocationPolicy::malloc(nelem
*elsize
);
227 gmx_fatal(errno
, __FILE__
, __LINE__
,
228 "Not enough memory. Failed to allocate %zu aligned elements of size %zu for %s\n(called from file %s, line %d)", nelem
, elsize
, name
, file
, line
);
234 void *save_calloc_aligned(const char *name
, const char *file
, int line
,
235 size_t nelem
, size_t elsize
, size_t alignment
)
237 void *aligned
= save_malloc_aligned(name
, file
, line
, nelem
, elsize
, alignment
);
238 if (aligned
!= nullptr)
240 memset(aligned
, 0, static_cast<size_t>(nelem
* elsize
));
245 /* This routine can NOT be called with any pointer */
246 void save_free_aligned(const char gmx_unused
*name
, const char gmx_unused
*file
, int gmx_unused line
, void *ptr
)
248 gmx::AlignedAllocationPolicy::free(ptr
);
251 void set_over_alloc_dd(gmx_bool set
)
253 tMPI_Thread_mutex_lock(&g_over_alloc_mutex
);
254 /* we just make sure that we don't set this at the same time.
255 We don't worry too much about reading this rarely-set variable */
256 g_bOverAllocDD
= set
;
257 tMPI_Thread_mutex_unlock(&g_over_alloc_mutex
);
260 int over_alloc_dd(int n
)
264 return static_cast<int>(OVER_ALLOC_FAC
*n
+ 100);