ArmNN
 22.08
IAsyncExecutionCallback.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include "Types.hpp"
9 
10 namespace armnn
11 {
12 
13 namespace experimental
14 {
15 
16 class IAsyncExecutionCallback;
17 using IAsyncExecutionCallbackPtr = std::shared_ptr<IAsyncExecutionCallback>;
18 
20 {
21 public:
23 
24  // Notify the AsyncExecutionCallback object of the armnn execution status
25  virtual void Notify(armnn::Status status, InferenceTimingPair timeTaken) = 0;
26 };
27 
28 } // experimental
29 
30 } // namespace armnn
Copyright (c) 2021 ARM Limited and Contributors.
std::shared_ptr< IAsyncExecutionCallback > IAsyncExecutionCallbackPtr
virtual void Notify(armnn::Status status, InferenceTimingPair timeTaken)=0
Status
enumeration
Definition: Types.hpp:42
std::pair< HighResolutionClock, HighResolutionClock > InferenceTimingPair
Definition: Types.hpp:383