ArmNN
 25.11
Loading...
Searching...
No Matches
MergeLayer.cpp
Go to the documentation of this file.
1//
2// Copyright © 2019-2024 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5#include "MergeLayer.hpp"
6
7#include "LayerCloneBase.hpp"
8
11
12namespace armnn
13{
14
15MergeLayer::MergeLayer(const char* name)
16 : Layer(2, 1, LayerType::Merge, name)
17{}
18
19std::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 if (inferredShapes.size() != 1)
44 {
45 throw armnn::LayerValidationException("inferredShapes has "
46 + std::to_string(inferredShapes.size()) +
47 " elements - should only have 1.");
48 }
49
50 ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "MergeLayer");
51}
52
53std::vector<TensorShape> MergeLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
54{
55 if (inputShapes.size() != 2)
56 {
57 throw armnn::Exception("inputShapes' size is \"" + std::to_string(inputShapes.size()) +
58 "\" - should be \"2\".");
59 }
60
62 "MergeLayer: TensorShapes set on inputs do not match",
63 inputShapes[0],
64 inputShapes[1]
65 );
66
67 return {inputShapes[0]};
68}
69
71{
72 strategy.ExecuteStrategy(this, GetParameters(), {}, GetName());
73}
74
75} // namespace armnn
#define CHECK_LOCATION()
Base class for all ArmNN exceptions so that users can filter to just those.
virtual void ExecuteStrategy(const IConnectableLayer *layer, const armnn::BaseDescriptor &descriptor, const std::vector< armnn::ConstTensor > &constants, const char *name, const armnn::LayerBindingId id=0)=0
const TensorInfo & GetTensorInfo() const override
Gets the TensorInfo for this InputSlot.
Definition Layer.cpp:614
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition Layer.cpp:410
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition Layer.hpp:337
void VerifyShapeInferenceType(const TensorShape &outputShape, ShapeInferenceMethod shapeInferenceMethod)
Definition Layer.cpp:526
Layer(unsigned int numInputSlots, unsigned int numOutputSlots, LayerType type, const char *name)
Definition Layer.cpp:260
const OutputSlot & GetOutputSlot(unsigned int index=0) const override
Get the const output slot handle by slot index.
Definition Layer.hpp:339
LayerType * CloneBase(Graph &graph, Params &&... params) const
const char * GetName() const override
Returns the name of the layer.
Definition Layer.hpp:332
virtual const BaseDescriptor & GetParameters() const override
If the layer has a descriptor return it.
Definition Layer.hpp:378
void ValidateAndCopyShape(const TensorShape &outputShape, const TensorShape &inferredShape, const ShapeInferenceMethod shapeInferenceMethod, const std::string &layerName, const unsigned int outputSlotIndex=0)
Definition Layer.cpp:457
friend class Graph
Definition Layer.hpp:382
ShapeInferenceMethod m_ShapeInferenceMethod
Definition Layer.hpp:441
MergeLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
void ExecuteStrategy(IStrategy &strategy) const override
Apply a visitor to this layer.
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Infers the output shapes from given input shapes.
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of MergeLayer.
MergeLayer(const char *name)
Constructor to create a MergeLayer.
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Merge type.
const TensorInfo & GetTensorInfo() const override
Definition Layer.cpp:100
const TensorShape & GetShape() const
Definition Tensor.hpp:193
Copyright (c) 2021 ARM Limited and Contributors.
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below.
Definition Types.hpp:494
void ConditionalThrowIfNotEqual(const std::string &message, const ComparedType &leftHandSide, const ComparedType &rightHandSide)
ComparedType must support: operator==(const ComparedType&) operator<<(ostream&, const ComparedType&)
void IgnoreUnused(Ts &&...)