123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /*
- * StarPU
- * Copyright (C) Université Bordeaux 1, CNRS 2008-2010 (see AUTHORS file)
- *
- * This program 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.
- *
- * This program 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 <pthread.h>
- #include <common/config.h>
- #include <core/policies/sched_policy.h>
- #include <datawizard/datastats.h>
- #include <common/fxt.h>
- #include "copy_driver.h"
- #include "memalloc.h"
- static starpu_mem_node_descr descr;
- static pthread_key_t memory_node_key;
- void _starpu_init_memory_nodes(void)
- {
- /* there is no node yet, subsequent nodes will be
- * added using _starpu_register_memory_node */
- descr.nnodes = 0;
- pthread_key_create(&memory_node_key, NULL);
- unsigned i;
- for (i = 0; i < STARPU_MAXNODES; i++)
- descr.nodes[i] = STARPU_UNUSED;
- _starpu_init_mem_chunk_lists();
- _starpu_init_data_request_lists();
- pthread_rwlock_init(&descr.conditions_rwlock, NULL);
- descr.total_condition_count = 0;
- }
- void _starpu_deinit_memory_nodes(void)
- {
- _starpu_deinit_data_request_lists();
- _starpu_deinit_mem_chunk_lists();
- pthread_key_delete(memory_node_key);
- }
- void _starpu_set_local_memory_node_key(unsigned *node)
- {
- pthread_setspecific(memory_node_key, node);
- }
- unsigned _starpu_get_local_memory_node(void)
- {
- unsigned *memory_node;
- memory_node = pthread_getspecific(memory_node_key);
-
- /* in case this is called by the programmer, we assume the RAM node
- is the appropriate memory node ... so we return 0 XXX */
- if (STARPU_UNLIKELY(!memory_node))
- return 0;
- return *memory_node;
- }
- inline starpu_mem_node_descr *_starpu_get_memory_node_description(void)
- {
- return &descr;
- }
- inline starpu_node_kind _starpu_get_node_kind(uint32_t node)
- {
- return descr.nodes[node];
- }
- unsigned _starpu_get_memory_nodes_count(void)
- {
- return descr.nnodes;
- }
- unsigned _starpu_register_memory_node(starpu_node_kind kind)
- {
- unsigned nnodes;
- /* ATOMIC_ADD returns the new value ... */
- nnodes = STARPU_ATOMIC_ADD(&descr.nnodes, 1);
- descr.nodes[nnodes-1] = kind;
- STARPU_TRACE_NEW_MEM_NODE(nnodes-1);
- /* for now, there is no condition associated to that newly created node */
- descr.condition_count[nnodes-1] = 0;
- return (nnodes-1);
- }
- /* TODO move in a more appropriate file !! */
- /* Register a condition variable associated to worker which is associated to a
- * memory node itself. */
- void _starpu_memory_node_register_condition(pthread_cond_t *cond, pthread_mutex_t *mutex, unsigned nodeid)
- {
- unsigned cond_id;
- unsigned nconds_total, nconds;
-
- pthread_rwlock_wrlock(&descr.conditions_rwlock);
- /* we only insert the queue if it's not already in the list */
- nconds = descr.condition_count[nodeid];
- for (cond_id = 0; cond_id < nconds; cond_id++)
- {
- if (descr.conditions_attached_to_node[nodeid][cond_id].cond == cond)
- {
- STARPU_ASSERT(descr.conditions_attached_to_node[nodeid][cond_id].mutex == mutex);
- /* the condition is already in the list */
- pthread_rwlock_unlock(&descr.conditions_rwlock);
- return;
- }
- }
- /* it was not found locally */
- descr.conditions_attached_to_node[nodeid][cond_id].cond = cond;
- descr.conditions_attached_to_node[nodeid][cond_id].mutex = mutex;
- descr.condition_count[nodeid]++;
- /* do we have to add it in the global list as well ? */
- nconds_total = descr.total_condition_count;
- for (cond_id = 0; cond_id < nconds_total; cond_id++)
- {
- if (descr.conditions_all[cond_id].cond == cond)
- {
- /* the queue is already in the global list */
- pthread_rwlock_unlock(&descr.conditions_rwlock);
- return;
- }
- }
- /* it was not in the global list either */
- descr.conditions_all[nconds_total].cond = cond;
- descr.conditions_all[nconds_total].mutex = mutex;
- descr.total_condition_count++;
- pthread_rwlock_unlock(&descr.conditions_rwlock);
- }
- unsigned starpu_worker_get_memory_node(unsigned workerid)
- {
- struct starpu_worker_s *worker = _starpu_get_worker_struct(workerid);
- return worker->memory_node;
- }
|