| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964 | 
							- /* StarPU --- Runtime system for heterogeneous multicore architectures.
 
-  *
 
-  * Copyright (C) 2009-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
 
-  * Copyright (C) 2018       Federal University of Rio Grande do Sul (UFRGS)
 
-  *
 
-  * 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
 
- static int bogusfile = -1;
 
- static unsigned long _starpu_malloc_simulation_fold;
 
- #endif
 
- static starpu_malloc_hook malloc_hook;
 
- static starpu_free_hook free_hook;
 
- void starpu_malloc_set_hooks(starpu_malloc_hook _malloc_hook, starpu_free_hook _free_hook)
 
- {
 
- 	malloc_hook = _malloc_hook;
 
- 	free_hook = _free_hook;
 
- }
 
- 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);
 
- }
 
- /* Return whether we should pin the allocated data */
 
- static int _starpu_malloc_should_pin(int flags)
 
- {
 
- 	if (flags & STARPU_MALLOC_PINNED && disable_pinning <= 0)
 
- 	{
 
- 		if (_starpu_can_submit_cuda_task())
 
- 		{
 
- 			return 1;
 
- 		}
 
- //		if (_starpu_can_submit_opencl_task())
 
- //			return 1;
 
- 	}
 
- 	return 0;
 
- }
 
- 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 (malloc_hook)
 
- 	{
 
- 		ret = malloc_hook(dst_node, A, dim, flags);
 
- 		goto end;
 
- 	}
 
- 	if (_starpu_malloc_should_pin(flags) && 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())
 
- 				starpu_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
 
- 	    if (_starpu_simgrid_running_smpi())
 
- 		    *A = SMPI_SHARED_MALLOC(dim);
 
- 	    else
 
- #endif
 
- 	    {
 
- 		/* 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
 
- #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;
 
- 		}
 
- end:
 
- 	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 (free_hook)
 
- 	{
 
- 		free_hook(dst_node, A, dim, flags);
 
- 		goto out;
 
- 	}
 
- 	if (_starpu_malloc_should_pin(flags) && 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 even
 
- 				 * though starpu_shutdown has 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
 
- 	    if (_starpu_simgrid_running_smpi())
 
- 		SMPI_SHARED_FREE(A);
 
- 	    else
 
- #endif
 
- 		munmap(A, dim);
 
- 	}
 
- #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);
 
- out:
 
- 	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);
 
- }
 
- static uintptr_t _starpu_malloc_on_node(unsigned dst_node, size_t size, int flags)
 
- {
 
- 	uintptr_t addr = 0;
 
- 	/* 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;
 
- 	}
 
- 	struct _starpu_node_ops *node_ops = _starpu_memory_node_get_node_ops(dst_node);
 
- 	if (node_ops && node_ops->malloc_on_node)
 
- 		addr = node_ops->malloc_on_node(dst_node, size, flags & ~STARPU_MALLOC_COUNT);
 
- 	else
 
- 		STARPU_ABORT_MSG("No malloc_on_node function defined for node %s\n", _starpu_node_get_prefix(starpu_node_get_kind(dst_node)));
 
- 	if (addr == 0)
 
- 	{
 
- 		// Allocation failed, gives the memory back to the memory manager
 
- 		_STARPU_TRACE_MEMORY_FULL(size);
 
- 		if (flags & STARPU_MALLOC_COUNT)
 
- 			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;
 
- 	struct _starpu_node_ops *node_ops = _starpu_memory_node_get_node_ops(dst_node);
 
- 	if (node_ops && node_ops->free_on_node)
 
- 		node_ops->free_on_node(dst_node, addr, size, flags);
 
- 	else
 
- 		STARPU_ABORT_MSG("No free_on_node function defined for node %s\n", _starpu_node_get_prefix(starpu_node_get_kind(dst_node)));
 
- 	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
 
- 	/* Reasonably "costless" */
 
- 	_starpu_malloc_simulation_fold = starpu_get_env_number_default("STARPU_MALLOC_SIMULATION_FOLD", 1) << 20;
 
- #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;
 
- }
 
- /* Return whether we should use our suballocator */
 
- static int _starpu_malloc_should_suballoc(unsigned dst_node, size_t size, int flags)
 
- {
 
- 	return size <= CHUNK_ALLOC_MAX &&
 
- 		(starpu_node_get_kind(dst_node) == STARPU_CUDA_RAM
 
- 		 || (starpu_node_get_kind(dst_node) == STARPU_CPU_RAM
 
- 		     && _starpu_malloc_should_pin(flags))
 
- 		 );
 
- }
 
- uintptr_t
 
- starpu_malloc_on_node_flags(unsigned dst_node, size_t size, int flags)
 
- {
 
- 	/* Big allocation, allocate normally */
 
- 	if (!_starpu_malloc_should_suballoc(dst_node, size, flags))
 
- 		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 (!_starpu_malloc_should_suballoc(dst_node, size, flags))
 
- 	{
 
- 		_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]);
 
- }
 
 
  |