Arcane  v3.15.0.0
Documentation utilisateur
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/*---------------------------------------------------------------------------*/
30/*!
31 * \internal
32 * \brief Object temporaire pour conserver les informations d'exécution d'une
33 * commande et regrouper les tests.
34 */
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
54 RunCommandLaunchInfo(RunCommand& command, Int64 total_loop_size);
57 RunCommandLaunchInfo operator=(const RunCommandLaunchInfo&) = delete;
58
59 public:
60
61 eExecutionPolicy executionPolicy() const { return m_exec_policy; }
62
63 /*!
64 * \brief Indique qu'on commence l'exécution de la commande.
65 *
66 * Doit toujours être appelé avant de lancer la commande pour être
67 * sur que cette méthode est appelée en cas d'exception.
68 */
69 void beginExecute();
70
71 /*!
72 * \brief Signale la fin de l'exécution.
73 *
74 * Si la file associée à la commande est asynchrone, la commande
75 * peut continuer à s'exécuter après cet appel.
76 */
77 void endExecute();
78
79 /*!
80 * \brief Informations sur le nombre de block/thread/grille du noyau à lancer.
81 *
82 * Cette valeur n'est valide que pour si la commande est associée à un accélérateur.
83 */
84 KernelLaunchArgs kernelLaunchArgs() const { return m_kernel_launch_args; }
85
86 //! Calcule et retourne les informations pour les boucles multi-thread
87 ParallelLoopOptions computeParallelLoopOptions() const;
88
89 /*!
90 * \brief Informations d'exécution de la boucle.
91 *
92 * Ces informations ne sont valides si executionPolicy()==eExecutionPolicy::Thread
93 * et si beginExecute() a été appelé.
94 */
95 const ForLoopRunInfo& loopRunInfo() const { return m_loop_run_info; }
96
97 //! Taille totale de la boucle
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
113 /*!
114 * \brief Informations dynamiques sur le nombre de block/thread/grille du noyau à lancer.
115 *
116 * Ces informations sont calculées à partir de méthodes fournies par le runtime accélérateur
117 * sous-jacent.
118 */
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.
Type opaque pour encapsuler une 'stream' native.
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.
Informations d'exécution d'une boucle.
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.