ArmNN
 20.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 {
77  visitor.VisitLogicalBinaryLayer(this, GetParameters(), GetName());
78 }
79 
80 } // 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:187
virtual void VisitLogicalBinaryLayer(const IConnectableLayer *layer, const LogicalBinaryDescriptor &logicalBinaryDescriptor, const char *name=nullptr)=0
Function that a logical binary layer should call back to when its Accept(ILayerVisitor&) function is ...
A LogicalBinaryDescriptor for the LogicalBinaryLayer.
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:432
Copyright (c) 2020 ARM Limited.
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:392
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:348
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:313
This layer represents a Logical Binary operation.
#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:197
virtual std::unique_ptr< IWorkload > CreateLogicalBinary(const LogicalBinaryQueueDescriptor &descriptor, const WorkloadInfo &Info) const
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:315
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:308
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:63
ShapeInferenceMethod m_ShapeInferenceMethod
Definition: Layer.hpp:405