// // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include #include #include #include "ClBaseWorkload.hpp" namespace armnn { arm_compute::Status ClLogSoftmaxWorkloadValidate(const TensorInfo& input, const TensorInfo& output, const LogSoftmaxDescriptor& descriptor); class ClLogSoftmaxWorkload : public ClBaseWorkload { public: ClLogSoftmaxWorkload(const LogSoftmaxQueueDescriptor& descriptor, const WorkloadInfo& info, std::shared_ptr& memoryManager, const arm_compute::CLCompileContext& clCompileContext); void Execute() const override; private: mutable arm_compute::CLLogSoftmaxLayer m_LogSoftmaxLayer; }; } // namespace armnn