12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2011-2014,2016-2017 Inria
- * Copyright (C) 2009-2017 Université de Bordeaux
- * Copyright (C) 2010-2017 CNRS
- *
- * StarPU is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2.1 of the License, or (at
- * your option) any later version.
- *
- * StarPU is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
- #include <errno.h>
- #include <core/workers.h>
- #include <core/disk.h>
- #include <common/config.h>
- #include <common/fxt.h>
- #include <starpu.h>
- #include <drivers/opencl/driver_opencl.h>
- #include <datawizard/memory_manager.h>
- #include <datawizard/memory_nodes.h>
- #include <datawizard/malloc.h>
- #include <core/simgrid.h>
- #include <core/task.h>
- #ifdef STARPU_SIMGRID
- #include <sys/mman.h>
- #include <fcntl.h>
- #include <smpi/smpi.h>
- #endif
- #ifdef STARPU_HAVE_HWLOC
- #include <hwloc.h>
- #ifndef HWLOC_API_VERSION
- #define HWLOC_OBJ_PU HWLOC_OBJ_PROC
- #endif
- #if HWLOC_API_VERSION < 0x00010b00
- #define HWLOC_OBJ_NUMANODE HWLOC_OBJ_NODE
- #endif
- #endif
- #ifndef O_BINARY
- #define O_BINARY 0
- #endif
- #ifndef MAP_POPULATE
- #define MAP_POPULATE 0
- #endif
- static size_t _malloc_align = sizeof(void*);
- static int disable_pinning;
- static int malloc_on_node_default_flags[STARPU_MAXNODES];
- /* This file is used for implementing "folded" allocation */
- #ifdef STARPU_SIMGRID
- #if SIMGRID_VERSION_MAJOR < 3 || (SIMGRID_VERSION_MAJOR == 3 && SIMGRID_VERSION_MINOR < 15)
- /* TODO: drop when simgrid 3.15 is reasonably largely used by people who need the feature */
- static int bogusfile = -1;
- static unsigned long _starpu_malloc_simulation_fold;
- #endif
- #endif
- void starpu_malloc_set_align(size_t align)
- {
- STARPU_ASSERT_MSG(!(align & (align - 1)), "Alignment given to starpu_malloc_set_align (%lu) must be a power of two", (unsigned long) align);
- if (_malloc_align < align)
- _malloc_align = align;
- }
- #if (defined(STARPU_USE_CUDA) && !defined(STARPU_HAVE_CUDA_MEMCPY_PEER))// || defined(STARPU_USE_OPENCL)
- struct malloc_pinned_codelet_struct
- {
- void **ptr;
- size_t dim;
- };
- #endif
- /* Would be difficult to do it this way, we need to remember the cl_mem to be able to free it later... */
- //#ifdef STARPU_USE_OPENCL
- //static void malloc_pinned_opencl_codelet(void *buffers[] STARPU_ATTRIBUTE_UNUSED, void *arg)
- //{
- // struct malloc_pinned_codelet_struct *s = arg;
- // // _STARPU_MALLOC(*(s->ptr), s->dim);
- // starpu_opencl_allocate_memory(devid, (void **)(s->ptr), s->dim, CL_MEM_READ_WRITE|CL_MEM_ALLOC_HOST_PTR);
- //}
- //#endif
- #if defined(STARPU_USE_CUDA) && !defined(STARPU_HAVE_CUDA_MEMCPY_PEER) && !defined(STARPU_SIMGRID)
- static void malloc_pinned_cuda_codelet(void *buffers[] STARPU_ATTRIBUTE_UNUSED, void *arg)
- {
- struct malloc_pinned_codelet_struct *s = arg;
- cudaError_t cures;
- cures = cudaHostAlloc((void **)(s->ptr), s->dim, cudaHostAllocPortable);
- if (STARPU_UNLIKELY(cures))
- STARPU_CUDA_REPORT_ERROR(cures);
- }
- #endif
- #if (defined(STARPU_USE_CUDA) && !defined(STARPU_HAVE_CUDA_MEMCPY_PEER)) && !defined(STARPU_SIMGRID)// || defined(STARPU_USE_OPENCL)
- static struct starpu_perfmodel malloc_pinned_model =
- {
- .type = STARPU_HISTORY_BASED,
- .symbol = "malloc_pinned"
- };
- static struct starpu_codelet malloc_pinned_cl =
- {
- .cuda_funcs = {malloc_pinned_cuda_codelet},
- //#ifdef STARPU_USE_OPENCL
- // .opencl_funcs = {malloc_pinned_opencl_codelet},
- //#endif
- .nbuffers = 0,
- .model = &malloc_pinned_model
- };
- #endif
- /* Allocation in CPU RAM */
- int starpu_malloc_flags(void **A, size_t dim, int flags)
- {
- return _starpu_malloc_flags_on_node(STARPU_MAIN_RAM, A, dim, flags);
- }
- int _starpu_malloc_flags_on_node(unsigned dst_node, void **A, size_t dim, int flags)
- {
- int ret=0;
- STARPU_ASSERT(A);
- if (flags & STARPU_MALLOC_COUNT)
- {
- if (!(flags & STARPU_MALLOC_NORECLAIM))
- while (starpu_memory_allocate(dst_node, dim, flags) != 0)
- {
- size_t freed;
- size_t reclaim = 2 * dim;
- _STARPU_DEBUG("There is not enough memory left, we are going to reclaim %ld\n", (long)reclaim);
- _STARPU_TRACE_START_MEMRECLAIM(dst_node,0);
- freed = _starpu_memory_reclaim_generic(dst_node, 0, reclaim);
- _STARPU_TRACE_END_MEMRECLAIM(dst_node,0);
- if (freed < dim && !(flags & STARPU_MEMORY_WAIT))
- {
- // We could not reclaim enough memory
- *A = NULL;
- return -ENOMEM;
- }
- }
- else if (flags & STARPU_MEMORY_WAIT)
- starpu_memory_allocate(dst_node, dim, flags);
- else
- starpu_memory_allocate(dst_node, dim, flags | STARPU_MEMORY_OVERFLOW);
- }
- if (flags & STARPU_MALLOC_PINNED && disable_pinning <= 0 && STARPU_RUNNING_ON_VALGRIND == 0)
- {
- if (_starpu_can_submit_cuda_task())
- {
- #ifdef STARPU_SIMGRID
- /* FIXME: CUDA seems to be taking 650µs every 1MiB.
- * Ideally we would simulate this batching in 1MiB requests
- * instead of computing an average value.
- */
- if (_starpu_simgrid_cuda_malloc_cost())
- MSG_process_sleep((float) dim * 0.000650 / 1048576.);
- #else /* STARPU_SIMGRID */
- #ifdef STARPU_USE_CUDA
- #ifdef STARPU_HAVE_CUDA_MEMCPY_PEER
- cudaError_t cures;
- cures = cudaHostAlloc(A, dim, cudaHostAllocPortable);
- if (STARPU_UNLIKELY(cures))
- {
- STARPU_CUDA_REPORT_ERROR(cures);
- ret = -ENOMEM;
- }
- goto end;
- #else
- int push_res;
- /* Old versions of CUDA are not thread-safe, we have to
- * run cudaHostAlloc from CUDA workers */
- STARPU_ASSERT_MSG(_starpu_worker_may_perform_blocking_calls(), "without CUDA peer allocation support, pinned allocation must not be done from task or callback");
- struct malloc_pinned_codelet_struct s =
- {
- .ptr = A,
- .dim = dim
- };
- malloc_pinned_cl.where = STARPU_CUDA;
- struct starpu_task *task = starpu_task_create();
- task->name = "cuda_malloc_pinned";
- task->callback_func = NULL;
- task->cl = &malloc_pinned_cl;
- task->cl_arg = &s;
- task->synchronous = 1;
- _starpu_exclude_task_from_dag(task);
- push_res = _starpu_task_submit_internally(task);
- STARPU_ASSERT(push_res != -ENODEV);
- goto end;
- #endif /* STARPU_HAVE_CUDA_MEMCPY_PEER */
- #endif /* STARPU_USE_CUDA */
- // }
- // else if (_starpu_can_submit_opencl_task())
- // {
- //#ifdef STARPU_USE_OPENCL
- // int push_res;
- //
- // STARPU_ASSERT_MSG(_starpu_worker_may_perform_blocking_calls(), "pinned OpenCL allocation must not be done from task or callback");
- //
- // struct malloc_pinned_codelet_struct s =
- // {
- // .ptr = A,
- // .dim = dim
- // };
- //
- // malloc_pinned_cl.where = STARPU_OPENCL;
- // struct starpu_task *task = starpu_task_create();
- // task->name = "opencl_malloc_pinned";
- // task->callback_func = NULL;
- // task->cl = &malloc_pinned_cl;
- // task->cl_arg = &s;
- // task->synchronous = 1;
- //
- // _starpu_exclude_task_from_dag(task);
- //
- // push_res = _starpu_task_submit_internally(task);
- // STARPU_ASSERT(push_res != -ENODEV);
- // goto end;
- //#endif /* STARPU_USE_OPENCL */
- #endif /* STARPU_SIMGRID */
- }
- }
- #ifdef STARPU_SIMGRID
- if (flags & STARPU_MALLOC_SIMULATION_FOLDED)
- {
- #if SIMGRID_VERSION_MAJOR > 3 || (SIMGRID_VERSION_MAJOR == 3 && SIMGRID_VERSION_MINOR >= 15)
- *A = SMPI_SHARED_MALLOC(dim);
- #else
- /* TODO: drop when simgrid 3.15 is reasonably largely used by people who need the feature */
- /* Use "folded" allocation: the same file is mapped several
- * times contiguously, to get a memory area one can read/write,
- * without consuming memory */
- /* First reserve memory area */
- void *buf = mmap (NULL, dim, PROT_READ|PROT_WRITE, MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
- unsigned i;
- if (buf == MAP_FAILED)
- {
- _STARPU_DISP("Warning: could not allocate %luMiB of memory, you need to run \"sysctl vm.overcommit_memory=1\" as root to allow so big allocations\n", (unsigned long) (dim >> 20));
- ret = -ENOMEM;
- *A = NULL;
- }
- else
- {
- if (bogusfile == -1)
- {
- char *path = starpu_getenv("TMPDIR");
- if (!path)
- path = starpu_getenv("TEMP");
- if (!path)
- path = starpu_getenv("TMP");
- if (!path)
- path = "/tmp";
- /* Create bogus file if not done already */
- char *name = _starpu_mktemp(path, O_RDWR | O_BINARY, &bogusfile);
- char *dumb;
- if (!name)
- {
- ret = errno;
- munmap(buf, dim);
- *A = NULL;
- goto end;
- }
- unlink(name);
- free(name);
- _STARPU_CALLOC(dumb, 1,_starpu_malloc_simulation_fold);
- write(bogusfile, dumb, _starpu_malloc_simulation_fold);
- free(dumb);
- }
- /* Map the bogus file in place of the anonymous memory */
- for (i = 0; i < dim / _starpu_malloc_simulation_fold; i++)
- {
- void *pos = (void*) ((unsigned long) buf + i * _starpu_malloc_simulation_fold);
- void *res = mmap(pos, _starpu_malloc_simulation_fold, PROT_READ|PROT_WRITE, MAP_FIXED|MAP_SHARED|MAP_POPULATE, bogusfile, 0);
- STARPU_ASSERT_MSG(res == pos, "Could not map folded virtual memory (%s). Do you perhaps need to increase the STARPU_MALLOC_SIMULATION_FOLD environment variable or the sysctl vm.max_map_count?", strerror(errno));
- }
- if (dim % _starpu_malloc_simulation_fold)
- {
- void *pos = (void*) ((unsigned long) buf + i * _starpu_malloc_simulation_fold);
- void *res = mmap(pos, dim % _starpu_malloc_simulation_fold, PROT_READ|PROT_WRITE, MAP_FIXED|MAP_SHARED|MAP_POPULATE, bogusfile, 0);
- STARPU_ASSERT_MSG(res == pos, "Could not map folded virtual memory (%s). Do you perhaps need to increase the STARPU_MALLOC_SIMULATION_FOLD environment variable or the sysctl vm.max_map_count?", strerror(errno));
- }
- *A = buf;
- }
- #endif
- }
- else
- #endif
- if (_starpu_can_submit_scc_task())
- {
- #ifdef STARPU_USE_SCC
- _starpu_scc_allocate_shared_memory(A, dim);
- #endif
- }
- #ifdef STARPU_HAVE_HWLOC
- if (starpu_memory_nodes_get_numa_count() > 1)
- {
- struct _starpu_machine_config *config = _starpu_get_machine_config();
- hwloc_topology_t hwtopology = config->topology.hwtopology;
- hwloc_obj_t numa_node_obj = hwloc_get_obj_by_type(hwtopology, HWLOC_OBJ_NUMANODE, starpu_memory_nodes_numa_id_to_hwloclogid(dst_node));
- hwloc_bitmap_t nodeset = numa_node_obj->nodeset;
- #if HWLOC_API_VERSION >= 0x00020000
- *A = hwloc_alloc_membind(hwtopology, dim, nodeset, HWLOC_MEMBIND_BIND | HWLOC_MEMBIND_NOCPUBIND, flags | HWLOC_MEMBIND_BYNODESET);
- #else
- *A = hwloc_alloc_membind_nodeset(hwtopology, dim, nodeset, HWLOC_MEMBIND_BIND | HWLOC_MEMBIND_NOCPUBIND, flags);
- #endif
- //fprintf(stderr, "Allocation %lu bytes on NUMA node %d [%p]\n", (unsigned long) dim, starpu_memnode_get_numaphysid(dst_node), *A);
- if (!*A)
- ret = -ENOMEM;
- }
- #endif /* STARPU_HAVE_HWLOC */
- else
- #ifdef STARPU_HAVE_POSIX_MEMALIGN
- if (_malloc_align != sizeof(void*))
- {
- if (posix_memalign(A, _malloc_align, dim))
- {
- ret = -ENOMEM;
- *A = NULL;
- }
- }
- else
- #elif defined(STARPU_HAVE_MEMALIGN)
- if (_malloc_align != sizeof(void*))
- {
- *A = memalign(_malloc_align, dim);
- if (!*A)
- ret = -ENOMEM;
- }
- else
- #endif /* STARPU_HAVE_POSIX_MEMALIGN */
- {
- *A = malloc(dim);
- if (!*A)
- ret = -ENOMEM;
- }
- #if defined(STARPU_SIMGRID) || defined(STARPU_USE_CUDA)
- end:
- #endif
- if (ret == 0)
- {
- STARPU_ASSERT_MSG(*A, "Failed to allocated memory of size %lu b\n", (unsigned long)dim);
- }
- else if (flags & STARPU_MALLOC_COUNT)
- {
- starpu_memory_deallocate(dst_node, dim);
- }
- return ret;
- }
- int starpu_malloc(void **A, size_t dim)
- {
- return starpu_malloc_flags(A, dim, STARPU_MALLOC_PINNED);
- }
- #if defined(STARPU_USE_CUDA) && !defined(STARPU_HAVE_CUDA_MEMCPY_PEER) && !defined(STARPU_SIMGRID)
- static void free_pinned_cuda_codelet(void *buffers[] STARPU_ATTRIBUTE_UNUSED, void *arg)
- {
- cudaError_t cures;
- cures = cudaFreeHost(arg);
- if (STARPU_UNLIKELY(cures))
- STARPU_CUDA_REPORT_ERROR(cures);
- }
- #endif
- //#ifdef STARPU_USE_OPENCL
- //static void free_pinned_opencl_codelet(void *buffers[] STARPU_ATTRIBUTE_UNUSED, void *arg)
- //{
- // // free(arg);
- // int err = clReleaseMemObject(arg);
- // if (err != CL_SUCCESS) STARPU_OPENCL_REPORT_ERROR(err);
- //}
- //#endif
- #if defined(STARPU_USE_CUDA) && !defined(STARPU_HAVE_CUDA_MEMCPY_PEER) && !defined(STARPU_SIMGRID) // || defined(STARPU_USE_OPENCL)
- static struct starpu_perfmodel free_pinned_model =
- {
- .type = STARPU_HISTORY_BASED,
- .symbol = "free_pinned"
- };
- static struct starpu_codelet free_pinned_cl =
- {
- .cuda_funcs = {free_pinned_cuda_codelet},
- //#ifdef STARPU_USE_OPENCL
- // .opencl_funcs = {free_pinned_opencl_codelet},
- //#endif
- .nbuffers = 0,
- .model = &free_pinned_model
- };
- #endif
- int starpu_free_flags(void *A, size_t dim, int flags)
- {
- return _starpu_free_flags_on_node(STARPU_MAIN_RAM, A, dim, flags);
- }
- int _starpu_free_flags_on_node(unsigned dst_node, void *A, size_t dim, int flags)
- {
- if (flags & STARPU_MALLOC_PINNED && disable_pinning <= 0 && STARPU_RUNNING_ON_VALGRIND == 0)
- {
- if (_starpu_can_submit_cuda_task())
- {
- #ifdef STARPU_SIMGRID
- /* TODO: simulate CUDA barrier */
- #else /* !STARPU_SIMGRID */
- #ifdef STARPU_USE_CUDA
- #ifndef STARPU_HAVE_CUDA_MEMCPY_PEER
- if (!starpu_is_initialized())
- {
- #endif
- /* This is especially useful when starpu_free is called from
- * the GCC-plugin. starpu_shutdown will probably have already
- * been called, so we will not be able to submit a task. */
- cudaError_t err = cudaFreeHost(A);
- if (STARPU_UNLIKELY(err))
- STARPU_CUDA_REPORT_ERROR(err);
- goto out;
- #ifndef STARPU_HAVE_CUDA_MEMCPY_PEER
- }
- else
- {
- int push_res;
- STARPU_ASSERT_MSG(_starpu_worker_may_perform_blocking_calls(), "without CUDA peer allocation support, pinned deallocation must not be done from task or callback");
- free_pinned_cl.where = STARPU_CUDA;
- struct starpu_task *task = starpu_task_create();
- task->name = "cuda_free_pinned";
- task->callback_func = NULL;
- task->cl = &free_pinned_cl;
- task->cl_arg = A;
- task->synchronous = 1;
- _starpu_exclude_task_from_dag(task);
- push_res = _starpu_task_submit_internally(task);
- STARPU_ASSERT(push_res != -ENODEV);
- goto out;
- }
- #endif /* STARPU_HAVE_CUDA_MEMCPY_PEER */
- #endif /* STARPU_USE_CUDA */
- #endif /* STARPU_SIMGRID */
- }
- // else if (_starpu_can_submit_opencl_task())
- // {
- //#ifdef STARPU_USE_OPENCL
- // int push_res;
- //
- // STARPU_ASSERT_MSG(_starpu_worker_may_perform_blocking_calls(), "pinned OpenCL deallocation must not be done from task or callback");
- //
- // free_pinned_cl.where = STARPU_OPENCL;
- // struct starpu_task *task = starpu_task_create();
- // task->name = "opencl_free_pinned";
- // task->callback_func = NULL;
- // task->cl = &free_pinned_cl;
- // task->cl_arg = A;
- // task->synchronous = 1;
- //
- // _starpu_exclude_task_from_dag(task);
- //
- // push_res = starpu_task_submit(task);
- // STARPU_ASSERT(push_res != -ENODEV);
- // goto out;
- // }
- //#endif
- }
- #ifdef STARPU_SIMGRID
- if (flags & STARPU_MALLOC_SIMULATION_FOLDED)
- {
- #if SIMGRID_VERSION_MAJOR > 3 || (SIMGRID_VERSION_MAJOR == 3 && SIMGRID_VERSION_MINOR >= 15)
- SMPI_SHARED_FREE(A);
- #else
- /* TODO: drop when simgrid 3.15 is reasonably largely used by people who need the feature */
- munmap(A, dim);
- #endif
- }
- else
- #endif
- if (_starpu_can_submit_scc_task())
- {
- #ifdef STARPU_USE_SCC
- _starpu_scc_free_shared_memory(A);
- #endif
- }
- #ifdef STARPU_HAVE_HWLOC
- else if (starpu_memory_nodes_get_numa_count() > 1)
- {
- struct _starpu_machine_config *config = _starpu_get_machine_config();
- hwloc_topology_t hwtopology = config->topology.hwtopology;
- hwloc_free(hwtopology, A, dim);
- }
- #endif /* STARPU_HAVE_HWLOC */
- else
- free(A);
- #if !defined(STARPU_SIMGRID) && defined(STARPU_USE_CUDA)
- out:
- #endif
- if (flags & STARPU_MALLOC_COUNT)
- {
- starpu_memory_deallocate(dst_node, dim);
- }
- return 0;
- }
- int starpu_free(void *A)
- {
- return starpu_free_flags(A, 0, STARPU_MALLOC_PINNED);
- }
- #ifdef STARPU_SIMGRID
- static starpu_pthread_mutex_t cuda_alloc_mutex = STARPU_PTHREAD_MUTEX_INITIALIZER;
- static starpu_pthread_mutex_t opencl_alloc_mutex = STARPU_PTHREAD_MUTEX_INITIALIZER;
- #endif
- static uintptr_t
- _starpu_malloc_on_node(unsigned dst_node, size_t size, int flags)
- {
- uintptr_t addr = 0;
- #if defined(STARPU_USE_CUDA) && !defined(STARPU_SIMGRID)
- cudaError_t status;
- #endif
- /* Handle count first */
- if (flags & STARPU_MALLOC_COUNT)
- {
- if (starpu_memory_allocate(dst_node, size, flags) != 0)
- return 0;
- /* And prevent double-count in starpu_malloc_flags */
- flags &= ~STARPU_MALLOC_COUNT;
- }
- switch(starpu_node_get_kind(dst_node))
- {
- case STARPU_CPU_RAM:
- {
- _starpu_malloc_flags_on_node(dst_node, (void**) &addr, size,
- #if defined(STARPU_USE_CUDA) && !defined(STARPU_HAVE_CUDA_MEMCPY_PEER) && !defined(STARPU_SIMGRID)
- /* without memcpy_peer, we can not
- * allocated pinned memory, since it
- * requires waiting for a task, and we
- * may be called with a spinlock held
- */
- flags & ~STARPU_MALLOC_PINNED
- #else
- flags
- #endif
- );
- break;
- }
- #if defined(STARPU_USE_CUDA) || defined(STARPU_SIMGRID)
- case STARPU_CUDA_RAM:
- {
- #ifdef STARPU_SIMGRID
- static uintptr_t last[STARPU_MAXNODES];
- #ifdef STARPU_DEVEL
- #warning TODO: record used memory, using a simgrid property to know the available memory
- #endif
- /* Sleep for the allocation */
- STARPU_PTHREAD_MUTEX_LOCK(&cuda_alloc_mutex);
- if (_starpu_simgrid_cuda_malloc_cost())
- MSG_process_sleep(0.000175);
- if (!last[dst_node])
- last[dst_node] = 1<<10;
- addr = last[dst_node];
- last[dst_node]+=size;
- STARPU_ASSERT(last[dst_node] >= addr);
- STARPU_PTHREAD_MUTEX_UNLOCK(&cuda_alloc_mutex);
- #else
- unsigned devid = _starpu_memory_node_get_devid(dst_node);
- #if defined(STARPU_HAVE_CUDA_MEMCPY_PEER)
- starpu_cuda_set_device(devid);
- #else
- struct _starpu_worker *worker = _starpu_get_local_worker_key();
- if (!worker || worker->arch != STARPU_CUDA_WORKER || worker->devid != devid)
- STARPU_ASSERT_MSG(0, "CUDA peer access is not available with this version of CUDA");
- #endif
- status = cudaMalloc((void **)&addr, size);
- if (!addr || (status != cudaSuccess))
- {
- if (STARPU_UNLIKELY(status != cudaErrorMemoryAllocation))
- STARPU_CUDA_REPORT_ERROR(status);
- addr = 0;
- }
- #endif
- break;
- }
- #endif
- #if defined(STARPU_USE_OPENCL) || defined(STARPU_SIMGRID)
- case STARPU_OPENCL_RAM:
- {
- #ifdef STARPU_SIMGRID
- static uintptr_t last[STARPU_MAXNODES];
- /* Sleep for the allocation */
- STARPU_PTHREAD_MUTEX_LOCK(&opencl_alloc_mutex);
- if (_starpu_simgrid_cuda_malloc_cost())
- MSG_process_sleep(0.000175);
- if (!last[dst_node])
- last[dst_node] = 1<<10;
- addr = last[dst_node];
- last[dst_node]+=size;
- STARPU_ASSERT(last[dst_node] >= addr);
- STARPU_PTHREAD_MUTEX_UNLOCK(&opencl_alloc_mutex);
- #else
- int ret;
- cl_mem ptr;
- ret = starpu_opencl_allocate_memory(_starpu_memory_node_get_devid(dst_node), &ptr, size, CL_MEM_READ_WRITE);
- if (ret)
- {
- addr = 0;
- }
- else
- {
- addr = (uintptr_t)ptr;
- }
- #endif
- break;
- }
- #endif
- case STARPU_DISK_RAM:
- {
- addr = (uintptr_t) _starpu_disk_alloc(dst_node, size);
- break;
- }
- #ifdef STARPU_USE_MIC
- case STARPU_MIC_RAM:
- if (_starpu_mic_allocate_memory((void **)(&addr), size, dst_node))
- addr = 0;
- break;
- #endif
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- case STARPU_MPI_MS_RAM:
- if (_starpu_mpi_src_allocate_memory((void **)(&addr), size, dst_node))
- addr = 0;
- break;
- #endif
- #ifdef STARPU_USE_SCC
- case STARPU_SCC_RAM:
- if (_starpu_scc_allocate_memory((void **)(&addr), size, dst_node))
- addr = 0;
- break;
- #endif
- default:
- STARPU_ABORT();
- }
- if (addr == 0)
- {
- // Allocation failed, gives the memory back to the memory manager
- _STARPU_TRACE_MEMORY_FULL(size);
- starpu_memory_deallocate(dst_node, size);
- }
- return addr;
- }
- void
- _starpu_free_on_node_flags(unsigned dst_node, uintptr_t addr, size_t size, int flags)
- {
- int count = flags & STARPU_MALLOC_COUNT;
- flags &= ~STARPU_MALLOC_COUNT;
- enum starpu_node_kind kind = starpu_node_get_kind(dst_node);
- switch(kind)
- {
- case STARPU_CPU_RAM:
- _starpu_free_flags_on_node(dst_node, (void*)addr, size,
- #if defined(STARPU_USE_CUDA) && !defined(STARPU_HAVE_CUDA_MEMCPY_PEER) && !defined(STARPU_SIMGRID)
- flags & ~STARPU_MALLOC_PINNED
- #else
- flags
- #endif
- );
- break;
- #if defined(STARPU_USE_CUDA) || defined(STARPU_SIMGRID)
- case STARPU_CUDA_RAM:
- {
- #ifdef STARPU_SIMGRID
- STARPU_PTHREAD_MUTEX_LOCK(&cuda_alloc_mutex);
- /* Sleep for the free */
- if (_starpu_simgrid_cuda_malloc_cost())
- MSG_process_sleep(0.000750);
- STARPU_PTHREAD_MUTEX_UNLOCK(&cuda_alloc_mutex);
- /* CUDA also synchronizes roughly everything on cudaFree */
- _starpu_simgrid_sync_gpus();
- #else
- cudaError_t err;
- unsigned devid = _starpu_memory_node_get_devid(dst_node);
- #if defined(STARPU_HAVE_CUDA_MEMCPY_PEER)
- starpu_cuda_set_device(devid);
- #else
- struct _starpu_worker *worker = _starpu_get_local_worker_key();
- if (!worker || worker->arch != STARPU_CUDA_WORKER || worker->devid != devid)
- STARPU_ASSERT_MSG(0, "CUDA peer access is not available with this version of CUDA");
- #endif
- err = cudaFree((void*)addr);
- if (STARPU_UNLIKELY(err != cudaSuccess
- #ifdef STARPU_OPENMP
- /* When StarPU is used as Open Runtime support,
- * starpu_omp_shutdown() will usually be called from a
- * destructor, in which case cudaThreadExit() reports a
- * cudaErrorCudartUnloading here. There should not
- * be any remaining tasks running at this point so
- * we can probably ignore it without much consequences. */
- && err != cudaErrorCudartUnloading
- #endif /* STARPU_OPENMP */
- ))
- STARPU_CUDA_REPORT_ERROR(err);
- #endif
- break;
- }
- #endif
- #if defined(STARPU_USE_OPENCL) || defined(STARPU_SIMGRID)
- case STARPU_OPENCL_RAM:
- {
- #ifdef STARPU_SIMGRID
- STARPU_PTHREAD_MUTEX_LOCK(&opencl_alloc_mutex);
- /* Sleep for the free */
- if (_starpu_simgrid_cuda_malloc_cost())
- MSG_process_sleep(0.000750);
- STARPU_PTHREAD_MUTEX_UNLOCK(&opencl_alloc_mutex);
- #else
- cl_int err;
- err = clReleaseMemObject((void*)addr);
- if (STARPU_UNLIKELY(err != CL_SUCCESS))
- STARPU_OPENCL_REPORT_ERROR(err);
- #endif
- break;
- }
- #endif
- case STARPU_DISK_RAM:
- {
- _starpu_disk_free (dst_node, (void *) addr , size);
- break;
- }
- #ifdef STARPU_USE_MIC
- case STARPU_MIC_RAM:
- _starpu_mic_free_memory((void*) addr, size, dst_node);
- break;
- #endif
- #ifdef STARPU_USE_MPI_MASTER_SLAVE
- case STARPU_MPI_MS_RAM:
- _starpu_mpi_source_free_memory((void*) addr, dst_node);
- break;
- #endif
- #ifdef STARPU_USE_SCC
- case STARPU_SCC_RAM:
- _starpu_scc_free_memory((void *) addr, dst_node);
- break;
- #endif
- default:
- STARPU_ABORT();
- }
- if (count)
- starpu_memory_deallocate(dst_node, size);
- }
- int
- starpu_memory_pin(void *addr STARPU_ATTRIBUTE_UNUSED, size_t size STARPU_ATTRIBUTE_UNUSED)
- {
- if (STARPU_MALLOC_PINNED && disable_pinning <= 0 && STARPU_RUNNING_ON_VALGRIND == 0)
- {
- #if defined(STARPU_USE_CUDA) && defined(STARPU_HAVE_CUDA_MEMCPY_PEER)
- if (cudaHostRegister(addr, size, cudaHostRegisterPortable) != cudaSuccess)
- return -1;
- #endif
- }
- return 0;
- }
- int
- starpu_memory_unpin(void *addr STARPU_ATTRIBUTE_UNUSED, size_t size STARPU_ATTRIBUTE_UNUSED)
- {
- if (STARPU_MALLOC_PINNED && disable_pinning <= 0 && STARPU_RUNNING_ON_VALGRIND == 0)
- {
- #if defined(STARPU_USE_CUDA) && defined(STARPU_HAVE_CUDA_MEMCPY_PEER)
- if (cudaHostUnregister(addr) != cudaSuccess)
- return -1;
- #endif
- }
- return 0;
- }
- /*
- * On CUDA which has very expensive malloc, for small sizes, allocate big
- * chunks divided in blocks, and we actually allocate segments of consecutive
- * blocks.
- *
- * We try to keep the list of chunks with increasing occupancy, so we can
- * quickly find free segments to allocate.
- */
- /* Size of each chunk, 32MiB granularity brings 128 chunks to be allocated in
- * order to fill a 4GiB GPU. */
- #define CHUNK_SIZE (32*1024*1024)
- /* Maximum segment size we will allocate in chunks */
- #define CHUNK_ALLOC_MAX (CHUNK_SIZE / 8)
- /* Granularity of allocation, i.e. block size, StarPU will never allocate less
- * than this.
- * 16KiB (i.e. 64x64 float) granularity eats 2MiB RAM for managing a 4GiB GPU.
- */
- #define CHUNK_ALLOC_MIN (16*1024)
- /* Don't really deallocate chunks unless we have more than this many chunks
- * which are completely free. */
- #define CHUNKS_NFREE 4
- /* Number of blocks */
- #define CHUNK_NBLOCKS (CHUNK_SIZE/CHUNK_ALLOC_MIN)
- /* Linked list for available segments */
- struct block
- {
- int length; /* Number of consecutive free blocks */
- int next; /* next free segment */
- };
- /* One chunk */
- LIST_TYPE(_starpu_chunk,
- uintptr_t base;
- /* Available number of blocks, for debugging */
- int available;
- /* Overestimation of the maximum size of available segments in this chunk */
- int available_max;
- /* Bitmap describing availability of the block */
- /* Block 0 is always empty, and is just the head of the free segments list */
- struct block bitmap[CHUNK_NBLOCKS+1];
- )
- /* One list of chunks per node */
- static struct _starpu_chunk_list chunks[STARPU_MAXNODES];
- /* Number of completely free chunks */
- static int nfreechunks[STARPU_MAXNODES];
- /* This protects chunks and nfreechunks */
- static starpu_pthread_mutex_t chunk_mutex[STARPU_MAXNODES];
- void
- _starpu_malloc_init(unsigned dst_node)
- {
- _starpu_chunk_list_init(&chunks[dst_node]);
- nfreechunks[dst_node] = 0;
- STARPU_PTHREAD_MUTEX_INIT(&chunk_mutex[dst_node], NULL);
- disable_pinning = starpu_get_env_number("STARPU_DISABLE_PINNING");
- malloc_on_node_default_flags[dst_node] = STARPU_MALLOC_PINNED | STARPU_MALLOC_COUNT;
- #ifdef STARPU_SIMGRID
- #if SIMGRID_VERSION_MAJOR < 3 || (SIMGRID_VERSION_MAJOR == 3 && SIMGRID_VERSION_MINOR < 15)
- /* Reasonably "costless" */
- _starpu_malloc_simulation_fold = starpu_get_env_number_default("STARPU_MALLOC_SIMULATION_FOLD", 1) << 20;
- #endif
- #endif
- }
- void
- _starpu_malloc_shutdown(unsigned dst_node)
- {
- struct _starpu_chunk *chunk, *next_chunk;
- STARPU_PTHREAD_MUTEX_LOCK(&chunk_mutex[dst_node]);
- for (chunk = _starpu_chunk_list_begin(&chunks[dst_node]);
- chunk != _starpu_chunk_list_end(&chunks[dst_node]);
- chunk = next_chunk)
- {
- next_chunk = _starpu_chunk_list_next(chunk);
- _starpu_free_on_node_flags(dst_node, chunk->base, CHUNK_SIZE, malloc_on_node_default_flags[dst_node]);
- _starpu_chunk_list_erase(&chunks[dst_node], chunk);
- free(chunk);
- }
- STARPU_PTHREAD_MUTEX_UNLOCK(&chunk_mutex[dst_node]);
- STARPU_PTHREAD_MUTEX_DESTROY(&chunk_mutex[dst_node]);
- }
- /* Create a new chunk */
- static struct _starpu_chunk *_starpu_new_chunk(unsigned dst_node, int flags)
- {
- struct _starpu_chunk *chunk;
- uintptr_t base = _starpu_malloc_on_node(dst_node, CHUNK_SIZE, flags);
- if (!base)
- return NULL;
- /* Create a new chunk */
- chunk = _starpu_chunk_new();
- chunk->base = base;
- /* First block is just a fake block pointing to the free segments list */
- chunk->bitmap[0].length = 0;
- chunk->bitmap[0].next = 1;
- /* At first we have only one big segment for the whole chunk */
- chunk->bitmap[1].length = CHUNK_NBLOCKS;
- chunk->bitmap[1].next = -1;
- chunk->available_max = CHUNK_NBLOCKS;
- chunk->available = CHUNK_NBLOCKS;
- return chunk;
- }
- uintptr_t
- starpu_malloc_on_node_flags(unsigned dst_node, size_t size, int flags)
- {
- /* Big allocation, allocate normally */
- if (size > CHUNK_ALLOC_MAX || starpu_node_get_kind(dst_node) != STARPU_CUDA_RAM)
- return _starpu_malloc_on_node(dst_node, size, flags);
- /* Round up allocation to block size */
- int nblocks = (size + CHUNK_ALLOC_MIN - 1) / CHUNK_ALLOC_MIN;
- struct _starpu_chunk *chunk;
- int prevblock, block;
- int available_max;
- struct block *bitmap;
- STARPU_PTHREAD_MUTEX_LOCK(&chunk_mutex[dst_node]);
- /* Try to find a big enough segment among the chunks */
- for (chunk = _starpu_chunk_list_begin(&chunks[dst_node]);
- chunk != _starpu_chunk_list_end(&chunks[dst_node]);
- chunk = _starpu_chunk_list_next(chunk))
- {
- if (chunk->available_max < nblocks)
- continue;
- bitmap = chunk->bitmap;
- available_max = 0;
- for (prevblock = block = 0;
- block != -1;
- prevblock = block, block = bitmap[prevblock].next)
- {
- STARPU_ASSERT(block >= 0 && block <= CHUNK_NBLOCKS);
- int length = bitmap[block].length;
- if (length >= nblocks)
- {
- if (length >= 2*nblocks)
- {
- /* This one this has quite some room,
- * put it front, to make finding it
- * easier next time. */
- _starpu_chunk_list_erase(&chunks[dst_node], chunk);
- _starpu_chunk_list_push_front(&chunks[dst_node], chunk);
- }
- if (chunk->available == CHUNK_NBLOCKS)
- /* This one was empty, it's not empty any more */
- nfreechunks[dst_node]--;
- goto found;
- }
- if (length > available_max)
- available_max = length;
- }
- /* Didn't find a big enough segment in this chunk, its
- * available_max is out of date */
- chunk->available_max = available_max;
- }
- /* Didn't find a big enough segment, create another chunk. */
- chunk = _starpu_new_chunk(dst_node, flags);
- if (!chunk)
- {
- /* Really no memory any more, fail */
- STARPU_PTHREAD_MUTEX_UNLOCK(&chunk_mutex[dst_node]);
- errno = ENOMEM;
- return 0;
- }
- /* And make it easy to find. */
- _starpu_chunk_list_push_front(&chunks[dst_node], chunk);
- bitmap = chunk->bitmap;
- prevblock = 0;
- block = 1;
- found:
- chunk->available -= nblocks;
- STARPU_ASSERT(bitmap[block].length >= nblocks);
- STARPU_ASSERT(block <= CHUNK_NBLOCKS);
- if (bitmap[block].length == nblocks)
- {
- /* Fits exactly, drop this segment from the skip list */
- bitmap[prevblock].next = bitmap[block].next;
- }
- else
- {
- /* Still some room */
- STARPU_ASSERT(block + nblocks <= CHUNK_NBLOCKS);
- bitmap[prevblock].next = block + nblocks;
- bitmap[block + nblocks].length = bitmap[block].length - nblocks;
- bitmap[block + nblocks].next = bitmap[block].next;
- }
- STARPU_PTHREAD_MUTEX_UNLOCK(&chunk_mutex[dst_node]);
- return chunk->base + (block-1) * CHUNK_ALLOC_MIN;
- }
- void
- starpu_free_on_node_flags(unsigned dst_node, uintptr_t addr, size_t size, int flags)
- {
- /* Big allocation, deallocate normally */
- if (size > CHUNK_ALLOC_MAX || starpu_node_get_kind(dst_node) != STARPU_CUDA_RAM)
- {
- _starpu_free_on_node_flags(dst_node, addr, size, flags);
- return;
- }
- struct _starpu_chunk *chunk;
- /* Round up allocation to block size */
- int nblocks = (size + CHUNK_ALLOC_MIN - 1) / CHUNK_ALLOC_MIN;
- STARPU_PTHREAD_MUTEX_LOCK(&chunk_mutex[dst_node]);
- for (chunk = _starpu_chunk_list_begin(&chunks[dst_node]);
- chunk != _starpu_chunk_list_end(&chunks[dst_node]);
- chunk = _starpu_chunk_list_next(chunk))
- if (addr >= chunk->base && addr < chunk->base + CHUNK_SIZE)
- break;
- STARPU_ASSERT(chunk != _starpu_chunk_list_end(&chunks[dst_node]));
- struct block *bitmap = chunk->bitmap;
- int block = ((addr - chunk->base) / CHUNK_ALLOC_MIN) + 1, prevblock, nextblock;
- /* Look for free segment just before this one */
- for (prevblock = 0;
- prevblock != -1;
- prevblock = nextblock)
- {
- STARPU_ASSERT(prevblock >= 0 && prevblock <= CHUNK_NBLOCKS);
- nextblock = bitmap[prevblock].next;
- STARPU_ASSERT_MSG(nextblock != block, "It seems data 0x%lx (size %u) on node %u is being freed a second time\n", (unsigned long) addr, (unsigned) size, dst_node);
- if (nextblock > block || nextblock == -1)
- break;
- }
- STARPU_ASSERT(prevblock != -1);
- chunk->available += nblocks;
- /* Insert in free segments list */
- bitmap[block].next = nextblock;
- bitmap[prevblock].next = block;
- bitmap[block].length = nblocks;
- STARPU_ASSERT(nextblock >= -1 && nextblock <= CHUNK_NBLOCKS);
- if (nextblock == block + nblocks)
- {
- /* This freed segment is just before a free segment, merge them */
- bitmap[block].next = bitmap[nextblock].next;
- bitmap[block].length += bitmap[nextblock].length;
- if (bitmap[block].length > chunk->available_max)
- chunk->available_max = bitmap[block].length;
- }
- if (prevblock > 0 && prevblock + bitmap[prevblock].length == block)
- {
- /* This free segment is just after a free segment, merge them */
- bitmap[prevblock].next = bitmap[block].next;
- bitmap[prevblock].length += bitmap[block].length;
- if (bitmap[prevblock].length > chunk->available_max)
- chunk->available_max = bitmap[prevblock].length;
- block = prevblock;
- }
- if (chunk->available == CHUNK_NBLOCKS)
- {
- /* This chunk is now empty, but avoid chunk free/alloc
- * ping-pong by keeping some of these. */
- if (nfreechunks[dst_node] >= CHUNKS_NFREE)
- {
- /* We already have free chunks, release this one */
- _starpu_free_on_node_flags(dst_node, chunk->base, CHUNK_SIZE, flags);
- _starpu_chunk_list_erase(&chunks[dst_node], chunk);
- free(chunk);
- }
- else
- nfreechunks[dst_node]++;
- }
- else
- {
- /* Freed some room, put this first in chunks list */
- _starpu_chunk_list_erase(&chunks[dst_node], chunk);
- _starpu_chunk_list_push_front(&chunks[dst_node], chunk);
- }
- STARPU_PTHREAD_MUTEX_UNLOCK(&chunk_mutex[dst_node]);
- }
- void starpu_malloc_on_node_set_default_flags(unsigned node, int flags)
- {
- STARPU_ASSERT_MSG(node < STARPU_MAXNODES, "bogus node value %u given to starpu_malloc_on_node_set_default_flags\n", node);
- malloc_on_node_default_flags[node] = flags;
- }
- uintptr_t
- starpu_malloc_on_node(unsigned dst_node, size_t size)
- {
- return starpu_malloc_on_node_flags(dst_node, size, malloc_on_node_default_flags[dst_node]);
- }
- void
- starpu_free_on_node(unsigned dst_node, uintptr_t addr, size_t size)
- {
- starpu_free_on_node_flags(dst_node, addr, size, malloc_on_node_default_flags[dst_node]);
- }
|