blob: 3e5cca1b9ea33baffe1f7bd33d6139849bfd9a9a [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//
#pragma once
#include <backends/NeonWorkloadUtils.hpp>
namespace armnn
{
class NeonReshapeFloat32Workload : public FloatWorkload<ReshapeQueueDescriptor>
{
public:
NeonReshapeFloat32Workload(const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);
virtual void Execute() const override;
private:
mutable arm_compute::NEReshapeLayer m_Layer;
};
} //namespace armnn