From a983e4699082a0b1ef685bab7354f2ad9cd37a44 Mon Sep 17 00:00:00 2001 From: Colm Donelan Date: Wed, 20 May 2020 16:12:19 +0100 Subject: Updating Doxygen documentation for 20.05 release. Change-Id: I4d624343ed5fd6ae269c3d53532903084508fd14 Signed-off-by: Colm Donelan --- ..._override_input_range_visitor_8cpp_source.xhtml | 125 +++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 20.05/_override_input_range_visitor_8cpp_source.xhtml (limited to '20.05/_override_input_range_visitor_8cpp_source.xhtml') diff --git a/20.05/_override_input_range_visitor_8cpp_source.xhtml b/20.05/_override_input_range_visitor_8cpp_source.xhtml new file mode 100644 index 0000000000..ef58270e80 --- /dev/null +++ b/20.05/_override_input_range_visitor_8cpp_source.xhtml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + +ArmNN: src/armnn/OverrideInputRangeVisitor.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.05 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
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:61
+
OverrideInputRangeVisitor(RangeTracker &ranges, LayerBindingId layerId, const MinMaxRange &minMaxRange)
+ +
Copyright (c) 2020 ARM Limited.
+
void IgnoreUnused(Ts &&...)
+
int LayerBindingId
Type of identifiers for bindable layers (inputs, outputs).
Definition: Types.hpp:171
+ +
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