ArmNN
 21.02
UnmapLayer.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 #include "UnmapLayer.hpp"
6 
7 #include "LayerCloneBase.hpp"
8 
9 #include <armnn/TypesUtils.hpp>
13 
14 namespace armnn
15 {
16 
17 UnmapLayer::UnmapLayer(const char* name)
18  : Layer(1, 0, LayerType::Unmap, name)
19 {
20 }
21 
23 {
24  return CloneBase<UnmapLayer>(graph, GetName());
25 }
26 
27 std::unique_ptr<IWorkload> UnmapLayer::CreateWorkload(const IWorkloadFactory& factory) const
28 {
29  IgnoreUnused(factory);
30  UnmapQueueDescriptor descriptor;
31  SetAdditionalInfo(descriptor);
32 
33  //This is different from other workloads. Does not get created by the workload factory.
34  return std::make_unique<UnmapWorkload>(descriptor, PrepInfoAndDesc(descriptor));
35 }
36 
38 {
39  // validates that the input is connected.
42 }
43 
44 void UnmapLayer::Accept(ILayerVisitor& visitor) const
45 {
46  IgnoreUnused(visitor);
47  throw armnn::Exception("UnmapLayer should not appear in an input graph");
48 }
49 
50 } // namespace armnn
UnmapLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
Definition: UnmapLayer.cpp:22
Copyright (c) 2021 ARM Limited and Contributors.
void IgnoreUnused(Ts &&...)
unsigned int GetNumOutputSlots() const override
Returns the number of connectable output slots.
Definition: Layer.hpp:314
UnmapLayer(const char *name)
Constructor to create a UnmapLayer.
Definition: UnmapLayer.cpp:17
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:348
This layer represents a memory copy operation.
Definition: UnmapLayer.hpp:13
WorkloadInfo PrepInfoAndDesc(QueueDescriptor &descriptor) const
Helper function to reduce duplication in *LayerCreateWorkload.
Definition: Layer.hpp:381
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the Unmap type.
Definition: UnmapLayer.cpp:27
#define ARMNN_ASSERT(COND)
Definition: Assert.hpp:14
#define CHECK_LOCATION()
Definition: Exceptions.hpp:197
void SetAdditionalInfo(QueueDescriptor &descriptor) const
Definition: Layer.cpp:245
Base class for all ArmNN exceptions so that users can filter to just those.
Definition: Exceptions.hpp:46
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 UnmapLayer.
Definition: UnmapLayer.cpp:37
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
Definition: UnmapLayer.cpp:44
LayerType
When adding a new layer, adapt also the LastLayer enum value in the enum class LayerType below...
Definition: Types.hpp:419