From 3537c2ca7ebf31c1673b9ec2bb0c17b0406bbae0 Mon Sep 17 00:00:00 2001 From: surmeh01 Date: Fri, 18 May 2018 16:31:43 +0100 Subject: Release 18.05 --- src/armnn/layers/FloorLayer.cpp | 49 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/armnn/layers/FloorLayer.cpp (limited to 'src/armnn/layers/FloorLayer.cpp') diff --git a/src/armnn/layers/FloorLayer.cpp b/src/armnn/layers/FloorLayer.cpp new file mode 100644 index 0000000000..a9ddcca60c --- /dev/null +++ b/src/armnn/layers/FloorLayer.cpp @@ -0,0 +1,49 @@ +// +// Copyright © 2017 Arm Ltd. All rights reserved. +// See LICENSE file in the project root for full license information. +// +#include "FloorLayer.hpp" + +#include "LayerCloneBase.hpp" + +#include +#include +#include + +namespace armnn +{ + +FloorLayer::FloorLayer(const char* name) + : Layer(1, 1, LayerType::Floor, name) +{ +} + +std::unique_ptr FloorLayer::CreateWorkload(const Graph& graph, + const IWorkloadFactory& factory) const +{ + FloorQueueDescriptor descriptor; + return factory.CreateFloor(descriptor, PrepInfoAndDesc(descriptor, graph)); +} + +FloorLayer* FloorLayer::Clone(Graph& graph) const +{ + return CloneBase(graph, GetName()); +} + +void FloorLayer::ValidateTensorShapesFromInputs() +{ + ConditionalThrow(GetInputSlot(0).GetConnection() != nullptr, + "FloorLayer: InputSlot must be connected to an OutputSlot"); + ConditionalThrow(GetInputSlot(0).GetConnection()->IsTensorInfoSet(), + "FloorLayer: TensorInfo must be set on connected OutputSlot."); + + // input and output shapes are the same + IOutputSlot* input = GetInputSlot(0).GetConnection(); + TensorShape const& outShape = input->GetTensorInfo().GetShape(); + ConditionalThrowIfNotEqual( + "FloorLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.", + GetOutputSlot(0).GetTensorInfo().GetShape(), + outShape); +} + +} // namespace armnn -- cgit v1.2.1