14#include "arcane/parallel/mpi/ArcaneMpi.h"
16#include "arcane/utils/String.h"
17#include "arcane/impl/ArcaneMain.h"
18#include "arcane/ApplicationBuildInfo.h"
26#if __has_include(<mpi-ext.h>)
39extern "C++" ARCANE_MPI_EXPORT
bool
42 bool is_aware =
false;
45#if defined(ARCANE_OS_LINUX)
46#if defined(MPIX_CUDA_AWARE_SUPPORT) || defined(MPIX_GPU_SUPPORT_CUDA)
47 is_aware = (MPIX_Query_cuda_support()==1);
53extern "C++" ARCANE_MPI_EXPORT
bool
56 bool is_aware =
false;
61#if defined(ARCANE_OS_LINUX)
62#if defined(MPIX_GPU_SUPPORT_HIP)
64# if defined(CRAY_MPICH_VERSION)
66 MPIX_GPU_query_support(MPIX_GPU_SUPPORT_HIP,&is_supported);
67 is_aware = (is_supported!=0);
69 is_aware = (MPIX_Query_hip_support()==1);
74#if defined(MPIX_ROCM_AWARE_SUPPORT)
75 is_aware = (MPIX_Query_rocm_support()==1);
81extern "C++" ARCANE_MPI_EXPORT
bool
97 MpiAutoInit() : m_need_finalize(
false) {}
99 void initialize(
int* argc,
char*** argv,
int wanted_thread_level)
102 MPI_Initialized(&is_init);
107 int thread_provided = 0;
108 MPI_Init_thread(argc, argv, wanted_thread_level, &thread_provided);
109 m_need_finalize =
true;
114 if (m_need_finalize){
116 m_need_finalize =
false;
120 bool m_need_finalize;
151 bool has_shared_memory_message_passing = app_build_info.nbSharedMemorySubDomain()>0;
157 int thread_wanted = MPI_THREAD_SERIALIZED;
158 if (has_shared_memory_message_passing)
159 thread_wanted = MPI_THREAD_MULTIPLE;
163 char*** argv =
nullptr;
167 MPI_Comm_size(MPI_COMM_WORLD,&comm_size);
169 String message_passing_service =
"Sequential";
171 if (has_shared_memory_message_passing)
172 message_passing_service =
"Hybrid";
174 message_passing_service =
"Mpi";
177 if (has_shared_memory_message_passing)
178 message_passing_service =
"MpiSharedMemory";
180 message_passing_service =
"MpiSequential";
182 message_passing_service = message_passing_service +
"ParallelSuperMng";
194bool global_already_added =
false;
200extern "C" ARCANE_MPI_EXPORT
void
203 if (!global_already_added)
205 global_already_added =
true;
208extern "C++" ARCANE_MPI_EXPORT
void
211 global_mpi_auto_init.initialize(argc,argv,wanted_thread_level);
214extern "C++" ARCANE_MPI_EXPORT
void
217 global_mpi_auto_init.finalize();
Informations pour construire une instance de IApplication.
void internalSetDefaultMessagePassingService(const String &name)
Nom du gestionnaire de message par défaut. Ne doit être modifié que par Arcane.
static void addApplicationBuildInfoVisitor(IApplicationBuildInfoVisitor *visitor)
Ajoute un visiteur pour remplir ApplicationBuildInfo.
void visit(ApplicationBuildInfo &app_build_info) override
Remplit les valeurs par défaut pour les services d'échange de message.
Classe singleton pour appeler automatiquement MPI_Init et MPI_Finalize si besoin. On appelle MPI_Fina...
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
ARCANE_MPI_EXPORT void arcaneInitializeMPI(int *argc, char ***argv, int wanted_thread_level)
ARCANE_MPI_EXPORT bool arcaneIsAcceleratorAwareMPI()
Indique si le runtime actuel de MPI a le support des accélérateurs.
ARCANE_MPI_EXPORT bool arcaneIsCudaAwareMPI()
Indique si le runtime actuel de MPI a le support de CUDA.
ARCANE_MPI_EXPORT void arcaneAutoDetectMessagePassingServiceMPI()
Mécanisme pour initialiser automatiquement MPI et les services d'échange de messages de Arcane en fon...
ARCANE_MPI_EXPORT void arcaneFinalizeMPI()