From d5d43d82c0137e08553e44345c609cdd1a7931c7 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Fri, 17 Jun 2022 13:24:58 +0100 Subject: Update Doxygen for 22.05 patch release * Pooling3D added to tfLite delegate * Available in tag 22.05.01 Signed-off-by: Nikhil Raj Change-Id: I8d605bba4e87d30baa2c6d7b338c78a4400dc021 --- 22.05.01/_pre_compiled_layer_8hpp_source.xhtml | 135 +++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 22.05.01/_pre_compiled_layer_8hpp_source.xhtml (limited to '22.05.01/_pre_compiled_layer_8hpp_source.xhtml') diff --git a/22.05.01/_pre_compiled_layer_8hpp_source.xhtml b/22.05.01/_pre_compiled_layer_8hpp_source.xhtml new file mode 100644 index 0000000000..912adf7074 --- /dev/null +++ b/22.05.01/_pre_compiled_layer_8hpp_source.xhtml @@ -0,0 +1,135 @@ + + + + + + + + + + + + + +ArmNN: src/armnn/layers/PreCompiledLayer.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  22.05.01 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
PreCompiledLayer.hpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
10 
11 #include <armnn/Descriptors.hpp>
12 
13 #include <memory>
14 #include <functional>
15 
16 namespace armnn
17 {
18 
19 using PreCompiledObjectDeleter = std::function<void(const void*)>;
20 using PreCompiledObjectPtr = std::unique_ptr<void, PreCompiledObjectDeleter>;
21 
22 class PreCompiledLayer : public LayerWithParameters<PreCompiledDescriptor>
23 {
24 public:
25  PreCompiledLayer(const PreCompiledDescriptor& param, const char* name);
27 
28  virtual std::unique_ptr<IWorkload> CreateWorkload(const IWorkloadFactory& factory) const override;
29 
30  PreCompiledLayer* Clone(Graph &graph) const override;
31 
32  void ValidateTensorShapesFromInputs() override;
33 
34  void SetPreCompiledObject(PreCompiledObjectPtr preCompiledObject);
35 
37  void Accept(ILayerVisitor& visitor) const override;
39 
40 
41  void ExecuteStrategy(IStrategy& strategy) const override;
42 
43 private:
44  PreCompiledLayer(const PreCompiledLayer& other) = delete;
45  PreCompiledLayer& operator=(const PreCompiledLayer& other) = delete;
46 
47  std::shared_ptr<void> m_PreCompiledObject;
48 };
49 
50 } // namespace armnn
std::function< void(const void *)> PreCompiledObjectDeleter
+ +
PreCompiledLayer(const PreCompiledDescriptor &param, const char *name)
+
#define ARMNN_NO_DEPRECATE_WARN_BEGIN
Definition: Deprecated.hpp:33
+ +
std::unique_ptr< void, PreCompiledObjectDeleter > PreCompiledObjectPtr
+
PreCompiledLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
+
ARMNN_NO_DEPRECATE_WARN_BEGIN void Accept(ILayerVisitor &visitor) const override
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+ +
void SetPreCompiledObject(PreCompiledObjectPtr preCompiledObject)
+
#define ARMNN_NO_DEPRECATE_WARN_END
Definition: Deprecated.hpp:34
+
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
+ + + + +
void ValidateTensorShapesFromInputs() override
+ +
A PreCompiledDescriptor for the PreCompiledLayer.
+
ARMNN_NO_DEPRECATE_WARN_END void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
+
+
+ + + + -- cgit v1.2.1