Arcane  v3.15.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
core/RunCommandLaunchInfo.h
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/* RunCommandLaunchInfo.h (C) 2000-2024 */
9/* */
10/* Informations pour l'exécution d'une 'RunCommand'. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_ACCELERATOR_CORE_RUNCOMMANDLAUNCHINFO_H
13#define ARCANE_ACCELERATOR_CORE_RUNCOMMANDLAUNCHINFO_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18#include "arcane/utils/Profiling.h"
19
20#include "arcane/accelerator/core/KernelLaunchArgs.h"
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25namespace Arcane::Accelerator::impl
26{
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
35class ARCANE_ACCELERATOR_CORE_EXPORT RunCommandLaunchInfo
36{
37 // Les fonctions suivantes permettent de lancer les kernels.
38 template <typename SyclKernel, typename Lambda, typename LambdaArgs, typename... ReducerArgs>
39 friend void _applyKernelSYCL(impl::RunCommandLaunchInfo& launch_info, SyclKernel kernel, Lambda& func,
40 const LambdaArgs& args, const ReducerArgs&... reducer_args);
41 template <typename CudaKernel, typename Lambda, typename LambdaArgs, typename... RemainingArgs>
42 friend void _applyKernelCUDA(impl::RunCommandLaunchInfo& launch_info, const CudaKernel& kernel, Lambda& func,
43 const LambdaArgs& args, [[maybe_unused]] const RemainingArgs&... other_args);
44 template <typename HipKernel, typename Lambda, typename LambdaArgs, typename... RemainingArgs>
45 friend void _applyKernelHIP(impl::RunCommandLaunchInfo& launch_info, const HipKernel& kernel, const Lambda& func,
46 const LambdaArgs& args, [[maybe_unused]] const RemainingArgs&... other_args);
47
48 public:
49
51
52 public:
53
57 RunCommandLaunchInfo operator=(const RunCommandLaunchInfo&) = delete;
58
59 public:
60
61 eExecutionPolicy executionPolicy() const { return m_exec_policy; }
62
69 void beginExecute();
70
77 void endExecute();
78
84 KernelLaunchArgs kernelLaunchArgs() const { return m_kernel_launch_args; }
85
87 ParallelLoopOptions computeParallelLoopOptions() const;
88
95 const ForLoopRunInfo& loopRunInfo() const { return m_loop_run_info; }
96
98 Int64 totalLoopSize() const { return m_total_loop_size; }
99
100 private:
101
102 RunCommand& m_command;
103 bool m_has_exec_begun = false;
104 bool m_is_notify_end_kernel_done = false;
105 eExecutionPolicy m_exec_policy = eExecutionPolicy::Sequential;
106 KernelLaunchArgs m_kernel_launch_args;
107 ForLoopRunInfo m_loop_run_info;
108 Int64 m_total_loop_size = 0;
109 impl::RunQueueImpl* m_queue_impl = nullptr;
110
111 private:
112
119 KernelLaunchArgs _threadBlockInfo(const void* func, Int64 shared_memory_size) const;
120 NativeStream _internalNativeStream();
121 void _doEndKernelLaunch();
122 KernelLaunchArgs _computeKernelLaunchArgs() const;
123
124 private:
125
126 void _computeLoopRunInfo();
127
128 // Pour SYCL: enregistre l'évènement associé à la dernière commande de la file
129 // \a sycl_event_ptr est de type 'sycl::event*'.
130 void _addSyclEvent(void* sycl_event_ptr);
131};
132
133/*---------------------------------------------------------------------------*/
134/*---------------------------------------------------------------------------*/
135
136} // End namespace Arcane::Accelerator::impl
137
138/*---------------------------------------------------------------------------*/
139/*---------------------------------------------------------------------------*/
140
141#endif
Classes, Types et macros pour gérer la concurrence.
Gestion d'une commande sur accélérateur.
Arguments pour lancer un kernel.
Type opaque pour encapsuler une 'stream' native.
Object temporaire pour conserver les informations d'exécution d'une commande et regrouper les tests.
Int64 totalLoopSize() const
Taille totale de la boucle.
KernelLaunchArgs kernelLaunchArgs() const
Informations sur le nombre de block/thread/grille du noyau à lancer.
const ForLoopRunInfo & loopRunInfo() const
Informations d'exécution de la boucle.
File d'exécution pour accélérateur.
Informations d'exécution d'une boucle.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:149
Options d'exécution d'une boucle parallèle en multi-thread.
eExecutionPolicy
Politique d'exécution pour un Runner.
std::int64_t Int64
Type entier signé sur 64 bits.