123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009-2011 Université de Bordeaux 1
- * Copyright (C) 2010, 2011 Centre National de la Recherche Scientifique
- *
- * 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 handle = (starpu_data_handle) arg;
- _starpu_spin_lock(&handle->header_lock);
- _starpu_notify_data_dependencies(handle);
- _starpu_spin_unlock(&handle->header_lock);
- }
- void _starpu_write_through_data(starpu_data_handle handle, uint32_t 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 */
- uint32_t node;
- for (node = 0; node < STARPU_MAXNODES; node++)
- {
- if (write_through_mask & (1<<node)) {
- /* we need to commit the buffer on that node */
- if (node != requesting_node)
- {
- while (_starpu_spin_trylock(&handle->header_lock))
- _starpu_datawizard_progress(requesting_node, 1);
- starpu_data_request_t r;
- r = create_request_to_fetch_data(handle, &handle->per_node[node],
- STARPU_R, 1, wt_callback, handle);
- /* If no request was created, the handle was already up-to-date on the
- * node */
- if (r)
- {
- /* Pending request, keep a Read lock */
- STARPU_ASSERT(handle->current_mode != STARPU_REDUX);
- STARPU_ASSERT(handle->current_mode != STARPU_SCRATCH);
- handle->refcnt++;
- handle->current_mode = STARPU_R;
- _starpu_spin_unlock(&handle->header_lock);
- }
- }
- }
- }
- }
- void starpu_data_set_wt_mask(starpu_data_handle 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_set_wt_mask(&handle->children[child], wt_mask);
- }
- }
|