// // Copyright © 2019 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #include "LogSoftmaxLayer.hpp" #include "LayerCloneBase.hpp" #include #include #include namespace armnn { LogSoftmaxLayer::LogSoftmaxLayer(const LogSoftmaxDescriptor ¶m, const char* name) : LayerWithParameters(1, 1, LayerType::LogSoftmax, param, name) {} std::unique_ptr LogSoftmaxLayer::CreateWorkload(const IWorkloadFactory& factory) const { LogSoftmaxQueueDescriptor descriptor; return factory.CreateLogSoftmax(descriptor, PrepInfoAndDesc(descriptor)); } LogSoftmaxLayer* LogSoftmaxLayer::Clone(Graph& graph) const { return CloneBase(graph, m_Param, GetName()); } void LogSoftmaxLayer::ValidateTensorShapesFromInputs(ShapeInferenceMethod shapeInferenceMethod) { IgnoreUnused(shapeInferenceMethod); VerifyLayerConnections(1, CHECK_LOCATION()); auto inferredShapes = InferOutputShapes({ GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape() }); ARMNN_ASSERT(inferredShapes.size() == 1); ConditionalThrowIfNotEqual( "LogSoftmaxLayer: TensorShape set on OutputSlot[0] does not match the inferred shape.", GetOutputSlot(0).GetTensorInfo().GetShape(), inferredShapes[0]); } void LogSoftmaxLayer::Accept(ILayerVisitor& visitor) const { visitor.VisitLogSoftmaxLayer(this, GetParameters(), GetName()); } } // namespace armnn