ArmNN
 20.02
ElementwiseUnaryLayer.cpp
Go to the documentation of this file.
1 //
2 // Copyright © 2019 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
7 
8 #include "LayerCloneBase.hpp"
9 
12 
13 #include <algorithm>
14 
15 namespace armnn
16 {
17 
19  : LayerWithParameters(1, 1, LayerType::ElementwiseUnary, param, name)
20 {
21 }
22 
23 std::unique_ptr<IWorkload> ElementwiseUnaryLayer::CreateWorkload(const IWorkloadFactory& factory) const
24 {
26  return factory.CreateElementwiseUnary(descriptor, PrepInfoAndDesc(descriptor));
27 }
28 
30 {
31  return CloneBase<ElementwiseUnaryLayer>(graph, m_Param, GetName());
32 }
33 
34 std::vector<TensorShape> ElementwiseUnaryLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
35 {
36  // Should return the shape of the input tensor
37  BOOST_ASSERT(inputShapes.size() == 1);
38  const TensorShape& input = inputShapes[0];
39 
40  return std::vector<TensorShape>({ input });
41 }
42 
44 {
46 
47  std::vector<TensorShape> inferredShapes = InferOutputShapes({
49  BOOST_ASSERT(inferredShapes.size() == 1);
50 
51  ConditionalThrowIfNotEqual<LayerValidationException>(
52  "ElementwiseUnaryLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
54  inferredShapes[0]);
55 }
56 
58 {
60 }
61 
62 } // namespace armnn
ElementwiseUnaryDescriptor m_Param
The parameters for the layer (not including tensor-valued weights etc.).
const ElementwiseUnaryDescriptor & GetParameters() const
const TensorShape & GetShape() const
Definition: Tensor.hpp:88
virtual std::unique_ptr< IWorkload > CreateWorkload(const IWorkloadFactory &factory) const override
Makes a workload for the elementwiseUnary type.
std::vector< TensorShape > InferOutputShapes(const std::vector< TensorShape > &inputShapes) const override
Returns inputShapes by default.
virtual std::unique_ptr< IWorkload > CreateElementwiseUnary(const ElementwiseUnaryQueueDescriptor &descriptor, const WorkloadInfo &Info) const
Copyright (c) 2020 ARM Limited.
virtual void VisitElementwiseUnaryLayer(const IConnectableLayer *layer, const ElementwiseUnaryDescriptor &elementwiseUnaryDescriptor, const char *name=nullptr)=0
Function a ElementwiseUnary layer should call back to when its Accept(ILayerVisitor&) function is inv...
const IOutputSlot * GetConnection() const override
Definition: Layer.hpp:199
void Accept(ILayerVisitor &visitor) const override
Apply a visitor to this layer.
This layer represents a elementwiseUnary operation.
void VerifyLayerConnections(unsigned int expectedConnections, const CheckLocation &location) const
Definition: Layer.cpp:338
ElementwiseUnaryLayer(const ElementwiseUnaryDescriptor &param, const char *name)
Constructor to create a ElementwiseUnaryLayer.
const InputSlot & GetInputSlot(unsigned int index) const override
Get a const input slot handle by slot index.
Definition: Layer.hpp:310
#define CHECK_LOCATION()
Definition: Exceptions.hpp:192
A ElementwiseUnaryDescriptor for the ElementwiseUnaryLayer.
Definition: Descriptors.hpp:82
ElementwiseUnaryLayer * Clone(Graph &graph) const override
Creates a dynamically-allocated copy of this layer.
void ValidateTensorShapesFromInputs() override
Check if the input tensor shape(s) will lead to a valid configuration of ElementwiseUnaryLayer.
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:312
virtual const TensorInfo & GetTensorInfo() const =0
const char * GetName() const override
Returns the name of the layer.
Definition: Layer.hpp:305
const TensorInfo & GetTensorInfo() const override
Definition: Layer.cpp:63