blob: 972b2dd54a6b4b1c9e41e6451486736cfa160535 [file] [log] [blame]
//
// Copyright © 2021 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <armnn/backends/Workload.hpp>
#include <arm_compute/core/Error.h>
#include <arm_compute/runtime/CL/functions/CLChannelShuffleLayer.h>
namespace armnn
{
arm_compute::Status ClChannelShuffleValidate(const TensorInfo& input,
const TensorInfo& output,
const ChannelShuffleDescriptor& descriptor);
class ClChannelShuffleWorkload : public BaseWorkload<ChannelShuffleQueueDescriptor>
{
public:
ClChannelShuffleWorkload(const ChannelShuffleQueueDescriptor& descriptor,
const WorkloadInfo& info,
const arm_compute::CLCompileContext& clCompileContext);
virtual void Execute() const override;
private:
mutable arm_compute::CLChannelShuffleLayer m_ChannelShuffleLayer;
};
} // namespace armnn