Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
arcane/src/arcane/utils/ArrayView.h
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/* ArrayView.h (C) 2000-2025 */
9/* */
10/* Types définissant les vues de tableaux C. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_UTILS_ARRAYVIEW_H
13#define ARCANE_UTILS_ARRAYVIEW_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arccore/base/ArrayView.h"
18#include "arccore/base/Span.h"
19
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25namespace Arcane
26{
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
48extern ARCANE_UTILS_EXPORT void
49applySimdPadding(ArrayView<Int32> ids);
50
51extern ARCANE_UTILS_EXPORT void
52applySimdPadding(ArrayView<Int16> ids);
53
54extern ARCANE_UTILS_EXPORT void
55applySimdPadding(ArrayView<Int64> ids);
56
57extern ARCANE_UTILS_EXPORT void
58applySimdPadding(ArrayView<Real> ids);
60
61/*---------------------------------------------------------------------------*/
62/*---------------------------------------------------------------------------*/
63
64} // End namespace Arcane
65
66/*---------------------------------------------------------------------------*/
67/*---------------------------------------------------------------------------*/
68
69#endif
Déclarations des types utilisés dans Arcane.
Vue modifiable d'un tableau d'un type T.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-