123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009, 2010 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.
- */
- #ifndef __DATA_REQUEST_H__
- #define __DATA_REQUEST_H__
- #include <semaphore.h>
- #include <datawizard/coherency.h>
- #include <datawizard/copy_driver.h>
- #include <common/list.h>
- #include <common/starpu_spinlock.h>
- struct starpu_data_replicate_s;
- struct callback_list {
- void (*callback_func)(void *);
- void *callback_arg;
- struct callback_list *next;
- };
- LIST_TYPE(starpu_data_request,
- struct _starpu_spinlock lock;
- unsigned refcnt;
- starpu_data_handle handle;
- struct starpu_data_replicate_s *src_replicate;
- struct starpu_data_replicate_s *dst_replicate;
- uint32_t handling_node;
- starpu_access_mode mode;
- struct starpu_async_channel async_channel;
- unsigned completed;
- unsigned prefetch;
- int retval;
- /* The request will not actually be submitted until there remains
- * dependencies. */
- unsigned ndeps;
- /* in case we have a chain of request (eg. for nvidia multi-GPU) */
- struct starpu_data_request_s *next_req[STARPU_MAXNODES];
- /* who should perform the next request ? */
- unsigned next_req_count;
- struct callback_list *callbacks;
- #ifdef STARPU_USE_FXT
- unsigned com_id;
- #endif
- )
- /* Everyone that wants to access some piece of data will post a request.
- * Not only StarPU internals, but also the application may put such requests */
- LIST_TYPE(starpu_data_requester,
- /* what kind of access is requested ? */
- starpu_access_mode mode;
- /* applications may also directly manipulate data */
- unsigned is_requested_by_codelet;
- /* in case this is a codelet that will do the access */
- struct starpu_job_s *j;
- unsigned buffer_index;
- /* if this is more complicated ... (eg. application request)
- * NB: this callback is not called with the lock taken !
- */
- void (*ready_data_callback)(void *argcb);
- void *argcb;
- )
- void _starpu_init_data_request_lists(void);
- void _starpu_deinit_data_request_lists(void);
- void _starpu_post_data_request(starpu_data_request_t r, uint32_t handling_node);
- void _starpu_handle_node_data_requests(uint32_t src_node, unsigned may_alloc);
- void _starpu_handle_node_prefetch_requests(uint32_t src_node, unsigned may_alloc);
- void _starpu_handle_pending_node_data_requests(uint32_t src_node);
- void _starpu_handle_all_pending_node_data_requests(uint32_t src_node);
- int _starpu_check_that_no_data_request_exists(uint32_t node);
- starpu_data_request_t _starpu_create_data_request(starpu_data_handle handle,
- struct starpu_data_replicate_s *src_replicate,
- struct starpu_data_replicate_s *dst_replicate,
- uint32_t handling_node,
- starpu_access_mode mode,
- unsigned ndeps,
- unsigned is_prefetch);
- int _starpu_wait_data_request_completion(starpu_data_request_t r, unsigned may_alloc);
- void _starpu_data_request_append_callback(starpu_data_request_t r,
- void (*callback_func)(void *), void *callback_arg);
- void _starpu_update_prefetch_status(starpu_data_request_t r);
- #endif // __DATA_REQUEST_H__
|