Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
IRunQueueEventImpl.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2025 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/* IRunQueueEventImpl.h (C) 2000-2025 */
9/* */
10/* Interface de l'implémentation d'un évènement. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_ACCELERATOR_IRUNQUEUEEVENTIMPL_H
13#define ARCANE_ACCELERATOR_IRUNQUEUEEVENTIMPL_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane::Accelerator::impl
23{
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
31class ARCANE_ACCELERATOR_CORE_EXPORT IRunQueueEventImpl
32{
33 public:
34
35 virtual ~IRunQueueEventImpl() = default;
36
37 public:
38
39 virtual void recordQueue(IRunQueueStream* stream) = 0;
40 virtual void wait() = 0;
41 virtual void waitForEvent(IRunQueueStream* stream) = 0;
42
44 virtual Int64 elapsedTime(IRunQueueEventImpl* from_event) = 0;
45
46 virtual bool hasPendingWork() =0;
47};
48
49/*---------------------------------------------------------------------------*/
50/*---------------------------------------------------------------------------*/
51
52} // namespace Arcane::Accelerator::impl
53
54/*---------------------------------------------------------------------------*/
55/*---------------------------------------------------------------------------*/
56
57#endif
Interface de l'implémentation d'un évènement.
virtual Int64 elapsedTime(IRunQueueEventImpl *from_event)=0
Temps écoulé (en nanoseconde) entre l'évènement from_event et cet évènement.
Interface d'un flux d'exécution pour une RunQueue.
std::int64_t Int64
Type entier signé sur 64 bits.