StarPU Internal Handbook
Loading...
Searching...
No Matches
starpu_mpi_early_data.h
Go to the documentation of this file.
1/* StarPU --- Runtime system for heterogeneous multicore architectures.
2 *
3 * Copyright (C) 2009-2021 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
4 *
5 * StarPU is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published by
7 * the Free Software Foundation; either version 2.1 of the License, or (at
8 * your option) any later version.
9 *
10 * StarPU is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 * See the GNU Lesser General Public License in COPYING.LGPL for more details.
15 */
16
17#ifndef __STARPU_MPI_EARLY_DATA_H__
18#define __STARPU_MPI_EARLY_DATA_H__
19
20#include <starpu.h>
21#include <stdlib.h>
22#include <mpi.h>
23#include <common/config.h>
24#include <common/list.h>
25#include <common/uthash.h>
26#include <starpu_mpi_private.h>
27
30#ifdef STARPU_USE_MPI_MPI
31
32#ifdef __cplusplus
33extern "C"
34{
35#endif
36
38 starpu_data_handle_t handle;
39 struct _starpu_mpi_req *req;
40 void *buffer;
41 size_t size;
42 unsigned buffer_node;
43 struct _starpu_mpi_node_tag node_tag;
44 starpu_pthread_mutex_t req_mutex;
45 starpu_pthread_cond_t req_cond;
46);
47
49{
50 struct _starpu_mpi_early_data_handle_list list;
52 starpu_mpi_tag_t data_tag;
53};
54
56
57void _starpu_mpi_early_data_init(void);
58void _starpu_mpi_early_data_check_termination(void);
59void _starpu_mpi_early_data_shutdown(void);
60
61struct _starpu_mpi_early_data_handle *_starpu_mpi_early_data_create(struct _starpu_mpi_envelope *envelope, int source, MPI_Comm comm) STARPU_ATTRIBUTE_MALLOC;
62struct _starpu_mpi_early_data_handle *_starpu_mpi_early_data_find(struct _starpu_mpi_node_tag *node_tag);
63void _starpu_mpi_early_data_add(struct _starpu_mpi_early_data_handle *early_data_handle);
64void _starpu_mpi_early_data_delete(struct _starpu_mpi_early_data_handle *early_data_handle);
65
66// Not used now but needed for fault tolerance
67struct _starpu_mpi_early_data_handle_tag_hashlist *_starpu_mpi_early_data_extract(struct _starpu_mpi_node_tag *node_tag);
68
69#ifdef __cplusplus
70}
71#endif
72
73#endif /* STARPU_USE_MPI_MPI */
74#endif /* __STARPU_MPI_EARLY_DATA_H__ */
Definition starpu_mpi_early_data.h:37
Definition starpu_mpi_early_data.h:49
Definition starpu_mpi_mpi_backend.h:51
Definition starpu_mpi_private.h:187
Definition starpu_mpi_private.h:241
Definition uthash.h:1017