123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2012, 2015-2016 Université de Bordeaux
- * Copyright (C) 2010, 2011, 2012, 2013 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 <datawizard/datawizard.h>
- #include <datawizard/write_back.h>
- #include <core/dependencies/data_concurrency.h>
- static void wt_callback(void *arg)
- {
- starpu_data_handle_t handle = (starpu_data_handle_t) arg;
- _starpu_spin_lock(&handle->header_lock);
- if (!_starpu_notify_data_dependencies(handle))
- _starpu_spin_unlock(&handle->header_lock);
- }
- void _starpu_write_through_data(starpu_data_handle_t handle, unsigned requesting_node,
- uint32_t write_through_mask)
- {
- if ((write_through_mask & ~(1<<requesting_node)) == 0)
- {
- /* nothing will be done ... */
- return;
- }
- /* first commit all changes onto the nodes specified by the mask */
- unsigned node, max;
- for (node = 0, max = starpu_memory_nodes_get_count(); node < max; node++)
- {
- if (write_through_mask & (1<<node))
- {
- /* we need to commit the buffer on that node */
- if (node != requesting_node)
- {
- int cpt = 0;
- while (cpt < STARPU_SPIN_MAXTRY && _starpu_spin_trylock(&handle->header_lock))
- {
- cpt++;
- __starpu_datawizard_progress(1, 1);
- }
- if (cpt == STARPU_SPIN_MAXTRY)
- _starpu_spin_lock(&handle->header_lock);
- /* We need to keep a Read lock to avoid letting writers corrupt our copy. */
- STARPU_ASSERT(handle->current_mode != STARPU_REDUX);
- STARPU_ASSERT(handle->current_mode != STARPU_SCRATCH);
- handle->refcnt++;
- handle->busy_count++;
- handle->current_mode = STARPU_R;
- struct _starpu_data_request *r;
- r = _starpu_create_request_to_fetch_data(handle, &handle->per_node[node],
- STARPU_R, 1, 1, wt_callback, handle, 0, "_starpu_write_through_data");
- /* If no request was created, the handle was already up-to-date on the
- * node */
- if (r)
- _starpu_spin_unlock(&handle->header_lock);
- }
- }
- }
- }
- void starpu_data_set_wt_mask(starpu_data_handle_t handle, uint32_t wt_mask)
- {
- handle->wt_mask = wt_mask;
- /* in case the data has some children, set their wt_mask as well */
- if (handle->nchildren > 0)
- {
- unsigned child;
- for (child = 0; child < handle->nchildren; child++)
- {
- starpu_data_handle_t handle_child = starpu_data_get_child(handle, child);
- starpu_data_set_wt_mask(handle_child, wt_mask);
- }
- }
- }
|