Arcane  v3.15.0.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
PrivateVariableScalarTpl.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/* PrivateVariableScalarTpl.cc (C) 2000-2024 */
9/* */
10/* Instanciation des classes templates communes des variables du maillage. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arcane/utils/NumericTypes.h"
15#include "arcane/core/PrivateVariableScalarT.H"
16
17/*---------------------------------------------------------------------------*/
18/*---------------------------------------------------------------------------*/
19
20namespace Arcane
21{
22
23/*---------------------------------------------------------------------------*/
24/*---------------------------------------------------------------------------*/
25
26template class PrivateVariableScalarT<Byte>;
27template class PrivateVariableScalarT<Int8>;
28template class PrivateVariableScalarT<Int16>;
29template class PrivateVariableScalarT<Int32>;
30template class PrivateVariableScalarT<Int64>;
31template class PrivateVariableScalarT<BFloat16>;
32template class PrivateVariableScalarT<Float16>;
33template class PrivateVariableScalarT<Float32>;
34template class PrivateVariableScalarT<Real>;
35template class PrivateVariableScalarT<Real2>;
36template class PrivateVariableScalarT<Real2x2>;
37template class PrivateVariableScalarT<Real3>;
38template class PrivateVariableScalarT<Real3x3>;
39
40/*---------------------------------------------------------------------------*/
41/*---------------------------------------------------------------------------*/
42
43}
44
45/*---------------------------------------------------------------------------*/
46/*---------------------------------------------------------------------------*/
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-