// // Copyright © 2017 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "SoftmaxLayer.hpp" #include "LayerCloneBase.hpp" #include #include #include namespace armnn { SoftmaxLayer::SoftmaxLayer(const SoftmaxDescriptor ¶m, const char* name) : LayerWithParameters(1, 1, LayerType::Softmax, param, name) { } std::unique_ptr SoftmaxLayer::CreateWorkload(const IWorkloadFactory& factory) const { SoftmaxQueueDescriptor descriptor; SetAdditionalInfo(descriptor); return factory.CreateWorkload(LayerType::Softmax, descriptor, PrepInfoAndDesc(descriptor)); } SoftmaxLayer* SoftmaxLayer::Clone(Graph& graph) const { return CloneBase(graph, m_Param, GetName()); } void SoftmaxLayer::ValidateTensorShapesFromInputs() { VerifyLayerConnections(1, CHECK_LOCATION()); const TensorShape& outputShape = GetOutputSlot(0).GetTensorInfo().GetShape(); VerifyShapeInferenceType(outputShape, m_ShapeInferenceMethod); auto inferredShapes = InferOutputShapes({ GetInputSlot(0).GetConnection()->GetTensorInfo().GetShape() }); ARMNN_ASSERT(inferredShapes.size() == 1); ValidateAndCopyShape(outputShape, inferredShapes[0], m_ShapeInferenceMethod, "SoftmaxLayer"); } ARMNN_NO_DEPRECATE_WARN_BEGIN void SoftmaxLayer::Accept(ILayerVisitor& visitor) const { visitor.VisitSoftmaxLayer(this, GetParameters(), GetName()); } ARMNN_NO_DEPRECATE_WARN_END } // namespace armnn