123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- /* StarPU --- Runtime system for heterogeneous multicore architectures.
- *
- * Copyright (C) 2009, 2010-2016 Université de Bordeaux
- * Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 CNRS
- * Copyright (C) 2016 Inria
- *
- * 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.
- */
- #include <stdlib.h>
- #include <starpu_mpi.h>
- #include <starpu_mpi_datatype.h>
- #include <starpu_mpi_private.h>
- #include <starpu_mpi_cache.h>
- #include <starpu_profiling.h>
- #include <starpu_mpi_stats.h>
- #include <starpu_mpi_cache.h>
- #include <starpu_mpi_sync_data.h>
- #include <starpu_mpi_early_data.h>
- #include <starpu_mpi_early_request.h>
- #include <starpu_mpi_select_node.h>
- #include <starpu_mpi_tag.h>
- #include <starpu_mpi_comm.h>
- #include <common/config.h>
- #include <common/thread.h>
- #include <datawizard/interfaces/data_interface.h>
- #include <datawizard/coherency.h>
- #include <core/simgrid.h>
- #include <core/task.h>
- #ifdef STARPU_SIMGRID
- static int _mpi_world_size;
- static int _mpi_world_rank;
- #endif
- static void _starpu_mpi_print_thread_level_support(int thread_level, char *msg)
- {
- switch (thread_level)
- {
- case MPI_THREAD_SERIALIZED:
- {
- _STARPU_DISP("MPI%s MPI_THREAD_SERIALIZED; Multiple threads may make MPI calls, but only one at a time.\n", msg);
- break;
- }
- case MPI_THREAD_FUNNELED:
- {
- _STARPU_DISP("MPI%s MPI_THREAD_FUNNELED; The application can safely make calls to StarPU-MPI functions, but should not call directly MPI communication functions.\n", msg);
- break;
- }
- case MPI_THREAD_SINGLE:
- {
- _STARPU_DISP("MPI%s MPI_THREAD_SINGLE; MPI does not have multi-thread support, this might cause problems. The application can make calls to StarPU-MPI functions, but not call directly MPI Communication functions.\n", msg);
- break;
- }
- }
- }
- void _starpu_mpi_do_initialize(struct _starpu_mpi_argc_argv *argc_argv)
- {
- if (argc_argv->initialize_mpi)
- {
- int thread_support;
- _STARPU_DEBUG("Calling MPI_Init_thread\n");
- if (MPI_Init_thread(argc_argv->argc, argc_argv->argv, MPI_THREAD_SERIALIZED, &thread_support) != MPI_SUCCESS)
- {
- _STARPU_ERROR("MPI_Init_thread failed\n");
- }
- _starpu_mpi_print_thread_level_support(thread_support, "_Init_thread level =");
- }
- else
- {
- int provided;
- MPI_Query_thread(&provided);
- _starpu_mpi_print_thread_level_support(provided, " has been initialized with");
- }
- MPI_Comm_rank(argc_argv->comm, &argc_argv->rank);
- MPI_Comm_size(argc_argv->comm, &argc_argv->world_size);
- MPI_Comm_set_errhandler(argc_argv->comm, MPI_ERRORS_RETURN);
- #ifdef STARPU_SIMGRID
- _mpi_world_size = argc_argv->world_size;
- _mpi_world_rank = argc_argv->rank;
- #endif
- }
- static
- int _starpu_mpi_initialize(int *argc, char ***argv, int initialize_mpi, MPI_Comm comm)
- {
- struct _starpu_mpi_argc_argv *argc_argv;
- _STARPU_MALLOC(argc_argv, sizeof(struct _starpu_mpi_argc_argv));
- argc_argv->initialize_mpi = initialize_mpi;
- argc_argv->argc = argc;
- argc_argv->argv = argv;
- argc_argv->comm = comm;
- #ifdef STARPU_SIMGRID
- /* Call MPI_Init_thread as early as possible, to initialize simgrid
- * before working with mutexes etc. */
- _starpu_mpi_do_initialize(argc_argv);
- #endif
- return _starpu_mpi_progress_init(argc_argv);
- }
- #ifdef STARPU_SIMGRID
- /* This is called before application's main, to initialize SMPI before we can
- * create MSG processes to run application's main */
- int _starpu_mpi_simgrid_init(int argc, char *argv[])
- {
- return _starpu_mpi_initialize(&argc, &argv, 1, MPI_COMM_WORLD);
- }
- #endif
- int starpu_mpi_init_comm(int *argc STARPU_ATTRIBUTE_UNUSED, char ***argv STARPU_ATTRIBUTE_UNUSED, int initialize_mpi STARPU_ATTRIBUTE_UNUSED, MPI_Comm comm STARPU_ATTRIBUTE_UNUSED)
- {
- #ifdef STARPU_SIMGRID
- _starpu_mpi_wait_for_initialization();
- return 0;
- #else
- return _starpu_mpi_initialize(argc, argv, initialize_mpi, comm);
- #endif
- }
- int starpu_mpi_init(int *argc, char ***argv, int initialize_mpi)
- {
- return starpu_mpi_init_comm(argc, argv, initialize_mpi, MPI_COMM_WORLD);
- }
- int starpu_mpi_initialize(void)
- {
- #ifdef STARPU_SIMGRID
- return 0;
- #else
- return _starpu_mpi_initialize(NULL, NULL, 0, MPI_COMM_WORLD);
- #endif
- }
- int starpu_mpi_initialize_extended(int *rank, int *world_size)
- {
- #ifdef STARPU_SIMGRID
- *world_size = _mpi_world_size;
- *rank = _mpi_world_rank;
- return 0;
- #else
- int ret;
- ret = _starpu_mpi_initialize(NULL, NULL, 1, MPI_COMM_WORLD);
- if (ret == 0)
- {
- _STARPU_DEBUG("Calling MPI_Comm_rank\n");
- MPI_Comm_rank(MPI_COMM_WORLD, rank);
- MPI_Comm_size(MPI_COMM_WORLD, world_size);
- }
- return ret;
- #endif
- }
- int starpu_mpi_shutdown(void)
- {
- int value;
- int rank, world_size;
- /* We need to get the rank before calling MPI_Finalize to pass to _starpu_mpi_comm_amounts_display() */
- starpu_mpi_comm_rank(MPI_COMM_WORLD, &rank);
- starpu_mpi_comm_size(MPI_COMM_WORLD, &world_size);
- /* kill the progression thread */
- _starpu_mpi_progress_shutdown(&value);
- _STARPU_MPI_TRACE_STOP(rank, world_size);
- _starpu_mpi_comm_amounts_display(stderr, rank);
- _starpu_mpi_comm_amounts_shutdown();
- _starpu_mpi_cache_shutdown(world_size);
- _starpu_mpi_tag_shutdown();
- _starpu_mpi_comm_shutdown();
- return 0;
- }
- int starpu_mpi_comm_size(MPI_Comm comm, int *size)
- {
- if (_starpu_mpi_fake_world_size != -1)
- {
- *size = _starpu_mpi_fake_world_size;
- return 0;
- }
- #ifdef STARPU_SIMGRID
- STARPU_MPI_ASSERT_MSG(comm == MPI_COMM_WORLD, "StarPU-SMPI only works with MPI_COMM_WORLD for now");
- *size = _mpi_world_size;
- return 0;
- #else
- return MPI_Comm_size(comm, size);
- #endif
- }
- int starpu_mpi_comm_rank(MPI_Comm comm, int *rank)
- {
- if (_starpu_mpi_fake_world_rank != -1)
- {
- *rank = _starpu_mpi_fake_world_rank;
- return 0;
- }
- #ifdef STARPU_SIMGRID
- STARPU_MPI_ASSERT_MSG(comm == MPI_COMM_WORLD, "StarPU-SMPI only works with MPI_COMM_WORLD for now");
- *rank = _mpi_world_rank;
- return 0;
- #else
- return MPI_Comm_rank(comm, rank);
- #endif
- }
- int starpu_mpi_world_size(void)
- {
- int size;
- starpu_mpi_comm_size(MPI_COMM_WORLD, &size);
- return size;
- }
- int starpu_mpi_world_rank(void)
- {
- int rank;
- starpu_mpi_comm_rank(MPI_COMM_WORLD, &rank);
- return rank;
- }
|