ArmNN
 20.05
MergeLayer.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. 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  std::vector<TensorShape> inferredShapes = InferOutputShapes({
37  });
38 
39  ARMNN_ASSERT(inferredShapes.size() == 1);
40 
41  ConditionalThrowIfNotEqual<LayerValidationException>(
42  "MergeLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
44  inferredShapes[0]);
45 }
46 
47 std::vector<TensorShape> MergeLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
48 {
49  ARMNN_ASSERT(inputShapes.size() == 2);
50 
51  ConditionalThrowIfNotEqual<LayerValidationException>(
52  "MergeLayer: TensorShapes set on inputs do not match",
53  inputShapes[0],
54  inputShapes[1]
55  );
56 
57  return {inputShapes[0]};
58 }
59 
60 void MergeLayer::Accept(ILayerVisitor& visitor) const
61 {
62  visitor.VisitMergeLayer(this, GetName());
63 }
64 
65 } // namespace armnn
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
Definition: MergeLayer.cpp:60
const TensorShape & GetShape() const
Definition: Tensor.hpp:88
MergeLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
Definition: MergeLayer.cpp:25
Copyright (c) 2020 ARM Limited.
void IgnoreUnused(Ts &&...)
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:199
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:47
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:339
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:310
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
#define CHECK_LOCATION()
Definition: Exceptions.hpp:192
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition: Layer.hpp:312
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:305
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