Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
ComponentSimd.cc
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 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/* ComponentSimd.cc (C) 2000-2017 */
9/* */
10/* Support de la vectorisation pour les matériaux et milieux. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
15#include "arcane/materials/EnvItemVector.h"
16
17/*---------------------------------------------------------------------------*/
18/*---------------------------------------------------------------------------*/
19
20/*---------------------------------------------------------------------------*/
21/*---------------------------------------------------------------------------*/
22
23ARCANE_BEGIN_NAMESPACE
24MATERIALS_BEGIN_NAMESPACE
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29/*---------------------------------------------------------------------------*/
30/*---------------------------------------------------------------------------*/
31
32LoopFunctorEnvPartSimdCell LoopFunctorEnvPartSimdCell::
33create(const EnvCellVector& env)
34{
35 return LoopFunctorEnvPartSimdCell(env.pureItems(),env.impureItems());
36}
37
38/*---------------------------------------------------------------------------*/
39/*---------------------------------------------------------------------------*/
40
41LoopFunctorEnvPartSimdCell LoopFunctorEnvPartSimdCell::
42create(IMeshEnvironment* env)
43{
44 return LoopFunctorEnvPartSimdCell(env->pureItems(),env->impureItems());
45}
46
47/*---------------------------------------------------------------------------*/
48/*---------------------------------------------------------------------------*/
49
50MATERIALS_END_NAMESPACE
51ARCANE_END_NAMESPACE
52
53/*---------------------------------------------------------------------------*/
54/*---------------------------------------------------------------------------*/