14#include "arccore/concurrency/ITaskImplementation.h"
16#include "arccore/concurrency/Task.h"
17#include "arccore/concurrency/ParallelFor.h"
18#include "arccore/concurrency/internal/TaskFactoryInternal.h"
20#include "arccore/base/Observable.h"
42 static const int FUNCTOR_CLASS_SIZE =
sizeof(TaskType);
54 m_functor = f->clone(functor_buf, FUNCTOR_CLASS_SIZE);
72 tasks[i]->launchAndWait();
81 ITaskFunctor* m_functor;
82 char functor_buf[FUNCTOR_CLASS_SIZE];
97 void initialize([[maybe_unused]]
Int32 nb_thread)
override
100 void terminate()
override
124 loop_info.functor()->
executeFunctor(loop_info.beginIndex(), loop_info.size());
130 functor->executeFunctor(loop_ranges);
136 functor->executeFunctor(loop_ranges);
142 functor->executeFunctor(loop_ranges);
148 functor->executeFunctor(loop_ranges);
169 o <<
"NullTaskImplementation";
176NullTaskImplementation NullTaskImplementation::singleton;
177ITaskImplementation* TaskFactory::m_impl = &NullTaskImplementation::singleton;
178Int32 TaskFactory::m_verbose_level = 0;
179ParallelLoopOptions TaskFactory::m_default_loop_options;
186 IObservable* global_created_thread_observable = 0;
187 IObservable* global_destroyed_thread_observable = 0;
188 std::mutex global_observable_mutex;
191 _checkCreateGlobalThreadObservable()
193 if (!global_created_thread_observable)
194 global_created_thread_observable =
new Observable();
195 return global_created_thread_observable;
202void TaskFactoryInternal::
205 if (TaskFactory::m_impl && TaskFactory::m_impl != &NullTaskImplementation::singleton)
206 ARCCORE_FATAL(
"TaskFactory already has an implementation");
207 TaskFactory::m_impl = task_impl;
210void TaskFactoryInternal::
213 std::scoped_lock slock(global_observable_mutex);
214 _checkCreateGlobalThreadObservable();
215 global_created_thread_observable->attachObserver(o);
218void TaskFactoryInternal::
221 std::scoped_lock slock(global_observable_mutex);
222 _checkCreateGlobalThreadObservable();
223 global_created_thread_observable->detachObserver(o);
226void TaskFactoryInternal::
229 std::scoped_lock slock(global_observable_mutex);
230 if (global_created_thread_observable)
231 global_created_thread_observable->notifyAllObservers();
243 TaskFactoryInternal::setImplementation(task_impl);
252 std::scoped_lock slock(global_observable_mutex);
253 return _checkCreateGlobalThreadObservable();
262 if (!global_destroyed_thread_observable)
263 global_destroyed_thread_observable =
new Observable();
264 return global_destroyed_thread_observable;
274 if (m_impl == &NullTaskImplementation::singleton)
278 m_impl = &NullTaskImplementation::singleton;
Vue constante d'un tableau de type T.
constexpr Integer size() const noexcept
Nombre d'éléments du tableau.
Informations d'exécution d'une boucle.
Interface d'un fonctor sur un interval d'itération multi-dimensionnel de dimension RankValue.
Interface d'un observable.
Interface d'un fonctor sur un interval d'itération.
virtual void executeFunctor(Int32 begin, Int32 size)=0
Exécute la méthode associée.
virtual void executeFunctor(const TaskContext &tc)=0
Exécute la méthode associé
Interface d'une tâche concourante.
void executeParallelFor(const ComplexForLoopRanges< 4 > &loop_ranges, const ForLoopRunInfo &run_info, IMDRangeFunctor< 4 > *functor) override
Exécute une boucle 4D en concurrence.
void printInfos(std::ostream &o) const final
Affiche les informations sur le runtime utilisé
Int32 currentTaskIndex() const override
Implémentation de TaskFactory::currentTaskIndex()
Int32 nbAllowedThread() const override
Nombre de threads utilisés au maximum pour gérer les tâches.
void executeParallelFor(Integer begin, Integer size, IRangeFunctor *f) override
Exécute le fonctor f en concurrence.
void executeParallelFor(const ComplexForLoopRanges< 3 > &loop_ranges, const ForLoopRunInfo &run_info, IMDRangeFunctor< 3 > *functor) override
Exécute une boucle 3D en concurrence.
void executeParallelFor(const ComplexForLoopRanges< 1 > &loop_ranges, const ForLoopRunInfo &run_info, IMDRangeFunctor< 1 > *functor) override
Exécute une boucle 1D en concurrence.
void executeParallelFor(const ComplexForLoopRanges< 2 > &loop_ranges, const ForLoopRunInfo &run_info, IMDRangeFunctor< 2 > *functor) override
Exécute une boucle 2D en concurrence.
void executeParallelFor(const ParallelFor1DLoopInfo &loop_info) override
Exécute la boucle loop_info en concurrence.
ITask * createRootTask(ITaskFunctor *f) override
Créé une tâche racine. L'implémentation doit recopier la valeur de f qui est soit un TaskFunctor,...
bool isActive() const override
Indique si l'implémentation est active.
void executeParallelFor(Integer begin, Integer size, Integer block_size, IRangeFunctor *f) override
Exécute le fonctor f en concurrence.
Int32 currentTaskThreadIndex() const override
Implémentation de TaskFactory::currentTaskThreadIndex()
void executeParallelFor(Integer begin, Integer size, const ParallelLoopOptions &options, IRangeFunctor *f) override
Exécute le fonctor f en concurrence.
Classe de base d'un observable.
Caractéristiques d'un boucle 1D multi-thread.
Options d'exécution d'une boucle parallèle en multi-thread.
void launchAndWait() override
Lance la tâche et bloque jusqu'à ce qu'elle se termine.
void launchAndWait(ConstArrayView< ITask * > tasks) override
Lance les tâches filles tasks et bloque jusqu'à ce qu'elles se terminent.
Contexte d'éxecution d'une tâche.
static IObservable * destroyThreadObservable()
Observable appelé lors de la destruction d'un thread pour une tâche.
static IObservable * createThreadObservable()
Observable appelé lors de la création d'un thread pour une tâche.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Int32 Integer
Type représentant un entier.
std::int32_t Int32
Type entier signé sur 32 bits.