From 1dc83febfb76d6a770bdf3ba16c4034a970c2320 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Thu, 16 May 2024 09:47:51 +0100 Subject: IVGCVSW-8260 Update Doxgen Docu for 24.05 Signed-off-by: Nikhil Raj Change-Id: If4bc983bf2793a27ded8e26ac2b29523fc1e4711 --- latest/classarmnn_1_1_unmap_layer.html | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) (limited to 'latest/classarmnn_1_1_unmap_layer.html') diff --git a/latest/classarmnn_1_1_unmap_layer.html b/latest/classarmnn_1_1_unmap_layer.html index 02af2b62e3..41d3cbc5ee 100644 --- a/latest/classarmnn_1_1_unmap_layer.html +++ b/latest/classarmnn_1_1_unmap_layer.html @@ -36,7 +36,7 @@ ArmNN
-  24.02 +  24.05
@@ -457,7 +457,7 @@ Additional Inherited Members
34  return std::make_unique<UnmapWorkload>(descriptor, PrepInfoAndDesc(descriptor));
35 }
-

References armnn::IgnoreUnused(), Layer::PrepInfoAndDesc(), and Layer::SetAdditionalInfo().

+

References armnn::IgnoreUnused(), Layer::PrepInfoAndDesc(), and Layer::SetAdditionalInfo().

@@ -489,11 +489,11 @@ Additional Inherited Members

Reimplemented from Layer.

-

Definition at line 44 of file UnmapLayer.cpp.

-
45 {
-
46  IgnoreUnused(strategy);
-
47  throw armnn::Exception("UnmapLayer should not appear in an input graph");
-
48 }
+

Definition at line 48 of file UnmapLayer.cpp.

+
49 {
+
50  IgnoreUnused(strategy);
+
51  throw armnn::Exception("UnmapLayer should not appear in an input graph");
+
52 }

References armnn::IgnoreUnused().

@@ -536,10 +536,14 @@ Additional Inherited Members
38 {
39  // validates that the input is connected.
- -
42 }
+
41  if (GetNumOutputSlots() != 0)
+
42  {
+
43  throw armnn::LayerValidationException("Output slots must be \"0\" - currently \""
+
44  + std::to_string(GetNumOutputSlots()) + "\".");
+
45  }
+
46 }
-

References ARMNN_ASSERT, CHECK_LOCATION, Layer::GetNumOutputSlots(), and Layer::VerifyLayerConnections().

+

References CHECK_LOCATION, Layer::GetNumOutputSlots(), and Layer::VerifyLayerConnections().

@@ -549,22 +553,22 @@ Additional Inherited Members -
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
#define CHECK_LOCATION()
Definition: Exceptions.hpp:203
-
Layer(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const char *name)
Definition: Layer.cpp:247
+
Layer(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const char *name)
Definition: Layer.cpp:260
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:332
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *Layer::CreateWorkload.
Definition: Layer.hpp:409
+
unsigned int GetNumOutputSlots() const override
Returns the number of connectable output slots.
Definition: Layer.hpp:335
-
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:287
+
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:303
Base class for all ArmNN exceptions so that users can filter to just those.
Definition: Exceptions.hpp:46
void IgnoreUnused(Ts &&...)
-
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:391
+
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:410