| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*
- * StarPU
- * Copyright (C) INRIA 2008-2009 (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.
- */
- #ifndef __MEMORY_NODES_H__
- #define __MEMORY_NODES_H__
- #include "coherency.h"
- #include "memalloc.h"
- #ifdef USE_CUDA
- #include <cublas.h>
- #endif
- typedef enum {
- UNUSED,
- SPU_LS,
- RAM,
- CUDA_RAM
- } node_kind;
- typedef struct {
- unsigned nnodes;
- node_kind nodes[MAXNODES];
- /* the list of queues that are attached to a given node */
- // XXX 32 is set randomly !
- // TODO move this 2 lists outside mem_node_descr
- pthread_spinlock_t attached_queues_mutex;
- struct jobq_s *attached_queues_per_node[MAXNODES][32];
- struct jobq_s *attached_queues_all[MAXNODES*32];
- /* the number of queues attached to each node */
- unsigned total_queues_count;
- unsigned queues_count[MAXNODES];
- } mem_node_descr;
- struct starpu_data_state_t;
- void init_memory_nodes(void);
- void deinit_memory_nodes(void);
- void set_local_memory_node_key(unsigned *node);
- unsigned get_local_memory_node(void);
- unsigned register_memory_node(node_kind kind);
- void memory_node_attach_queue(struct jobq_s *q, unsigned nodeid);
- node_kind get_node_kind(uint32_t node);
- #endif // __MEMORY_NODES_H__
|