aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/layers/PreluLayer.cpp
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2019-06-12 15:42:18 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-06-17 16:15:22 +0000
commit0e406eed386a4ea015ec703c84a74ea775d88b99 (patch)
treec176eab811b78ce83e86bca2db883e9770708eb2 /src/armnn/layers/PreluLayer.cpp
parente52211e1544a30d24b29523c389116a9e4446e8c (diff)
downloadarmnn-0e406eed386a4ea015ec703c84a74ea775d88b99.tar.gz
IVGCVSW-3267 Add Arm NN front end support for the new Prelu Activation layer
* Added new PreluLayer class * Made necessary changes to ILayerSupport, ILayerVisitor, etc. * Added unit tests Change-Id: Ifcfb78e823bb5a245ed1dad15290d2f60115c882 Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com>
Diffstat (limited to 'src/armnn/layers/PreluLayer.cpp')
-rw-r--r--src/armnn/layers/PreluLayer.cpp121
1 files changed, 121 insertions, 0 deletions
diff --git a/src/armnn/layers/PreluLayer.cpp b/src/armnn/layers/PreluLayer.cpp
new file mode 100644
index 0000000000..6040248391
--- /dev/null
+++ b/src/armnn/layers/PreluLayer.cpp
@@ -0,0 +1,121 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#include "PreluLayer.hpp"
+
+#include "LayerCloneBase.hpp"
+
+#include <backendsCommon/WorkloadData.hpp>
+#include <backendsCommon/WorkloadFactory.hpp>
+#include <backendsCommon/CpuTensorHandle.hpp>
+
+namespace armnn
+{
+
+PreluLayer::PreluLayer(const char* name)
+ : Layer(2, 1, LayerType::Prelu, name)
+{}
+
+std::unique_ptr<IWorkload> PreluLayer::CreateWorkload(const Graph& graph,
+ const IWorkloadFactory& factory) const
+{
+ PreluQueueDescriptor descriptor;
+
+ return factory.CreatePrelu(descriptor, PrepInfoAndDesc(descriptor, graph));
+}
+
+PreluLayer* PreluLayer::Clone(Graph& graph) const
+{
+ auto layer = CloneBase<PreluLayer>(graph, GetName());
+
+ return std::move(layer);
+}
+
+std::vector<TensorShape> PreluLayer::InferOutputShapes(const std::vector<TensorShape>& inputShapes) const
+{
+ BOOST_ASSERT(inputShapes.size() == 2);
+
+ const TensorShape& inputShape = inputShapes[0];
+ const TensorShape& alphaShape = inputShapes[1];
+
+ const unsigned int inputShapeDimensions = inputShape.GetNumDimensions();
+ const unsigned int alphaShapeDimensions = alphaShape.GetNumDimensions();
+
+ BOOST_ASSERT(inputShapeDimensions > 0);
+ BOOST_ASSERT(alphaShapeDimensions > 0);
+
+ // The size of the output is the maximum size along each dimension of the input operands,
+ // it starts with the trailing dimensions, and works its way forward
+
+ unsigned int outputDimensions = std::max(inputShapeDimensions, alphaShapeDimensions);
+
+ TensorShape outputShape(outputDimensions);
+
+ int inputShapeIndex = boost::numeric_cast<int>(inputShapeDimensions) - 1;
+ int alphaShapeIndex = boost::numeric_cast<int>(alphaShapeDimensions) - 1;
+ unsigned int outputShapeIndex = outputDimensions - 1;
+
+ // Loop backwards through the common part of the shapes
+ while (inputShapeIndex >= 0 && alphaShapeIndex >= 0)
+ {
+ unsigned int inputDimension = inputShape[boost::numeric_cast<unsigned int>(inputShapeIndex)];
+ unsigned int alphaDimension = alphaShape[boost::numeric_cast<unsigned int>(alphaShapeIndex)];
+
+ // Check that the inputs are broadcast compatible
+ BOOST_ASSERT_MSG(inputDimension == alphaDimension || inputDimension == 1 || alphaDimension == 1,
+ "PreluLayer: Dimensions should either match or one should be of size 1");
+
+ outputShape[outputShapeIndex] = std::max(inputDimension, alphaDimension);
+
+ inputShapeIndex--;
+ alphaShapeIndex--;
+ outputShapeIndex--;
+ }
+
+ // Loop backwards through the remaing part of the input shape (if any)
+ while (inputShapeIndex >= 0)
+ {
+ outputShape[outputShapeIndex] = inputShape[boost::numeric_cast<unsigned int>(inputShapeIndex)];
+
+ inputShapeIndex--;
+ outputShapeIndex--;
+ }
+
+ // Loop backwards through the remaing part of the alpha shape (if any)
+ while (alphaShapeIndex >= 0)
+ {
+ outputShape[outputShapeIndex] = alphaShape[boost::numeric_cast<unsigned int>(alphaShapeIndex)];
+
+ alphaShapeIndex--;
+ outputShapeIndex--;
+ }
+
+ return { outputShape };
+}
+
+void PreluLayer::ValidateTensorShapesFromInputs()
+{
+ VerifyLayerConnections(2, CHECK_LOCATION());
+
+ std::vector<TensorShape> inferredShapes = InferOutputShapes(
+ {
+ GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape(),
+ GetInputSlot(1).GetConnection()->GetTensorInfo().GetShape()
+ });
+
+ BOOST_ASSERT(inferredShapes.size() == 1);
+
+ ConditionalThrowIfNotEqual<LayerValidationException>(
+ "PreluLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.",
+ GetOutputSlot(0).GetTensorInfo().GetShape(),
+ inferredShapes[0]);
+}
+
+void PreluLayer::Accept(ILayerVisitor& visitor) const
+{
+ visitor.VisitPreluLayer(this, GetName());
+}
+
+} // namespace armnn