12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2014 Université de Bordeaux 1
- * Copyright (C) 2010, 2011, 2012, 2013, 2014 Centre National de la Recherche Scientifique
- * Copyright (C) 2014 Inria
- *
- * 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 <stdint.h>
- #include <datawizard/datawizard.h>
- #include <core/dependencies/data_concurrency.h>
- #include <common/uthash.h>
- #include <common/starpu_spinlock.h>
- #include <core/task.h>
- #include <core/workers.h>
- #include <datawizard/memstats.h>
- #ifdef STARPU_OPENMP
- #include <util/openmp_runtime_support.h>
- #endif
- /* Entry in the `registered_handles' hash table. */
- struct handle_entry
- {
- UT_hash_handle hh;
- void *pointer;
- starpu_data_handle_t handle;
- };
- /* Hash table mapping host pointers to data handles. */
- static struct handle_entry *registered_handles;
- static struct _starpu_spinlock registered_handles_lock;
- static int _data_interface_number = STARPU_MAX_INTERFACE_ID;
- /* Entry in the `registered_tag_handles' hash table. */
- struct handle_tag_entry
- {
- UT_hash_handle hh;
- int tag;
- starpu_data_handle_t handle;
- };
- /* Hash table mapping host tags to data handles. */
- static struct handle_tag_entry *registered_tag_handles;
- static struct _starpu_spinlock registered_tag_handles_lock;
- static void _starpu_data_unregister(starpu_data_handle_t handle, unsigned coherent, unsigned nowait);
- void _starpu_data_interface_init(void)
- {
- _starpu_spin_init(®istered_handles_lock);
- _starpu_spin_init(®istered_tag_handles_lock);
- }
- void _starpu_data_interface_shutdown()
- {
- struct handle_entry *entry, *tmp;
- if (registered_handles)
- {
- _STARPU_DISP("[warning] The application has not unregistered all data handles.\n");
- }
- _starpu_spin_destroy(®istered_handles_lock);
- HASH_ITER(hh, registered_handles, entry, tmp)
- {
- HASH_DEL(registered_handles, entry);
- free(entry);
- }
- registered_handles = NULL;
- struct handle_tag_entry *tag_entry, *tag_tmp;
- _starpu_spin_destroy(®istered_tag_handles_lock);
- HASH_ITER(hh, registered_tag_handles, tag_entry, tag_tmp)
- {
- HASH_DEL(registered_tag_handles, tag_entry);
- free(tag_entry);
- }
- registered_tag_handles = NULL;
- }
- #ifdef STARPU_OPENMP
- void _starpu_omp_unregister_region_handles(struct starpu_omp_region *region)
- {
- _starpu_spin_lock(®ion->registered_handles_lock);
- struct handle_entry *entry, *tmp;
- HASH_ITER(hh, (region->registered_handles), entry, tmp)
- {
- entry->handle->removed_from_context_hash = 1;
- HASH_DEL(region->registered_handles, entry);
- starpu_data_unregister_submit(entry->handle);
- free(entry);
- }
- _starpu_spin_unlock(®ion->registered_handles_lock);
- }
- void _starpu_omp_unregister_task_handles(struct starpu_omp_task *task)
- {
- struct handle_entry *entry, *tmp;
- HASH_ITER(hh, task->registered_handles, entry, tmp)
- {
- entry->handle->removed_from_context_hash = 1;
- HASH_DEL(task->registered_handles, entry);
- starpu_data_unregister_submit(entry->handle);
- free(entry);
- }
- }
- #endif
- struct starpu_data_interface_ops *_starpu_data_interface_get_ops(unsigned interface_id)
- {
- switch (interface_id)
- {
- case STARPU_MATRIX_INTERFACE_ID:
- return &starpu_interface_matrix_ops;
- case STARPU_BLOCK_INTERFACE_ID:
- return &starpu_interface_block_ops;
- case STARPU_VECTOR_INTERFACE_ID:
- return &starpu_interface_vector_ops;
- case STARPU_CSR_INTERFACE_ID:
- return &starpu_interface_csr_ops;
- case STARPU_BCSR_INTERFACE_ID:
- return &starpu_interface_bcsr_ops;
- case STARPU_VARIABLE_INTERFACE_ID:
- return &starpu_interface_variable_ops;
- case STARPU_VOID_INTERFACE_ID:
- return &starpu_interface_void_ops;
- case STARPU_MULTIFORMAT_INTERFACE_ID:
- return &starpu_interface_multiformat_ops;
- default:
- STARPU_ABORT();
- return NULL;
- }
- }
- /* Register the mapping from PTR to HANDLE. If PTR is already mapped to
- * some handle, the new mapping shadows the previous one. */
- void _starpu_data_register_ram_pointer(starpu_data_handle_t handle, void *ptr)
- {
- struct handle_entry *entry;
- entry = (struct handle_entry *) malloc(sizeof(*entry));
- STARPU_ASSERT(entry != NULL);
- entry->pointer = ptr;
- entry->handle = handle;
- #ifdef STARPU_OPENMP
- struct starpu_omp_task *task = _starpu_omp_get_task();
- if (task)
- {
- if (task->is_implicit)
- {
- struct starpu_omp_region *parallel_region = task->owner_region;
- _starpu_spin_lock(¶llel_region->registered_handles_lock);
- HASH_ADD_PTR(parallel_region->registered_handles, pointer, entry);
- _starpu_spin_unlock(¶llel_region->registered_handles_lock);
- }
- else
- {
- HASH_ADD_PTR(task->registered_handles, pointer, entry);
- }
- }
- else
- #endif
- {
- _starpu_spin_lock(®istered_handles_lock);
- HASH_ADD_PTR(registered_handles, pointer, entry);
- _starpu_spin_unlock(®istered_handles_lock);
- }
- }
- starpu_data_handle_t starpu_data_lookup(const void *ptr)
- {
- starpu_data_handle_t result;
- #ifdef STARPU_OPENMP
- struct starpu_omp_task *task = _starpu_omp_get_task();
- if (task)
- {
- if (task->is_implicit)
- {
- struct starpu_omp_region *parallel_region = task->owner_region;
- _starpu_spin_lock(¶llel_region->registered_handles_lock);
- {
- struct handle_entry *entry;
- HASH_FIND_PTR(parallel_region->registered_handles, &ptr, entry);
- if(STARPU_UNLIKELY(entry == NULL))
- result = NULL;
- else
- result = entry->handle;
- }
- _starpu_spin_unlock(¶llel_region->registered_handles_lock);
- }
- else
- {
- struct handle_entry *entry;
- HASH_FIND_PTR(task->registered_handles, &ptr, entry);
- if(STARPU_UNLIKELY(entry == NULL))
- result = NULL;
- else
- result = entry->handle;
- }
- }
- else
- #endif
- {
- _starpu_spin_lock(®istered_handles_lock);
- {
- struct handle_entry *entry;
- HASH_FIND_PTR(registered_handles, &ptr, entry);
- if(STARPU_UNLIKELY(entry == NULL))
- result = NULL;
- else
- result = entry->handle;
- }
- _starpu_spin_unlock(®istered_handles_lock);
- }
- return result;
- }
- int
- _starpu_data_is_multiformat_handle(starpu_data_handle_t handle)
- {
- return handle->ops->is_multiformat;
- }
- /*
- * Start monitoring a piece of data
- */
- static void _starpu_register_new_data(starpu_data_handle_t handle,
- unsigned home_node, uint32_t wt_mask)
- {
- void *ptr;
- STARPU_ASSERT(handle);
- /* initialize the new lock */
- handle->req_list = _starpu_data_requester_list_new();
- handle->refcnt = 0;
- handle->busy_count = 0;
- handle->busy_waiting = 0;
- STARPU_PTHREAD_MUTEX_INIT(&handle->busy_mutex, NULL);
- STARPU_PTHREAD_COND_INIT(&handle->busy_cond, NULL);
- _starpu_spin_init(&handle->header_lock);
- /* first take care to properly lock the data */
- _starpu_spin_lock(&handle->header_lock);
- /* there is no hierarchy yet */
- handle->nchildren = 0;
- handle->root_handle = handle;
- handle->father_handle = NULL;
- handle->sibling_index = 0; /* could be anything for the root */
- handle->depth = 1; /* the tree is just a node yet */
- handle->rank = -1; /* invalid until set */
- handle->tag = -1; /* invalid until set */
- handle->is_not_important = 0;
- handle->sequential_consistency =
- starpu_data_get_default_sequential_consistency_flag();
- STARPU_PTHREAD_MUTEX_INIT(&handle->sequential_consistency_mutex, NULL);
- handle->last_submitted_mode = STARPU_R;
- handle->last_sync_task = NULL;
- handle->last_submitted_accessors.task = NULL;
- handle->last_submitted_accessors.next = &handle->last_submitted_accessors;
- handle->last_submitted_accessors.prev = &handle->last_submitted_accessors;
- handle->post_sync_tasks = NULL;
- /* Tell helgrind that the race in _starpu_unlock_post_sync_tasks is fine */
- STARPU_HG_DISABLE_CHECKING(handle->post_sync_tasks_cnt);
- handle->post_sync_tasks_cnt = 0;
- /* By default, there are no methods available to perform a reduction */
- handle->redux_cl = NULL;
- handle->init_cl = NULL;
- handle->reduction_refcnt = 0;
- handle->reduction_req_list = _starpu_data_requester_list_new();
- handle->reduction_tmp_handles = NULL;
- #ifdef STARPU_USE_FXT
- handle->last_submitted_ghost_sync_id_is_valid = 0;
- handle->last_submitted_ghost_sync_id = 0;
- handle->last_submitted_ghost_accessors_id = NULL;
- #endif
- handle->wt_mask = wt_mask;
- /* Store some values directly in the handle not to recompute them all
- * the time. */
- handle->footprint = _starpu_compute_data_footprint(handle);
- handle->home_node = home_node;
- /* that new data is invalid from all nodes perpective except for the
- * home node */
- unsigned node;
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- struct _starpu_data_replicate *replicate;
- replicate = &handle->per_node[node];
- replicate->memory_node = node;
- replicate->relaxed_coherency = 0;
- replicate->refcnt = 0;
- if (node == home_node)
- {
- /* this is the home node with the only valid copy */
- replicate->state = STARPU_OWNER;
- replicate->allocated = 1;
- replicate->automatically_allocated = 0;
- replicate->initialized = 1;
- }
- else
- {
- /* the value is not available here yet */
- replicate->state = STARPU_INVALID;
- replicate->allocated = 0;
- replicate->initialized = 0;
- }
- }
- unsigned worker;
- unsigned nworkers = starpu_worker_get_count();
- for (worker = 0; worker < nworkers; worker++)
- {
- struct _starpu_data_replicate *replicate;
- replicate = &handle->per_worker[worker];
- replicate->allocated = 0;
- replicate->automatically_allocated = 0;
- replicate->state = STARPU_INVALID;
- replicate->refcnt = 0;
- replicate->handle = handle;
- replicate->requested = 0;
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- replicate->request[node] = NULL;
- }
- /* Assuming being used for SCRATCH for now, patched when entering REDUX mode */
- replicate->relaxed_coherency = 1;
- replicate->initialized = 0;
- replicate->memory_node = starpu_worker_get_memory_node(worker);
- /* duplicate the content of the interface on node 0 */
- memcpy(replicate->data_interface, handle->per_node[0].data_interface, handle->ops->interface_size);
- }
- /* now the data is available ! */
- _starpu_spin_unlock(&handle->header_lock);
- ptr = starpu_data_handle_to_pointer(handle, STARPU_MAIN_RAM);
- if (ptr != NULL)
- {
- _starpu_data_register_ram_pointer(handle, ptr);
- }
- }
- void starpu_data_ptr_register(starpu_data_handle_t handle, unsigned node)
- {
- struct _starpu_data_replicate *replicate = &handle->per_node[node];
- _starpu_spin_lock(&handle->header_lock);
- STARPU_ASSERT_MSG(replicate->allocated == 0, "starpu_data_ptr_register must be called right after starpu_data_register");
- replicate->allocated = 1;
- replicate->automatically_allocated = 0;
- _starpu_spin_unlock(&handle->header_lock);
- }
- int _starpu_data_handle_init(starpu_data_handle_t handle, struct starpu_data_interface_ops *interface_ops, unsigned int mf_node)
- {
- unsigned node;
- unsigned worker;
- /* Tell helgrind that our access to busy_count in
- * starpu_data_unregister is actually safe */
- STARPU_HG_DISABLE_CHECKING(handle->busy_count);
- handle->ops = interface_ops;
- handle->mf_node = mf_node;
- size_t interfacesize = interface_ops->interface_size;
- _starpu_memory_stats_init(handle);
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- _starpu_memory_stats_init_per_node(handle, node);
- struct _starpu_data_replicate *replicate;
- replicate = &handle->per_node[node];
- /* relaxed_coherency = 0 */
- replicate->handle = handle;
- replicate->data_interface = calloc(1, interfacesize);
- STARPU_ASSERT(replicate->data_interface);
- }
- unsigned nworkers = starpu_worker_get_count();
- for (worker = 0; worker < nworkers; worker++)
- {
- struct _starpu_data_replicate *replicate;
- replicate = &handle->per_worker[worker];
- replicate->handle = handle;
- replicate->data_interface = calloc(1, interfacesize);
- STARPU_ASSERT(replicate->data_interface);
- }
- handle->tag = -1;
- handle->rank = -1;
- return 0;
- }
- static
- starpu_data_handle_t _starpu_data_handle_allocate(struct starpu_data_interface_ops *interface_ops, unsigned int mf_node)
- {
- starpu_data_handle_t handle = (starpu_data_handle_t) calloc(1, sizeof(struct _starpu_data_state));
- STARPU_ASSERT(handle);
- _starpu_data_handle_init(handle, interface_ops, mf_node);
- return handle;
- }
- void starpu_data_register(starpu_data_handle_t *handleptr, unsigned home_node,
- void *data_interface,
- struct starpu_data_interface_ops *ops)
- {
- starpu_data_handle_t handle = _starpu_data_handle_allocate(ops, home_node);
- STARPU_ASSERT(handleptr);
- *handleptr = handle;
- /* fill the interface fields with the appropriate method */
- STARPU_ASSERT(ops->register_data_handle);
- ops->register_data_handle(handle, home_node, data_interface);
- _starpu_register_new_data(handle, home_node, 0);
- }
- void starpu_data_register_same(starpu_data_handle_t *handledst, starpu_data_handle_t handlesrc)
- {
- void *local_interface = starpu_data_get_interface_on_node(handlesrc, STARPU_MAIN_RAM);
- starpu_data_register(handledst, -1, local_interface, handlesrc->ops);
- }
- void *starpu_data_handle_to_pointer(starpu_data_handle_t handle, unsigned node)
- {
- /* Check whether the operation is supported and the node has actually
- * been allocated. */
- if (handle->ops->handle_to_pointer
- && starpu_data_test_if_allocated_on_node(handle, node))
- {
- return handle->ops->handle_to_pointer(handle, node);
- }
- return NULL;
- }
- void *starpu_data_get_local_ptr(starpu_data_handle_t handle)
- {
- return starpu_data_handle_to_pointer(handle,
- _starpu_memory_node_get_local_key());
- }
- int starpu_data_get_rank(starpu_data_handle_t handle)
- {
- return handle->rank;
- }
- int _starpu_data_set_rank(starpu_data_handle_t handle, int rank)
- {
- handle->rank = rank;
- return 0;
- }
- int starpu_data_set_rank(starpu_data_handle_t handle, int rank)
- {
- static int first=1;
- if (first)
- {
- _STARPU_DISP("Warning: You should call starpu_mpi_data_register which will insure MPI cache will be cleared when unregistering the data\n");
- first=0;
- }
- return _starpu_data_set_rank(handle, rank);
- }
- int starpu_data_get_tag(starpu_data_handle_t handle)
- {
- return handle->tag;
- }
- starpu_data_handle_t _starpu_data_get_data_handle_from_tag(int tag)
- {
- struct handle_tag_entry *ret;
- _starpu_spin_lock(®istered_tag_handles_lock);
- HASH_FIND_INT(registered_tag_handles, &tag, ret);
- _starpu_spin_unlock(®istered_tag_handles_lock);
- if (ret)
- {
- return ret->handle;
- }
- else
- {
- return NULL;
- }
- }
- int _starpu_data_set_tag(starpu_data_handle_t handle, int tag)
- {
- struct handle_tag_entry *entry;
- entry = (struct handle_tag_entry *) malloc(sizeof(*entry));
- STARPU_ASSERT(entry != NULL);
- STARPU_ASSERT_MSG(!(_starpu_data_get_data_handle_from_tag(tag)),
- "There is already a data handle %p registered with the tag %d\n", _starpu_data_get_data_handle_from_tag(tag), tag);
- entry->tag = tag;
- entry->handle = handle;
- _starpu_spin_lock(®istered_tag_handles_lock);
- HASH_ADD_INT(registered_tag_handles, tag, entry);
- _starpu_spin_unlock(®istered_tag_handles_lock);
- handle->tag = tag;
- return 0;
- }
- int starpu_data_set_tag(starpu_data_handle_t handle, int tag)
- {
- static int first=1;
- if (first)
- {
- _STARPU_DISP("Warning: You should call starpu_mpi_data_register which will insure MPI cache will be cleared when unregistering the data\n");
- first=0;
- }
- return _starpu_data_set_tag(handle, tag);
- }
- static
- int _starpu_data_release_tag(starpu_data_handle_t handle)
- {
- struct handle_tag_entry *tag_entry;
- if (handle->tag != -1)
- {
- _starpu_spin_lock(®istered_tag_handles_lock);
- HASH_FIND_INT(registered_tag_handles, &handle->tag, tag_entry);
- STARPU_ASSERT_MSG((tag_entry != NULL),"Data handle %p with tag %d isn't in the hashmap !",handle,handle->tag);
- HASH_DEL(registered_tag_handles, tag_entry);
- free(tag_entry);
- _starpu_spin_unlock(®istered_tag_handles_lock);
- }
- return 0;
- }
- struct starpu_data_interface_ops* starpu_data_get_interface_ops(starpu_data_handle_t handle)
- {
- return handle->ops;
- }
- /*
- * Stop monitoring a piece of data
- */
- void _starpu_data_unregister_ram_pointer(starpu_data_handle_t handle)
- {
- const void *ram_ptr = starpu_data_handle_to_pointer(handle, STARPU_MAIN_RAM);
- #ifdef STARPU_OPENMP
- if (handle->removed_from_context_hash)
- return;
- #endif
- if (ram_ptr != NULL)
- {
- /* Remove the PTR -> HANDLE mapping. If a mapping from PTR
- * to another handle existed before (e.g., when using
- * filters), it becomes visible again. */
- #ifdef STARPU_OPENMP
- struct starpu_omp_task *task = _starpu_omp_get_task();
- if (task)
- {
- if (task->is_implicit)
- {
- struct starpu_omp_region *parallel_region = task->owner_region;
- struct handle_entry *entry;
- _starpu_spin_lock(¶llel_region->registered_handles_lock);
- HASH_FIND_PTR(parallel_region->registered_handles, &ram_ptr, entry);
- STARPU_ASSERT(entry != NULL);
- HASH_DEL(registered_handles, entry);
- free(entry);
- _starpu_spin_unlock(¶llel_region->registered_handles_lock);
- }
- else
- {
- struct handle_entry *entry;
- HASH_FIND_PTR(task->registered_handles, &ram_ptr, entry);
- STARPU_ASSERT(entry != NULL);
- HASH_DEL(task->registered_handles, entry);
- free(entry);
- }
- }
- else
- #endif
- {
- struct handle_entry *entry;
- _starpu_spin_lock(®istered_handles_lock);
- HASH_FIND_PTR(registered_handles, &ram_ptr, entry);
- STARPU_ASSERT(entry != NULL);
- HASH_DEL(registered_handles, entry);
- free(entry);
- _starpu_spin_unlock(®istered_handles_lock);
- }
- }
- }
- void _starpu_data_free_interfaces(starpu_data_handle_t handle)
- {
- unsigned node;
- unsigned worker;
- unsigned nworkers = starpu_worker_get_count();
- for (node = 0; node < STARPU_MAXNODES; node++)
- free(handle->per_node[node].data_interface);
- for (worker = 0; worker < nworkers; worker++)
- free(handle->per_worker[worker].data_interface);
- }
- struct _starpu_unregister_callback_arg
- {
- unsigned memory_node;
- starpu_data_handle_t handle;
- unsigned terminated;
- starpu_pthread_mutex_t mutex;
- starpu_pthread_cond_t cond;
- };
- /* Check whether we should tell starpu_data_unregister that the data handle is
- * not busy any more.
- * The header is supposed to be locked.
- * This may free the handle, if it was lazily unregistered (1 is returned in
- * that case). The handle pointer thus becomes invalid for the caller.
- */
- int _starpu_data_check_not_busy(starpu_data_handle_t handle)
- {
- if (!handle->busy_count && handle->busy_waiting)
- {
- STARPU_PTHREAD_MUTEX_LOCK(&handle->busy_mutex);
- STARPU_PTHREAD_COND_BROADCAST(&handle->busy_cond);
- STARPU_PTHREAD_MUTEX_UNLOCK(&handle->busy_mutex);
- }
- /* The handle has been destroyed in between (eg. this was a temporary
- * handle created for a reduction.) */
- if (handle->lazy_unregister && handle->busy_count == 0)
- {
- _starpu_spin_unlock(&handle->header_lock);
- _starpu_data_unregister(handle, 0, 1);
- /* Warning: in case we unregister the handle, we must be sure
- * that the caller will not try to unlock the header after
- * !*/
- return 1;
- }
- return 0;
- }
- static
- void _starpu_check_if_valid_and_fetch_data_on_node(starpu_data_handle_t handle, struct _starpu_data_replicate *replicate)
- {
- unsigned node;
- unsigned nnodes = starpu_memory_nodes_get_count();
- int valid = 0;
- for (node = 0; node < nnodes; node++)
- {
- if (handle->per_node[node].state != STARPU_INVALID)
- {
- /* we found a copy ! */
- valid = 1;
- }
- }
- if (valid)
- {
- int ret = _starpu_fetch_data_on_node(handle, replicate, STARPU_R, 0, 0, NULL, NULL);
- STARPU_ASSERT(!ret);
- _starpu_release_data_on_node(handle, 0, &handle->per_node[handle->home_node]);
- }
- else
- {
- _starpu_spin_lock(&handle->header_lock);
- if (!_starpu_notify_data_dependencies(handle))
- _starpu_spin_unlock(&handle->header_lock);
- }
- }
- static void _starpu_data_unregister_fetch_data_callback(void *_arg)
- {
- struct _starpu_unregister_callback_arg *arg = (struct _starpu_unregister_callback_arg *) _arg;
- starpu_data_handle_t handle = arg->handle;
- STARPU_ASSERT(handle);
- struct _starpu_data_replicate *replicate = &handle->per_node[arg->memory_node];
- _starpu_check_if_valid_and_fetch_data_on_node(handle, replicate);
- /* unlock the caller */
- STARPU_PTHREAD_MUTEX_LOCK(&arg->mutex);
- arg->terminated = 1;
- STARPU_PTHREAD_COND_SIGNAL(&arg->cond);
- STARPU_PTHREAD_MUTEX_UNLOCK(&arg->mutex);
- }
- /* Unregister the data handle, perhaps we don't need to update the home_node
- * (in that case coherent is set to 0)
- * nowait is for internal use when we already know for sure that we won't have to wait.
- */
- static void _starpu_data_unregister(starpu_data_handle_t handle, unsigned coherent, unsigned nowait)
- {
- STARPU_ASSERT(handle);
- STARPU_ASSERT_MSG(handle->nchildren == 0, "data %p needs to be unpartitioned before unregistration", handle);
- STARPU_ASSERT(!(nowait && handle->busy_count != 0));
- int sequential_consistency = handle->sequential_consistency;
- if (sequential_consistency && !nowait)
- {
- STARPU_ASSERT_MSG(_starpu_worker_may_perform_blocking_calls(), "starpu_data_unregister must not be called from a task or callback, perhaps you can use starpu_data_unregister_submit instead");
- /* If sequential consistency is enabled, wait until data is available */
- _starpu_data_wait_until_available(handle, STARPU_RW, "starpu_data_unregister");
- }
- if (coherent && !nowait)
- {
- STARPU_ASSERT_MSG(_starpu_worker_may_perform_blocking_calls(), "starpu_data_unregister must not be called from a task or callback, perhaps you can use starpu_data_unregister_submit instead");
- /* Fetch data in the home of the data to ensure we have a valid copy
- * where we registered it */
- int home_node = handle->home_node;
- if (home_node >= 0)
- {
- struct _starpu_unregister_callback_arg arg;
- arg.handle = handle;
- arg.memory_node = (unsigned)home_node;
- arg.terminated = 0;
- STARPU_PTHREAD_MUTEX_INIT(&arg.mutex, NULL);
- STARPU_PTHREAD_COND_INIT(&arg.cond, NULL);
- if (!_starpu_attempt_to_submit_data_request_from_apps(handle, STARPU_R,
- _starpu_data_unregister_fetch_data_callback, &arg))
- {
- /* no one has locked this data yet, so we proceed immediately */
- struct _starpu_data_replicate *home_replicate = &handle->per_node[home_node];
- _starpu_check_if_valid_and_fetch_data_on_node(handle, home_replicate);
- }
- else
- {
- STARPU_PTHREAD_MUTEX_LOCK(&arg.mutex);
- while (!arg.terminated)
- STARPU_PTHREAD_COND_WAIT(&arg.cond, &arg.mutex);
- STARPU_PTHREAD_MUTEX_UNLOCK(&arg.mutex);
- }
- STARPU_PTHREAD_MUTEX_DESTROY(&arg.mutex);
- STARPU_PTHREAD_COND_DESTROY(&arg.cond);
- }
- /* If this handle uses a multiformat interface, we may have to convert
- * this piece of data back into the CPU format.
- * XXX : This is quite hacky, could we submit a task instead ?
- */
- if (_starpu_data_is_multiformat_handle(handle) &&
- ( starpu_node_get_kind(handle->mf_node) != STARPU_CPU_RAM
- && starpu_node_get_kind(handle->mf_node) != STARPU_SCC_RAM
- && starpu_node_get_kind(handle->mf_node) != STARPU_SCC_SHM
- ))
- {
- _STARPU_DEBUG("Conversion needed\n");
- void *buffers[1];
- struct starpu_multiformat_interface *format_interface;
- format_interface = (struct starpu_multiformat_interface *) starpu_data_get_interface_on_node(handle, STARPU_MAIN_RAM);
- struct starpu_codelet *cl = NULL;
- enum starpu_node_kind node_kind = starpu_node_get_kind(handle->mf_node);
- switch (node_kind)
- {
- #ifdef STARPU_USE_CUDA
- case STARPU_CUDA_RAM:
- {
- struct starpu_multiformat_data_interface_ops *mf_ops;
- mf_ops = (struct starpu_multiformat_data_interface_ops *) handle->ops->get_mf_ops(format_interface);
- cl = mf_ops->cuda_to_cpu_cl;
- break;
- }
- #endif
- #ifdef STARPU_USE_OPENCL
- case STARPU_OPENCL_RAM:
- {
- struct starpu_multiformat_data_interface_ops *mf_ops;
- mf_ops = (struct starpu_multiformat_data_interface_ops *) handle->ops->get_mf_ops(format_interface);
- cl = mf_ops->opencl_to_cpu_cl;
- break;
- }
- #endif
- #ifdef STARPU_USE_MIC
- case STARPU_MIC_RAM:
- {
- struct starpu_multiformat_data_interface_ops *mf_ops;
- mf_ops = (struct starpu_multiformat_data_interface_ops *) handle->ops->get_mf_ops(format_interface);
- cl = mf_ops->mic_to_cpu_cl;
- break;
- }
- #endif
- case STARPU_CPU_RAM: /* Impossible ! */
- case STARPU_SCC_RAM: /* Impossible ! */
- case STARPU_SCC_SHM: /* Impossible ! */
- default:
- STARPU_ABORT();
- }
- buffers[0] = format_interface;
- _starpu_cl_func_t func = _starpu_task_get_cpu_nth_implementation(cl, 0);
- STARPU_ASSERT(func);
- func(buffers, NULL);
- }
- }
- _starpu_spin_lock(&handle->header_lock);
- if (!coherent)
- {
- /* Should we postpone the unregister operation ? */
- if ((handle->busy_count > 0) && handle->lazy_unregister)
- {
- _starpu_spin_unlock(&handle->header_lock);
- return;
- }
- }
- /* Tell holders of references that we're starting waiting */
- handle->busy_waiting = 1;
- _starpu_spin_unlock(&handle->header_lock);
- /* Wait for all requests to finish (notably WT requests) */
- STARPU_PTHREAD_MUTEX_LOCK(&handle->busy_mutex);
- while (1) {
- /* Here helgrind would shout that this an unprotected access,
- * but this is actually fine: all threads who do busy_count--
- * are supposed to call _starpu_data_check_not_busy, which will
- * wake us up through the busy_mutex/busy_cond. */
- if (!handle->busy_count)
- break;
- /* This is woken by _starpu_data_check_not_busy, always called
- * after decrementing busy_count */
- STARPU_PTHREAD_COND_WAIT(&handle->busy_cond, &handle->busy_mutex);
- }
- STARPU_PTHREAD_MUTEX_UNLOCK(&handle->busy_mutex);
- /* Wait for finished requests to release the handle */
- _starpu_spin_lock(&handle->header_lock);
- size_t size = _starpu_data_get_size(handle);
- _starpu_data_unregister_ram_pointer(handle);
- /* Destroy the data now */
- unsigned node;
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- struct _starpu_data_replicate *local = &handle->per_node[node];
- /* free the data copy in a lazy fashion */
- if (local->allocated && local->automatically_allocated)
- _starpu_request_mem_chunk_removal(handle, local, node, size);
- }
- unsigned worker;
- unsigned nworkers = starpu_worker_get_count();
- for (worker = 0; worker < nworkers; worker++)
- {
- struct _starpu_data_replicate *local = &handle->per_worker[worker];
- /* free the data copy in a lazy fashion */
- if (local->allocated && local->automatically_allocated)
- _starpu_request_mem_chunk_removal(handle, local, starpu_worker_get_memory_node(worker), size);
- }
- _starpu_data_free_interfaces(handle);
- _starpu_memory_stats_free(handle);
- _starpu_data_requester_list_delete(handle->req_list);
- _starpu_data_requester_list_delete(handle->reduction_req_list);
- _starpu_spin_unlock(&handle->header_lock);
- _starpu_spin_destroy(&handle->header_lock);
- STARPU_PTHREAD_MUTEX_DESTROY(&handle->busy_mutex);
- STARPU_PTHREAD_COND_DESTROY(&handle->busy_cond);
- STARPU_PTHREAD_MUTEX_DESTROY(&handle->sequential_consistency_mutex);
- _starpu_data_release_tag(handle);
- free(handle);
- }
- void starpu_data_unregister(starpu_data_handle_t handle)
- {
- STARPU_ASSERT_MSG(!handle->lazy_unregister, "data %p can not be unregistered twice", handle);
- if (handle->unregister_hook)
- {
- handle->unregister_hook(handle);
- }
- _starpu_data_unregister(handle, 1, 0);
- }
- void starpu_data_unregister_no_coherency(starpu_data_handle_t handle)
- {
- if (handle->unregister_hook)
- {
- handle->unregister_hook(handle);
- }
- _starpu_data_unregister(handle, 0, 0);
- }
- static void _starpu_data_unregister_submit_cb(void *arg)
- {
- starpu_data_handle_t handle = arg;
- _starpu_spin_lock(&handle->header_lock);
- handle->lazy_unregister = 1;
- /* The handle should be busy since we are working on it.
- * when we releases the handle below, it will be destroyed by
- * _starpu_data_check_not_busy */
- STARPU_ASSERT(handle->busy_count);
- _starpu_spin_unlock(&handle->header_lock);
- starpu_data_release_on_node(handle, -1);
- }
- void starpu_data_unregister_submit(starpu_data_handle_t handle)
- {
- STARPU_ASSERT_MSG(!handle->lazy_unregister, "data %p can not be unregistered twice", handle);
- if (handle->unregister_hook)
- {
- handle->unregister_hook(handle);
- }
- /* Wait for all task dependencies on this handle before putting it for free */
- starpu_data_acquire_on_node_cb(handle, -1, STARPU_RW, _starpu_data_unregister_submit_cb, handle);
- }
- static void _starpu_data_invalidate(void *data)
- {
- starpu_data_handle_t handle = data;
- size_t size = _starpu_data_get_size(handle);
- _starpu_spin_lock(&handle->header_lock);
- unsigned node;
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- struct _starpu_data_replicate *local = &handle->per_node[node];
- if (local->mc && local->allocated && local->automatically_allocated)
- {
- if (node == STARPU_MAIN_RAM)
- _starpu_data_unregister_ram_pointer(handle);
- /* free the data copy in a lazy fashion */
- _starpu_request_mem_chunk_removal(handle, local, node, size);
- }
- local->state = STARPU_INVALID;
- }
- unsigned worker;
- unsigned nworkers = starpu_worker_get_count();
- for (worker = 0; worker < nworkers; worker++)
- {
- struct _starpu_data_replicate *local = &handle->per_worker[worker];
- if (local->mc && local->allocated && local->automatically_allocated)
- /* free the data copy in a lazy fashion */
- _starpu_request_mem_chunk_removal(handle, local, starpu_worker_get_memory_node(worker), size);
- local->state = STARPU_INVALID;
- }
- _starpu_spin_unlock(&handle->header_lock);
- starpu_data_release_on_node(handle, -1);
- }
- void starpu_data_invalidate(starpu_data_handle_t handle)
- {
- STARPU_ASSERT(handle);
- starpu_data_acquire_on_node(handle, -1, STARPU_W);
- _starpu_data_invalidate(handle);
- }
- void starpu_data_invalidate_submit(starpu_data_handle_t handle)
- {
- STARPU_ASSERT(handle);
- starpu_data_acquire_on_node_cb(handle, -1, STARPU_W, _starpu_data_invalidate, handle);
- }
- enum starpu_data_interface_id starpu_data_get_interface_id(starpu_data_handle_t handle)
- {
- return handle->ops->interfaceid;
- }
- void *starpu_data_get_interface_on_node(starpu_data_handle_t handle, unsigned memory_node)
- {
- return handle->per_node[memory_node].data_interface;
- }
- int starpu_data_interface_get_next_id(void)
- {
- _data_interface_number += 1;
- return _data_interface_number-1;
- }
- int starpu_data_pack(starpu_data_handle_t handle, void **ptr, starpu_ssize_t *count)
- {
- STARPU_ASSERT(handle->ops->pack_data);
- return handle->ops->pack_data(handle, _starpu_memory_node_get_local_key(), ptr, count);
- }
- int starpu_data_unpack(starpu_data_handle_t handle, void *ptr, size_t count)
- {
- STARPU_ASSERT(handle->ops->unpack_data);
- int ret;
- ret = handle->ops->unpack_data(handle, _starpu_memory_node_get_local_key(), ptr, count);
- free(ptr);
- return ret;
- }
- size_t starpu_data_get_size(starpu_data_handle_t handle)
- {
- return handle->ops->get_size(handle);
- }
|