Arcane  v3.15.0.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
MeshVariableTplArray.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/* MeshVariableTplArray.cc (C) 2000-2024 */
9/* */
10/* Instanciation des classes templates des variables tableaux du maillage. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arcane/core/MeshVariableArrayRefT.H"
15
16#include "arcane/utils/BFloat16.h"
17#include "arcane/utils/Float16.h"
18
19#include "arcane/core/MeshPartialVariableArrayRefT.H"
20#include "arcane/core/VariableFactoryRegisterer.h"
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25namespace Arcane
26{
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
30
31template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Byte>;
32template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Int16>;
33template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Int32>;
34template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Int64>;
35template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Real>;
36template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Real2>;
37template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Real3>;
38template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Real2x2>;
39template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<Real3x3>;
40
41template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Byte>;
42template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Int16>;
43template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Int32>;
44template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Int64>;
45template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Real>;
46template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Real2>;
47template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Real3>;
48template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Real2x2>;
49template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<Real3x3>;
50
51#define ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(datatype) \
52template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Node,datatype>; \
53template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Edge,datatype>; \
54template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Face,datatype>; \
55template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Cell,datatype>; \
56template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Particle,datatype>; \
57template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<DoF,datatype>; \
58template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Node,datatype>; \
59template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Edge,datatype>; \
60template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Face,datatype>; \
61template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Cell,datatype>; \
62template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Particle,datatype>; \
63template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<DoF,datatype>
64
65/*---------------------------------------------------------------------------*/
66
67ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Byte);
68ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Int8);
69ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Int16);
70ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Int32);
71ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Int64);
72ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(BFloat16);
73ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Float16);
74ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Float32);
75ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real);
76ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real2);
77ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real2x2);
78ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real3);
79ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real3x3);
80
81/*---------------------------------------------------------------------------*/
82
83/*---------------------------------------------------------------------------*/
84/*---------------------------------------------------------------------------*/
85
86}
87
88/*---------------------------------------------------------------------------*/
89/*---------------------------------------------------------------------------*/
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Arccore::Float16 Float16
Type 'Float16' (binary16)
Arccore::Int8 Int8
Type représentant un entier sur 8 bits.
Arccore::BFloat16 BFloat16
Type 'Brain Float16'.
float Float32
Type flottant IEEE-753 simple précision (binary32)
unsigned char Byte
Type d'un octet.
Definition UtilsTypes.h:148