From 549b9600a6eaf0727fa084465a75f173edf8f381 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Tue, 24 May 2022 11:32:07 +0100 Subject: Update 22.05 Doxygen Docs after updates to main Readme Signed-off-by: Nikhil Raj Change-Id: I56711772406a41ff81fa136a5fb6c59c9b9cf504 --- 22.05/_i_strategy_8hpp_source.xhtml | 124 ++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 22.05/_i_strategy_8hpp_source.xhtml (limited to '22.05/_i_strategy_8hpp_source.xhtml') diff --git a/22.05/_i_strategy_8hpp_source.xhtml b/22.05/_i_strategy_8hpp_source.xhtml new file mode 100644 index 0000000000..1bf20ded06 --- /dev/null +++ b/22.05/_i_strategy_8hpp_source.xhtml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + +ArmNN: include/armnn/IStrategy.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
IStrategy.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 #pragma once
6 
8 #include <armnn/Types.hpp>
9 
10 namespace armnn
11 {
12 
13 class IStrategy
14 {
15 protected:
17 virtual ~IStrategy() {}
18 
19 public:
20 virtual void ExecuteStrategy(const armnn::IConnectableLayer* layer,
21  const armnn::BaseDescriptor& descriptor,
22  const std::vector<armnn::ConstTensor>& constants,
23  const char* name,
24  const armnn::LayerBindingId id = 0) = 0;
25 
26 virtual void FinishStrategy() {};
27 
28 };
29 
30 
31 } // namespace armnn
virtual ~IStrategy()
Definition: IStrategy.hpp:17
+
Interface for a layer that is connectable to other layers via InputSlots and OutputSlots.
Definition: INetwork.hpp:66
+
virtual void ExecuteStrategy(const armnn::IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0)=0
+
Copyright (c) 2021 ARM Limited and Contributors.
+
int LayerBindingId
Type of identifiers for bindable layers (inputs, outputs).
Definition: Types.hpp:290
+
Base class for all descriptors.
Definition: Descriptors.hpp:22
+ + + +
virtual void FinishStrategy()
Definition: IStrategy.hpp:26
+ +
+
+ + + + -- cgit v1.2.1