// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include #include "arm_compute/runtime/MemoryManagerOnDemand.h" #include namespace armnn { // Softmax class ClSoftmaxUint8Workload : public Uint8Workload { public: ClSoftmaxUint8Workload(const SoftmaxQueueDescriptor& descriptor, const WorkloadInfo& info, std::shared_ptr& memoryManager); void Execute() const override; private: mutable arm_compute::CLSoftmaxLayer m_SoftmaxLayer; }; } //namespace armnn