blob: 3599b60d8a163af66e49b260ea618a33d89e9af8 [file] [log] [blame]
//
// Copyright © 2019 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <armnn/Descriptors.hpp>
#include "ClBaseWorkload.hpp"
#include <arm_compute/runtime/CL/functions/CLDepthToSpaceLayer.h>
namespace armnn
{
arm_compute::Status ClDepthToSpaceWorkloadValidate(const TensorInfo& input,
const TensorInfo& output,
const DepthToSpaceDescriptor& descriptor);
class ClDepthToSpaceWorkload : public ClBaseWorkload<DepthToSpaceQueueDescriptor>
{
public:
ClDepthToSpaceWorkload(const DepthToSpaceQueueDescriptor& descriptor,
const WorkloadInfo& info,
const arm_compute::CLCompileContext& clCompileContext);
void Execute() const override;
private:
mutable arm_compute::CLDepthToSpaceLayer m_Layer;
};
} // namespace armnn