123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2011-2014,2016-2017 Inria
- * Copyright (C) 2009-2018 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 < 31500 || SIMGRID_VERSION == 31559
- /* 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->type = STARPU_TASK_TYPE_INTERNAL;
- 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;
- // task->type = STARPU_TASK_TYPE_INTERNAL;
- //
- // _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 >= 31500 && SIMGRID_VERSION != 31559
- *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_BYNODESET | HWLOC_MEMBIND_NOCPUBIND);
- #else
- *A = hwloc_alloc_membind_nodeset(hwtopology, dim, nodeset, HWLOC_MEMBIND_BIND, HWLOC_MEMBIND_NOCPUBIND);
- #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;
- task->type = STARPU_TASK_TYPE_INTERNAL;
- _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;
- // task->type = STARPU_TASK_TYPE_INTERNAL;
- //
- // _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 >= 31500 && SIMGRID_VERSION != 31559
- 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 < 31500 || SIMGRID_VERSION == 31559
- /* 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]);
- }
|