From fd627ffaec8fd8801d980b4c91ee7c0607ab6aaf Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Thu, 25 Feb 2021 17:44:00 +0000 Subject: IVGCVSW-5687 Update Doxygen Docu * Update Doxygen Documentation for 21.02 release Signed-off-by: Jan Eilers Change-Id: I9ed2f9caab038836ea99d7b378d7899fe431a4e5 --- ..._override_input_range_visitor_8cpp_source.xhtml | 125 +++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 21.02/_override_input_range_visitor_8cpp_source.xhtml (limited to '21.02/_override_input_range_visitor_8cpp_source.xhtml') diff --git a/21.02/_override_input_range_visitor_8cpp_source.xhtml b/21.02/_override_input_range_visitor_8cpp_source.xhtml new file mode 100644 index 0000000000..0cbb3e5214 --- /dev/null +++ b/21.02/_override_input_range_visitor_8cpp_source.xhtml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + +ArmNN: src/armnn/OverrideInputRangeVisitor.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
OverrideInputRangeVisitor.cpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
8 #include "Layer.hpp"
9 
11 
12 namespace armnn
13 {
14 
16  LayerBindingId layerId,
17  const MinMaxRange& minMaxRange)
18  : m_Ranges(ranges)
19  , m_LayerId(layerId)
20  , m_MinMaxRange(minMaxRange)
21 {}
22 
24 {
25  IgnoreUnused(name);
26  if (m_LayerId == id)
27  {
28  m_Ranges.SetRange(layer, 0, m_MinMaxRange.first, m_MinMaxRange.second);
29  }
30 }
31 
32 } // namespace armnn
+
Interface for a layer that is connectable to other layers via InputSlots and OutputSlots.
Definition: INetwork.hpp:62
+
OverrideInputRangeVisitor(RangeTracker &ranges, LayerBindingId layerId, const MinMaxRange &minMaxRange)
+ +
Copyright (c) 2021 ARM Limited and Contributors.
+
void IgnoreUnused(Ts &&...)
+
int LayerBindingId
Type of identifiers for bindable layers (inputs, outputs).
Definition: Types.hpp:210
+ +
void SetRange(const IConnectableLayer *layer, unsigned int outputIdx, float min, float max)
Set the range for an output slot on a layer.
+ + +
void VisitInputLayer(const IConnectableLayer *layer, LayerBindingId id, const char *name=nullptr) override
Function that an InputLayer should call back to when its Accept(ILayerVisitor&) function is invoked...
+
+
+ + + + -- cgit v1.2.1