blob: 747aaba85bd31c4315a2eb47aa12a5943377589f [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <armnn/Descriptors.hpp>
#include <armnn/backends/Workload.hpp>
#include <arm_compute/core/Error.h>
#include <arm_compute/runtime/IFunction.h>
#include <arm_compute/runtime/MemoryManagerOnDemand.h>
#include <memory>
namespace armnn
{
arm_compute::Status NeonSoftmaxWorkloadValidate(const TensorInfo& input,
const TensorInfo& output,
const SoftmaxDescriptor& descriptor);
class NeonSoftmaxWorkload : public BaseWorkload<SoftmaxQueueDescriptor>
{
public:
NeonSoftmaxWorkload(const SoftmaxQueueDescriptor& descriptor, const WorkloadInfo& info,
std::shared_ptr<arm_compute::MemoryManagerOnDemand>& memoryManager);
virtual void Execute() const override;
private:
std::unique_ptr<arm_compute::IFunction> m_SoftmaxLayer;
};
} //namespace armnn