From 9aed8fb43441228343b925b42464a55042c47ca0 Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 17 Nov 2021 13:16:45 +0000 Subject: IVGCVSW-6040 Update 21.11 Doxygen Documents Signed-off-by: Nikhil Raj Change-Id: Ia36ec98c4bebc27a69103911ea3409cd7db587a5 --- 21.11/_logical_binary_layer_8cpp_source.xhtml | 154 ++++++++++++++++++++++++++ 1 file changed, 154 insertions(+) create mode 100644 21.11/_logical_binary_layer_8cpp_source.xhtml (limited to '21.11/_logical_binary_layer_8cpp_source.xhtml') diff --git a/21.11/_logical_binary_layer_8cpp_source.xhtml b/21.11/_logical_binary_layer_8cpp_source.xhtml new file mode 100644 index 0000000000..d2a64582a7 --- /dev/null +++ b/21.11/_logical_binary_layer_8cpp_source.xhtml @@ -0,0 +1,154 @@ + + + + + + + + + + + + + +ArmNN: src/armnn/layers/LogicalBinaryLayer.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  21.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
LogicalBinaryLayer.cpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "LogicalBinaryLayer.hpp"
7 
8 #include "LayerCloneBase.hpp"
9 
12 
13 #include <algorithm>
14 
15 namespace armnn
16 {
17 
19  : LayerWithParameters(2, 1, LayerType::LogicalBinary, param, name)
20 {
21 }
22 
23 std::unique_ptr<IWorkload> LogicalBinaryLayer::CreateWorkload(const IWorkloadFactory& factory) const
24 {
26  return factory.CreateLogicalBinary(descriptor, PrepInfoAndDesc(descriptor));
27 }
28 
30 {
31  return CloneBase<LogicalBinaryLayer>(graph, m_Param, GetName());
32 }
33 
34 std::vector<TensorShape> LogicalBinaryLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
35 {
36  ARMNN_ASSERT(inputShapes.size() == 2);
37  const TensorShape& input0 = inputShapes[0];
38  const TensorShape& input1 = inputShapes[1];
39 
40  ARMNN_ASSERT(input0.GetNumDimensions() == input1.GetNumDimensions());
41  unsigned int numDims = input0.GetNumDimensions();
42 
43  std::vector<unsigned int> dims(numDims);
44  for (unsigned int i = 0; i < numDims; i++)
45  {
46  unsigned int dim0 = input0[i];
47  unsigned int dim1 = input1[i];
48 
49  ARMNN_ASSERT_MSG(dim0 == dim1 || dim0 == 1 || dim1 == 1,
50  "Dimensions should either match or one should be of size 1.");
51 
52  dims[i] = std::max(dim0, dim1);
53  }
54 
55  return std::vector<TensorShape>({ TensorShape(numDims, dims.data()) });
56 }
57 
59 {
61 
62  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
63 
65 
66  std::vector<TensorShape> inferredShapes = InferOutputShapes({
69  });
70  ARMNN_ASSERT(inferredShapes.size() == 1);
71 
72  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "LogicalBinaryLayer");
73 }
74 
76 void LogicalBinaryLayer::Accept(ILayerVisitor& visitor) const
77 {
78  visitor.VisitLogicalBinaryLayer(this, GetParameters(), GetName());
79 }
81 
82 } // namespace armnn
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the LogicalBinary type.
+ +
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of LogicalBinaryLayer.
+
LogicalBinaryDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
+
const LogicalBinaryDescriptor & GetParameters() const
+
LogicalBinaryLayer(const LogicalBinaryDescriptor &param, const char *name)
Constructor to create a LogicalBinaryLayer.
+
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
+ +
#define ARMNN_NO_DEPRECATE_WARN_BEGIN
Definition: Deprecated.hpp:33
+ + +
A LogicalBinaryDescriptor for the LogicalBinaryLayer.
+
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:433
+
Copyright (c) 2021 ARM Limited and Contributors.
+ +
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:199
+
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition: Layer.cpp:393
+ +
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:349
+
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:316
+
This layer represents a Logical Binary operation.
+
#define ARMNN_NO_DEPRECATE_WARN_END
Definition: Deprecated.hpp:34
+
#define ARMNN_ASSERT_MSG(COND, MSG)
Definition: Assert.hpp:15
+
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
+
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
By default returns inputShapes if the number of inputs are equal to number of outputs, otherwise infers the output shapes from given input shapes and layer properties.
+
#define CHECK_LOCATION()
Definition: Exceptions.hpp:209
+
virtual std::unique_ptr< IWorkload > CreateLogicalBinary(const LogicalBinaryQueueDescriptor &descriptor, const WorkloadInfo &Info) const
+ + +
ARMNN_NO_DEPRECATE_WARN_BEGIN void Accept(ILayerVisitor &visitor) const override
+
LogicalBinaryLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
+
unsigned int GetNumDimensions() const
Function that returns the tensor rank.
Definition: Tensor.cpp:174
+
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *LayerCreateWorkload.
+
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:318
+
virtual const TensorInfo & GetTensorInfo() const =0
+
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:311
+ +
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:63
+
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:408
+ +
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below...
Definition: Types.hpp:443
+
+
+ + + + -- cgit v1.2.1