// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include "NeonBaseWorkload.hpp" #include #include #include #include namespace armnn { arm_compute::Status NeonSoftmaxWorkloadValidate(const TensorInfo& input, const TensorInfo& output, const SoftmaxDescriptor& descriptor); class NeonSoftmaxWorkload : public NeonBaseWorkload { public: NeonSoftmaxWorkload(const SoftmaxQueueDescriptor& descriptor, const WorkloadInfo& info, std::shared_ptr& memoryManager); virtual void Execute() const override; private: std::unique_ptr m_SoftmaxLayer; }; } //namespace armnn