Arcane  v3.14.10.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-2024 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-2024 */
9/* */
10/* Gestionnaire de parallélisme utilisant MPI. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arccore/message_passing_mpi/MpiTypeDispatcherImpl.h"
15
16#include "arccore/base/BFloat16.h"
17#include "arccore/base/Float16.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arccore::MessagePassing::Mpi
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27
28template class MpiTypeDispatcher<char>;
29template class MpiTypeDispatcher<signed char>;
30template class MpiTypeDispatcher<unsigned char>;
31template class MpiTypeDispatcher<short>;
32template class MpiTypeDispatcher<unsigned short>;
33template class MpiTypeDispatcher<int>;
34template class MpiTypeDispatcher<unsigned int>;
35template class MpiTypeDispatcher<long>;
36template class MpiTypeDispatcher<unsigned long>;
37template class MpiTypeDispatcher<long long>;
38template class MpiTypeDispatcher<unsigned long long>;
39template class MpiTypeDispatcher<float>;
40template class MpiTypeDispatcher<double>;
41template class MpiTypeDispatcher<long double>;
42template class MpiTypeDispatcher<BFloat16>;
43template class MpiTypeDispatcher<Float16>;
44
45/*---------------------------------------------------------------------------*/
46/*---------------------------------------------------------------------------*/
47
48} // End namespace Arccore::MessagePassing::Mpi
49
50/*---------------------------------------------------------------------------*/
51/*---------------------------------------------------------------------------*/