blob: 9549a3216521c3f7493ee8062310c289f341e210 [file] [log] [blame]
Aron Virginas-Tarcc0cefb2019-07-02 17:25:47 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8#include <backendsCommon/Workload.hpp>
9
Matthew Bentham9b3e7382020-02-05 21:39:55 +000010#include <arm_compute/runtime/CL/functions/CLScale.h>
Aron Virginas-Tarcc0cefb2019-07-02 17:25:47 +010011
12namespace armnn
13{
14
15arm_compute::Status ClResizeWorkloadValidate(const TensorInfo& input,
16 const TensorInfo& output,
17 const ResizeDescriptor& descriptor);
18
19class ClResizeWorkload : public BaseWorkload<ResizeQueueDescriptor>
20{
21public:
Sadik Armagane9444752020-12-02 11:28:58 +000022 ClResizeWorkload(const ResizeQueueDescriptor& descriptor,
23 const WorkloadInfo& info,
24 const arm_compute::CLCompileContext& clCompileContext);
Aron Virginas-Tarcc0cefb2019-07-02 17:25:47 +010025 void Execute() const override;
26
27private:
28 mutable arm_compute::CLScale m_ResizeLayer;
29};
30
31} // namespace armnn