Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
MatConcurrency.h
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/* MatConcurrency.h (C) 2000-2021 */
9/* */
10/* Classes gérant la concurrence pour les matériaux. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_MATERIALS_MATCONCURRENCY_H
13#define ARCANE_MATERIALS_MATCONCURRENCY_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18#include "arcane/utils/RangeFunctor.h"
19#include "arcane/utils/FatalErrorException.h"
20
21#include "arcane/Concurrency.h"
22
23#include "arcane/materials/MatItemEnumerator.h"
24#include "arcane/materials/ComponentItemVectorView.h"
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29namespace Arcane::Materials
30{
31
32/*---------------------------------------------------------------------------*/
33/*---------------------------------------------------------------------------*/
40template<typename ViewType,typename LambdaType>
41class LambdaMatItemRangeFunctorT
42: public IRangeFunctor
43{
44 public:
45 LambdaMatItemRangeFunctorT(ViewType items_view,const LambdaType& lambda_function)
46 : m_items(items_view), m_lambda_function(lambda_function)
47 {
48 }
49
50 public:
51
52 virtual void executeFunctor(Integer begin,Integer size)
53 {
54 ViewType sub_view(m_items._subView(begin,size));
55 m_lambda_function(sub_view);
56 }
57
58 private:
59 ViewType m_items;
60 const LambdaType& m_lambda_function;
61};
62
63/*---------------------------------------------------------------------------*/
64/*---------------------------------------------------------------------------*/
65
66} // End namespace Arcane::Materials
67
68/*---------------------------------------------------------------------------*/
69/*---------------------------------------------------------------------------*/
70
71namespace Arcane
72{
73 using namespace Materials;
79 template<typename LambdaType> inline void
80 arcaneParallelForeach(const ComponentItemVectorView& items_view,const LambdaType& lambda_function)
81 {
83 TaskFactory::executeParallelFor(0,items_view.nbItem(),&ipf);
84 }
85
91 template<typename LambdaType> inline void
93 const LambdaType& lambda_function)
94 {
96 TaskFactory::executeParallelFor(0,items_view.nbItem(),options,&ipf);
97 }
98
104 template<typename LambdaType> inline void
105 arcaneParallelForeach(const EnvItemVectorView& items_view,const LambdaType& lambda_function)
106 {
107 LambdaMatItemRangeFunctorT<EnvItemVectorView,LambdaType> ipf(items_view,lambda_function);
108 TaskFactory::executeParallelFor(0,items_view.nbItem(),&ipf);
109 }
110
116 template<typename LambdaType> inline void
118 const LambdaType& lambda_function)
119 {
120 LambdaMatItemRangeFunctorT<EnvItemVectorView,LambdaType> ipf(items_view,lambda_function);
121 TaskFactory::executeParallelFor(0,items_view.nbItem(),options,&ipf);
122 }
123
129 template<typename LambdaType> inline void
130 arcaneParallelForeach(const MatItemVectorView& items_view,const LambdaType& lambda_function)
131 {
132 LambdaMatItemRangeFunctorT<MatItemVectorView,LambdaType> ipf(items_view,lambda_function);
133 TaskFactory::executeParallelFor(0,items_view.nbItem(),&ipf);
134 }
135
141 template<typename LambdaType> inline void
143 const LambdaType& lambda_function)
144 {
145 LambdaMatItemRangeFunctorT<MatItemVectorView,LambdaType> ipf(items_view,lambda_function);
146 TaskFactory::executeParallelFor(0,items_view.nbItem(),options,&ipf);
147 }
148} // End namespace Arcane
149
150/*---------------------------------------------------------------------------*/
151/*---------------------------------------------------------------------------*/
152
153namespace Arcane::Parallel
154{
155 using namespace Materials;
156 using namespace Arcane;
157
163 template<typename LambdaType> inline void
164 Foreach(const ComponentItemVectorView& items_view,const LambdaType& lambda_function)
165 {
166 arcaneParallelForeach(items_view,lambda_function);
167 }
168
174 template<typename LambdaType> inline void
175 Foreach(const ComponentItemVectorView& items_view,const ParallelLoopOptions& options,
176 const LambdaType& lambda_function)
177 {
178 arcaneParallelForeach(items_view,options,lambda_function);
179 }
180
186 template<typename LambdaType> inline void
187 Foreach(const EnvItemVectorView& items_view,const LambdaType& lambda_function)
188 {
189 arcaneParallelForeach(items_view,lambda_function);
190 }
191
197 template<typename LambdaType> inline void
198 Foreach(const EnvItemVectorView& items_view,const ParallelLoopOptions& options,
199 const LambdaType& lambda_function)
200 {
201 arcaneParallelForeach(items_view,options,lambda_function);
202 }
203
209 template<typename LambdaType> inline void
210 Foreach(const MatItemVectorView& items_view,const LambdaType& lambda_function)
211 {
212 arcaneParallelForeach(items_view,lambda_function);
213 }
214
220 template<typename LambdaType> inline void
221 Foreach(const MatItemVectorView& items_view,const ParallelLoopOptions& options,
222 const LambdaType& lambda_function)
223 {
224 arcaneParallelForeach(items_view,options,lambda_function);
225 }
226
227} // End namespace Arcane::Parallel
228
229/*---------------------------------------------------------------------------*/
230/*---------------------------------------------------------------------------*/
231
232#endif
233
Déclarations des types utilisés dans Arcane.
Interface d'un fonctor sur un interval d'itération.
Vue sur un vecteur sur les entités d'un composant.
Integer nbItem() const
Nombre d'entités dans la vue.
Vue sur un vecteur sur les entités d'un milieu.
Fonctor sur un interval d'itération instancié via une lambda fonction.
virtual void executeFunctor(Integer begin, Integer size)
Exécute la méthode associée.
Vue sur un vecteur sur les entités d'un matériau.
Options d'exécution d'une boucle parallèle en multi-thread.
static void executeParallelFor(Integer begin, Integer size, const ParallelLoopOptions &options, IRangeFunctor *f)
Exécute le fonctor f en concurrence.
void arcaneParallelForeach(const ItemVectorView &items_view, const ForLoopRunInfo &run_info, InstanceType *instance, void(InstanceType::*function)(ItemVectorViewT< ItemType > items))
Applique en concurrence la méthode function de l'instance instance sur la vue items_view avec les opt...
Definition Concurrency.h:54
Active toujours les traces dans les parties Arcane concernant les matériaux.
Implémentation de la concurrence.
void Foreach(const ItemVectorView &items_view, const ParallelLoopOptions &options, InstanceType *instance, void(InstanceType::*function)(ItemVectorViewT< ItemType > items))
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Int32 Integer
Type représentant un entier.
Ensemble des classes assurant la gestion des matériaux et des milieux.