From 6f92c8e9f8bb38dcf5dccf8deeff5112ecd8e37c Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 22 Nov 2023 11:41:15 +0000 Subject: Update Doxygen for 23.11 Signed-off-by: Nikhil Raj Change-Id: I47cd933f5002cb94a73aa97689d7b3d9c93cb849 --- 23.11/_quantize_layer_8hpp_source.html | 158 +++++++++++++++++++++++++++++++++ 1 file changed, 158 insertions(+) create mode 100644 23.11/_quantize_layer_8hpp_source.html (limited to '23.11/_quantize_layer_8hpp_source.html') diff --git a/23.11/_quantize_layer_8hpp_source.html b/23.11/_quantize_layer_8hpp_source.html new file mode 100644 index 0000000000..e07bf7ec90 --- /dev/null +++ b/23.11/_quantize_layer_8hpp_source.html @@ -0,0 +1,158 @@ + + + + + + + + +Arm NN: src/armnn/layers/QuantizeLayer.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
QuantizeLayer.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 
+
8 #include <Layer.hpp>
+
9 
+
10 namespace armnn {
+
11 
+
12 //Forward
+
13 class IWorkload;
+
14 class IWorkloadFactory;
+
15 
+
16 class QuantizeLayer : public Layer
+
17 {
+
18 public:
+
19  virtual std::unique_ptr<IWorkload> CreateWorkload(const IWorkloadFactory& factory) const override;
+
20 
+
21  Layer* Clone(Graph& graph) const override;
+
22 
+
23  void ValidateTensorShapesFromInputs() override;
+
24 
+
25  void ExecuteStrategy(IStrategy& strategy) const override;
+
26 
+
27 
+
28 protected:
+
29  QuantizeLayer(const char* name);
+
30  ~QuantizeLayer() = default;
+
31 
+
32 };
+
33 
+
34 } //namespace armnn
+
+
+
Layer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
+ +
QuantizeLayer(const char *name)
+ + + +
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
+
~QuantizeLayer()=default
+
void ValidateTensorShapesFromInputs() override
+
Copyright (c) 2021 ARM Limited and Contributors.
+ + +
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
+ + + + -- cgit v1.2.1