| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 | /* StarPU --- Runtime system for heterogeneous multicore architectures. * * Copyright (C) 2015-2017                                CNRS * Copyright (C) 2015,2017,2018                           Université de Bordeaux * * 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. *//* * This example splits the whole set of communicators in subgroups, * all communications take place within each subgroups */#include <starpu_mpi.h>#include "../helper.h"#define DATA0_TAG 12#define DATA1_TAG 22void func_cpu(void *descr[], void *_args){	int *value = (int *)STARPU_VARIABLE_GET_PTR(descr[0]);	int rank;	starpu_codelet_unpack_args(_args, &rank);	FPRINTF_MPI(stderr, "Executing codelet with value %d and rank %d\n", *value, rank);	STARPU_ASSERT_MSG(*value == rank, "Received value %d is not the expected value %d\n", *value, rank);}struct starpu_codelet mycodelet ={	.cpu_funcs = {func_cpu},	.nbuffers = 1,	.modes = {STARPU_RW},	.model = &starpu_perfmodel_nop,};int main(int argc, char **argv){	int size, x=789;	int color;	MPI_Comm newcomm;	int rank, newrank;	int ret;	starpu_data_handle_t data[2];	int thread_support;	if (MPI_Init_thread(&argc, &argv, MPI_THREAD_SERIALIZED, &thread_support) != MPI_SUCCESS)	{		fprintf(stderr,"MPI_Init_thread failed\n");		exit(1);	}	if (thread_support == MPI_THREAD_FUNNELED)		fprintf(stderr,"Warning: MPI only has funneled thread support, not serialized, hoping this will work\n");	if (thread_support < MPI_THREAD_FUNNELED)		fprintf(stderr,"Warning: MPI does not have thread support!\n");        MPI_Comm_rank(MPI_COMM_WORLD, &rank);        MPI_Comm_size(MPI_COMM_WORLD, &size);        if (size < 4)        {		FPRINTF(stderr, "We need at least 4 processes.\n");                MPI_Finalize();                return STARPU_TEST_SKIPPED;        }	color = rank%2;	MPI_Comm_split(MPI_COMM_WORLD, color, rank, &newcomm);	MPI_Comm_rank(newcomm, &newrank);	FPRINTF(stderr, "[%d][%d] color %d\n", rank, newrank, color);	if (newrank == 0)	{		FPRINTF(stderr, "[%d][%d] sending %d\n", rank, newrank, rank);		MPI_Send(&rank, 1, MPI_INT, 1, 10, newcomm);	}	else if (newrank == 1)	{		MPI_Recv(&x, 1, MPI_INT, 0, 10, newcomm, MPI_STATUS_IGNORE);		FPRINTF(stderr, "[%d][%d] received %d\n", rank, newrank, x);	}        ret = starpu_mpi_init_conf(NULL, NULL, 0, newcomm, NULL);        STARPU_CHECK_RETURN_VALUE(ret, "starpu_mpi_init_conf");	if (newrank == 0)	{		starpu_variable_data_register(&data[0], STARPU_MAIN_RAM, (uintptr_t)&rank, sizeof(int));		starpu_variable_data_register(&data[1], STARPU_MAIN_RAM, (uintptr_t)&rank, sizeof(int));		starpu_mpi_data_register_comm(data[1], DATA1_TAG, 0, newcomm);	}	else		starpu_variable_data_register(&data[0], -1, (uintptr_t)NULL, sizeof(int));	starpu_mpi_data_register_comm(data[0], DATA0_TAG, 0, newcomm);	if (newrank == 0)	{		starpu_mpi_req req[2];		starpu_mpi_issend(data[1], &req[0], 1, DATA1_TAG, newcomm);		starpu_mpi_isend(data[0], &req[1], 1, DATA0_TAG, newcomm);		starpu_mpi_wait(&req[0], MPI_STATUS_IGNORE);		starpu_mpi_wait(&req[1], MPI_STATUS_IGNORE);	}	else if (newrank == 1)	{		int *xx;		starpu_mpi_recv(data[0], 0, DATA0_TAG, newcomm, MPI_STATUS_IGNORE);		starpu_data_acquire(data[0], STARPU_RW);		xx = (int *)starpu_variable_get_local_ptr(data[0]);		starpu_data_release(data[0]);		FPRINTF(stderr, "[%d][%d] received %d\n", rank, newrank, *xx);		STARPU_ASSERT_MSG(x==*xx, "Received value %d is incorrect (should be %d)\n", *xx, x);		starpu_variable_data_register(&data[1], -1, (uintptr_t)NULL, sizeof(int));		starpu_mpi_data_register_comm(data[1], DATA1_TAG, 0, newcomm);		starpu_mpi_recv(data[0], 0, DATA1_TAG, newcomm, MPI_STATUS_IGNORE);		starpu_data_acquire(data[0], STARPU_RW);		xx = (int *)starpu_variable_get_local_ptr(data[0]);		starpu_data_release(data[0]);		FPRINTF(stderr, "[%d][%d] received %d\n", rank, newrank, *xx);		STARPU_ASSERT_MSG(x==*xx, "Received value %d is incorrect (should be %d)\n", *xx, x);	}	if (newrank == 0 || newrank == 1)	{		starpu_mpi_task_insert(newcomm, &mycodelet,				       STARPU_RW, data[0],				       STARPU_VALUE, &x, sizeof(x),				       STARPU_EXECUTE_ON_NODE, 1,				       0);		starpu_task_wait_for_all();		starpu_data_unregister(data[0]);		starpu_data_unregister(data[1]);	}	starpu_mpi_shutdown();	MPI_Comm_free(&newcomm);        MPI_Finalize();	return 0;}
 |