blob: c9801a3ae10ac849dcc0fc0afc51d413b2021c15 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "backends/Workload.hpp"
#include <arm_compute/runtime/CL/CLFunctions.h>
namespace armnn
{
// Reshape
class ClReshapeUint8Workload : public Uint8Workload<ReshapeQueueDescriptor>
{
public:
ClReshapeUint8Workload( const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info);
void Execute() const override;
private:
mutable arm_compute::CLReshapeLayer m_Layer;
};
} //namespace armnn