Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
MpiTypeDispatcher.cc
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2025 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* MpiTypeDispatcher.cc (C) 2000-2025 */
9/* */
10/* Gestionnaire de parallélisme utilisant MPI. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arccore/message_passing_mpi/internal/MpiTypeDispatcherImpl.h"
15
16#include "arccore/base/BFloat16.h"
17#include "arccore/base/Float16.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane::MessagePassing::Mpi
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27
28template class MpiTypeDispatcher<char>;
31template class MpiTypeDispatcher<short>;
33template class MpiTypeDispatcher<int>;
35template class MpiTypeDispatcher<long>;
37template class MpiTypeDispatcher<long long>;
39template class MpiTypeDispatcher<float>;
40template class MpiTypeDispatcher<double>;
42template class MpiTypeDispatcher<BFloat16>;
43template class MpiTypeDispatcher<Float16>;
44
45/*---------------------------------------------------------------------------*/
46/*---------------------------------------------------------------------------*/
47
48} // End namespace Arccore::MessagePassing::Mpi
49
50/*---------------------------------------------------------------------------*/
51/*---------------------------------------------------------------------------*/