123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2010-2014 Université de Bordeaux 1
- * Copyright (C) 2010 Mehdi Juhoor <mjuhoor@gmail.com>
- * Copyright (C) 2010, 2011, 2012, 2013 Centre National de la Recherche Scientifique
- * Copyright (C) 2012 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 <datawizard/filters.h>
- #include <datawizard/footprint.h>
- #include <datawizard/interfaces/data_interface.h>
- #include <core/task.h>
- static void starpu_data_create_children(starpu_data_handle_t handle, unsigned nchildren, struct starpu_data_filter *f);
- /*
- * This function applies a data filter on all the elements of a partition
- */
- static void map_filter(starpu_data_handle_t root_handle, struct starpu_data_filter *f)
- {
- /* we need to apply the data filter on all leaf of the tree */
- if (root_handle->nchildren == 0)
- {
- /* this is a leaf */
- starpu_data_partition(root_handle, f);
- }
- else
- {
- /* try to apply the data filter recursively */
- unsigned child;
- for (child = 0; child < root_handle->nchildren; child++)
- {
- starpu_data_handle_t handle_child = starpu_data_get_child(root_handle, child);
- map_filter(handle_child, f);
- }
- }
- }
- void starpu_data_vmap_filters(starpu_data_handle_t root_handle, unsigned nfilters, va_list pa)
- {
- unsigned i;
- for (i = 0; i < nfilters; i++)
- {
- struct starpu_data_filter *next_filter;
- next_filter = va_arg(pa, struct starpu_data_filter *);
- STARPU_ASSERT(next_filter);
- map_filter(root_handle, next_filter);
- }
- }
- void starpu_data_map_filters(starpu_data_handle_t root_handle, unsigned nfilters, ...)
- {
- va_list pa;
- va_start(pa, nfilters);
- starpu_data_vmap_filters(root_handle, nfilters, pa);
- va_end(pa);
- }
- int starpu_data_get_nb_children(starpu_data_handle_t handle)
- {
- return handle->nchildren;
- }
- starpu_data_handle_t starpu_data_get_child(starpu_data_handle_t handle, unsigned i)
- {
- STARPU_ASSERT_MSG(handle->nchildren != 0, "Data %p has to be partitioned before accessing children", handle);
- STARPU_ASSERT_MSG(i < handle->nchildren, "Invalid child index %u in handle %p, maximum %u", i, handle, handle->nchildren);
- return &handle->children[i];
- }
- /*
- * example starpu_data_get_sub_data(starpu_data_handle_t root_handle, 3, 42, 0, 1);
- */
- starpu_data_handle_t starpu_data_get_sub_data(starpu_data_handle_t root_handle, unsigned depth, ... )
- {
- va_list pa;
- va_start(pa, depth);
- starpu_data_handle_t handle = starpu_data_vget_sub_data(root_handle, depth, pa);
- va_end(pa);
- return handle;
- }
- starpu_data_handle_t starpu_data_vget_sub_data(starpu_data_handle_t root_handle, unsigned depth, va_list pa )
- {
- STARPU_ASSERT(root_handle);
- starpu_data_handle_t current_handle = root_handle;
- /* the variable number of argument must correlate the depth in the tree */
- unsigned i;
- for (i = 0; i < depth; i++)
- {
- unsigned next_child;
- next_child = va_arg(pa, unsigned);
- STARPU_ASSERT_MSG(current_handle->nchildren != 0, "Data %p has to be partitioned before accessing children", current_handle);
- STARPU_ASSERT_MSG(next_child < current_handle->nchildren, "Bogus child number %u, data %p only has %u children", next_child, current_handle, current_handle->nchildren);
- current_handle = ¤t_handle->children[next_child];
- }
- return current_handle;
- }
- void starpu_data_partition(starpu_data_handle_t initial_handle, struct starpu_data_filter *f)
- {
- unsigned nparts;
- unsigned i;
- unsigned node;
- /* first take care to properly lock the data header */
- _starpu_spin_lock(&initial_handle->header_lock);
- STARPU_ASSERT_MSG(initial_handle->nchildren == 0, "there should not be mutiple filters applied on the same data %p, futher filtering has to be done on children", initial_handle);
- /* how many parts ? */
- if (f->get_nchildren)
- nparts = f->get_nchildren(f, initial_handle);
- else
- nparts = f->nchildren;
- STARPU_ASSERT_MSG(nparts > 0, "Partitioning data %p in 0 piece does not make sense", initial_handle);
- /* allocate the children */
- starpu_data_create_children(initial_handle, nparts, f);
- unsigned nworkers = starpu_worker_get_count();
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- if (initial_handle->per_node[node].state != STARPU_INVALID)
- break;
- }
- if (node == STARPU_MAXNODES)
- {
- /* This is lazy allocation, allocate it now in main RAM, so as
- * to have somewhere to gather pieces later */
- int ret = _starpu_allocate_memory_on_node(initial_handle, &initial_handle->per_node[0], 0);
- #ifdef STARPU_DEVEL
- #warning we should reclaim memory if allocation failed
- #endif
- STARPU_ASSERT(!ret);
- }
- for (i = 0; i < nparts; i++)
- {
- starpu_data_handle_t child =
- starpu_data_get_child(initial_handle, i);
- STARPU_ASSERT(child);
- child->nchildren = 0;
- child->rank = initial_handle->rank;
- child->root_handle = initial_handle->root_handle;
- child->father_handle = initial_handle;
- child->sibling_index = i;
- child->depth = initial_handle->depth + 1;
- child->is_not_important = initial_handle->is_not_important;
- child->wt_mask = initial_handle->wt_mask;
- child->home_node = initial_handle->home_node;
- child->is_readonly = initial_handle->is_readonly;
- /* initialize the chunk lock */
- child->req_list = _starpu_data_requester_list_new();
- child->reduction_req_list = _starpu_data_requester_list_new();
- child->reduction_tmp_handles = NULL;
- child->refcnt = 0;
- child->busy_count = 0;
- child->busy_waiting = 0;
- STARPU_PTHREAD_MUTEX_INIT(&child->busy_mutex, NULL);
- STARPU_PTHREAD_COND_INIT(&child->busy_cond, NULL);
- child->reduction_refcnt = 0;
- _starpu_spin_init(&child->header_lock);
- child->sequential_consistency = initial_handle->sequential_consistency;
- STARPU_PTHREAD_MUTEX_INIT(&child->sequential_consistency_mutex, NULL);
- child->last_submitted_mode = STARPU_R;
- child->last_sync_task = NULL;
- child->last_submitted_accessors.task = NULL;
- child->last_submitted_accessors.next = &child->last_submitted_accessors;
- child->last_submitted_accessors.prev = &child->last_submitted_accessors;
- child->post_sync_tasks = NULL;
- /* Tell helgrind that the race in _starpu_unlock_post_sync_tasks is fine */
- STARPU_HG_DISABLE_CHECKING(child->post_sync_tasks_cnt);
- child->post_sync_tasks_cnt = 0;
- /* The methods used for reduction are propagated to the
- * children. */
- child->redux_cl = initial_handle->redux_cl;
- child->init_cl = initial_handle->init_cl;
- #ifdef STARPU_USE_FXT
- child->last_submitted_ghost_sync_id_is_valid = 0;
- child->last_submitted_ghost_sync_id = 0;
- child->last_submitted_ghost_accessors_id = NULL;
- #endif
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- struct _starpu_data_replicate *initial_replicate;
- struct _starpu_data_replicate *child_replicate;
- initial_replicate = &initial_handle->per_node[node];
- child_replicate = &child->per_node[node];
- child_replicate->state = initial_replicate->state;
- child_replicate->allocated = initial_replicate->allocated;
- child_replicate->automatically_allocated = initial_replicate->automatically_allocated;
- child_replicate->refcnt = 0;
- child_replicate->memory_node = node;
- child_replicate->relaxed_coherency = 0;
- child_replicate->initialized = initial_replicate->initialized;
- /* update the interface */
- void *initial_interface = starpu_data_get_interface_on_node(initial_handle, node);
- void *child_interface = starpu_data_get_interface_on_node(child, node);
- f->filter_func(initial_interface, child_interface, f, i, nparts);
- }
- unsigned worker;
- for (worker = 0; worker < nworkers; worker++)
- {
- struct _starpu_data_replicate *child_replicate;
- child_replicate = &child->per_worker[worker];
- child_replicate->state = STARPU_INVALID;
- child_replicate->allocated = 0;
- child_replicate->automatically_allocated = 0;
- child_replicate->refcnt = 0;
- child_replicate->memory_node = starpu_worker_get_memory_node(worker);
- child_replicate->requested = 0;
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- child_replicate->request[node] = NULL;
- }
- child_replicate->relaxed_coherency = 1;
- child_replicate->initialized = 0;
- /* duplicate the content of the interface on node 0 */
- memcpy(child_replicate->data_interface, child->per_node[0].data_interface, child->ops->interface_size);
- }
- /* We compute the size and the footprint of the child once and
- * store it in the handle */
- child->footprint = _starpu_compute_data_footprint(child);
- void *ptr;
- ptr = starpu_data_handle_to_pointer(child, STARPU_MAIN_RAM);
- if (ptr != NULL)
- _starpu_data_register_ram_pointer(child, ptr);
- }
- /* now let the header */
- _starpu_spin_unlock(&initial_handle->header_lock);
- }
- static
- void _starpu_empty_codelet_function(void *buffers[], void *args)
- {
- (void) buffers; // unused;
- (void) args; // unused;
- }
- void starpu_data_unpartition(starpu_data_handle_t root_handle, unsigned gathering_node)
- {
- unsigned child;
- unsigned worker;
- unsigned nworkers = starpu_worker_get_count();
- unsigned node;
- unsigned sizes[root_handle->nchildren];
- _STARPU_TRACE_START_UNPARTITION(root_handle, gathering_node);
- _starpu_spin_lock(&root_handle->header_lock);
- STARPU_ASSERT_MSG(root_handle->nchildren != 0, "data %p is not partitioned, can not unpartition it", root_handle);
- /* first take all the children lock (in order !) */
- for (child = 0; child < root_handle->nchildren; child++)
- {
- starpu_data_handle_t child_handle = starpu_data_get_child(root_handle, child);
- /* make sure the intermediate children is unpartitionned as well */
- if (child_handle->nchildren > 0)
- starpu_data_unpartition(child_handle, gathering_node);
- sizes[child] = _starpu_data_get_size(child_handle);
- /* If this is a multiformat handle, we must convert the data now */
- #ifdef STARPU_DEVEL
- #warning TODO: _starpu_fetch_data_on_node should be doing it
- #endif
- if (_starpu_data_is_multiformat_handle(child_handle) &&
- starpu_node_get_kind(child_handle->mf_node) != STARPU_CPU_RAM)
- {
- struct starpu_codelet cl =
- {
- .where = STARPU_CPU,
- .cpu_funcs = { _starpu_empty_codelet_function, NULL },
- .modes = { STARPU_RW },
- .nbuffers = 1
- };
- struct starpu_task *task = starpu_task_create();
- task->name = "convert_data";
- STARPU_TASK_SET_HANDLE(task, child_handle, 0);
- task->cl = &cl;
- task->synchronous = 1;
- if (_starpu_task_submit_internally(task) != 0)
- _STARPU_ERROR("Could not submit the conversion task while unpartitionning\n");
- }
- int ret;
- /* for now we pretend that the RAM is almost unlimited and that gathering
- * data should be possible from the node that does the unpartionning ... we
- * don't want to have the programming deal with memory shortage at that time,
- * really */
- if (child_handle->current_mode == STARPU_REDUX)
- {
- /* Acquire the child data on the gathering node. This will trigger collapsing the reduction */
- ret = starpu_data_acquire_on_node(child_handle, gathering_node, STARPU_RW);
- _starpu_unlock_post_sync_tasks(child_handle);
- } else
- {
- /* Simply transfer any pending data */
- ret = _starpu_fetch_data_on_node(child_handle, &child_handle->per_node[gathering_node], STARPU_R, 0, 0, NULL, NULL);
- }
- STARPU_ASSERT(ret == 0);
- _starpu_spin_lock(&child_handle->header_lock);
- _starpu_data_unregister_ram_pointer(child_handle);
- for (worker = 0; worker < nworkers; worker++)
- {
- struct _starpu_data_replicate *local = &child_handle->per_worker[worker];
- STARPU_ASSERT(local->state == STARPU_INVALID);
- if (local->allocated && local->automatically_allocated)
- _starpu_request_mem_chunk_removal(child_handle, local, starpu_worker_get_memory_node(worker), sizes[child]);
- }
- _starpu_memory_stats_free(child_handle);
- _starpu_data_requester_list_delete(child_handle->req_list);
- _starpu_data_requester_list_delete(child_handle->reduction_req_list);
- }
- /* the gathering_node should now have a valid copy of all the children.
- * For all nodes, if the node had all copies and none was locally
- * allocated then the data is still valid there, else, it's invalidated
- * for the gathering node, if we have some locally allocated data, we
- * copy all the children (XXX this should not happen so we just do not
- * do anything since this is transparent ?) */
- unsigned still_valid[STARPU_MAXNODES];
- /* we do 2 passes : the first pass determines wether the data is still
- * valid or not, the second pass is needed to choose between STARPU_SHARED and
- * STARPU_OWNER */
- unsigned nvalids = 0;
- /* still valid ? */
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- struct _starpu_data_replicate *local;
- /* until an issue is found the data is assumed to be valid */
- unsigned isvalid = 1;
- for (child = 0; child < root_handle->nchildren; child++)
- {
- starpu_data_handle_t child_handle = starpu_data_get_child(root_handle, child);
- local = &child_handle->per_node[node];
- if (local->state == STARPU_INVALID)
- {
- /* One of the bits is missing */
- isvalid = 0;
- }
- if (local->mc && local->allocated && local->automatically_allocated)
- /* free the child data copy in a lazy fashion */
- _starpu_request_mem_chunk_removal(child_handle, local, node, sizes[child]);
- }
- local = &root_handle->per_node[node];
- if (!local->allocated)
- /* Even if we have all the bits, if we don't have the
- * whole data, it's not valid */
- isvalid = 0;
- if (!isvalid && local->mc && local->allocated && local->automatically_allocated)
- /* free the data copy in a lazy fashion */
- _starpu_request_mem_chunk_removal(root_handle, local, node, _starpu_data_get_size(root_handle));
- /* if there was no invalid copy, the node still has a valid copy */
- still_valid[node] = isvalid;
- if (isvalid)
- nvalids++;
- }
- /* either shared or owned */
- STARPU_ASSERT(nvalids > 0);
- enum _starpu_cache_state newstate = (nvalids == 1)?STARPU_OWNER:STARPU_SHARED;
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- root_handle->per_node[node].state =
- still_valid[node]?newstate:STARPU_INVALID;
- }
- for (child = 0; child < root_handle->nchildren; child++)
- {
- starpu_data_handle_t child_handle = starpu_data_get_child(root_handle, child);
- _starpu_data_free_interfaces(child_handle);
- _starpu_spin_unlock(&child_handle->header_lock);
- _starpu_spin_destroy(&child_handle->header_lock);
- STARPU_PTHREAD_MUTEX_DESTROY(&child_handle->busy_mutex);
- STARPU_PTHREAD_COND_DESTROY(&child_handle->busy_cond);
- STARPU_PTHREAD_MUTEX_DESTROY(&child_handle->sequential_consistency_mutex);
- }
- /* there is no child anymore */
- free(root_handle->children);
- root_handle->children = NULL;
- root_handle->nchildren = 0;
- /* now the parent may be used again so we release the lock */
- _starpu_spin_unlock(&root_handle->header_lock);
- _STARPU_TRACE_END_UNPARTITION(root_handle, gathering_node);
- }
- /* each child may have his own interface type */
- static void starpu_data_create_children(starpu_data_handle_t handle, unsigned nchildren, struct starpu_data_filter *f)
- {
- handle->children = (struct _starpu_data_state *) calloc(nchildren, sizeof(struct _starpu_data_state));
- STARPU_ASSERT(handle->children);
- unsigned child;
- for (child = 0; child < nchildren; child++)
- {
- starpu_data_handle_t handle_child;
- struct starpu_data_interface_ops *ops;
- /* what's this child's interface ? */
- if (f->get_child_ops)
- ops = f->get_child_ops(f, child);
- else
- ops = handle->ops;
- handle_child = &handle->children[child];
- _starpu_data_handle_init(handle_child, ops, handle->mf_node);
- }
- /* this handle now has children */
- handle->nchildren = nchildren;
- }
- /*
- * Given an integer N, NPARTS the number of parts it must be divided in, ID the
- * part currently considered, determines the CHUNK_SIZE and the OFFSET, taking
- * into account the size of the elements stored in the data structure ELEMSIZE
- * and LD, the leading dimension.
- */
- void
- _starpu_filter_nparts_compute_chunk_size_and_offset(unsigned n, unsigned nparts,
- size_t elemsize, unsigned id,
- unsigned ld, unsigned *chunk_size,
- size_t *offset)
- {
- *chunk_size = n/nparts;
- unsigned remainder = n % nparts;
- if (id < remainder)
- (*chunk_size)++;
- /*
- * Computing the total offset. The formula may not be really clear, but
- * it really just is:
- *
- * total = 0;
- * for (i = 0; i < id; i++)
- * {
- * total += n/nparts;
- * if (i < n%nparts)
- * total++;
- * }
- * offset = total * elemsize * ld;
- */
- if (offset != NULL)
- *offset = (id *(n/nparts) + STARPU_MIN(remainder, id)) * ld * elemsize;
- }
|