// // Copyright © 2019 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include "ClBaseWorkload.hpp" #include namespace armnn { arm_compute::Status ClDepthToSpaceWorkloadValidate(const TensorInfo& input, const TensorInfo& output, const DepthToSpaceDescriptor& descriptor); class ClDepthToSpaceWorkload : public ClBaseWorkload { 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