ArmNN
 21.08
MergeLayer.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 #include "MergeLayer.hpp"
6 
7 #include "LayerCloneBase.hpp"
8 
11 
12 namespace armnn
13 {
14 
15 MergeLayer::MergeLayer(const char* name)
16  : Layer(2, 1, LayerType::Merge, name)
17 {}
18 
19 std::unique_ptr<IWorkload> MergeLayer::CreateWorkload(const IWorkloadFactory& factory) const
20 {
21  IgnoreUnused(factory);
22  return nullptr;
23 }
24 
26 {
27  return CloneBase<MergeLayer>(graph, GetName());
28 }
29 
31 {
33 
34  const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape();
35 
37 
38  std::vector<TensorShape> inferredShapes = InferOutputShapes({
41  });
42 
43  ARMNN_ASSERT(inferredShapes.size() == 1);
44 
45  ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "MergeLayer");
46 }
47 
48 std::vector<TensorShape> MergeLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
49 {
50  ARMNN_ASSERT(inputShapes.size() == 2);
51 
52  ConditionalThrowIfNotEqual<LayerValidationException>(
53  "MergeLayer: TensorShapes set on inputs do not match",
54  inputShapes[0],
55  inputShapes[1]
56  );
57 
58  return {inputShapes[0]};
59 }
60 
61 void MergeLayer::Accept(ILayerVisitor& visitor) const
62 {
63  visitor.VisitMergeLayer(this, GetName());
64 }
65 
66 } // namespace armnn
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
Definition: MergeLayer.cpp:61
const TensorShape & GetShape() const
Definition: Tensor.hpp:191
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition: Layer.cpp:433
MergeLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
Definition: MergeLayer.cpp:25
Copyright (c) 2021 ARM Limited and Contributors.
void IgnoreUnused(Ts &&...)
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
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Merge type.
Definition: MergeLayer.cpp:19
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Infers the output shapes from given input shapes.
Definition: MergeLayer.cpp:48
virtual void VisitMergeLayer(const IConnectableLayer *layer, const char *name=nullptr)=0
Function that a merge layer should call back to when its Accept(ILayerVisitor&) function is invoked...
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
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
#define CHECK_LOCATION()
Definition: Exceptions.hpp:197
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
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of MergeLayer.
Definition: MergeLayer.cpp:30
This layer dequantizes the input tensor.
Definition: MergeLayer.hpp:13
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:63
MergeLayer(const char *name)
Constructor to create a MergeLayer.
Definition: MergeLayer.cpp:15
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:405