// // Copyright © 2019 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include "NeonBaseWorkload.hpp" #include namespace armnn { arm_compute::Status NeonDepthToSpaceWorkloadValidate(const TensorInfo& input, const TensorInfo& output, const DepthToSpaceDescriptor& descriptor); class NeonDepthToSpaceWorkload : public NeonBaseWorkload { public: NeonDepthToSpaceWorkload(const DepthToSpaceQueueDescriptor& descriptor, const WorkloadInfo& info); void Execute() const override; private: mutable arm_compute::NEDepthToSpaceLayer m_Layer; }; } // namespace armnn