blob: f29f416907c43dc4d0bc221aef6a2df75a83ed09 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5
6#pragma once
7
David Beckac42efd2018-09-26 17:41:13 +01008#include <backends/Workload.hpp>
Matthew Bentham14e46692018-09-20 15:35:30 +01009
10#include <arm_compute/runtime/CL/CLFunctions.h>
telsoa014fcda012018-03-09 14:13:49 +000011
12namespace armnn
13{
14
arovir019e53a352018-08-31 15:26:35 +010015class ClResizeBilinearFloatWorkload : public FloatWorkload<ResizeBilinearQueueDescriptor>
telsoa014fcda012018-03-09 14:13:49 +000016{
17public:
arovir019e53a352018-08-31 15:26:35 +010018 ClResizeBilinearFloatWorkload(const ResizeBilinearQueueDescriptor& descriptor, const WorkloadInfo& info);
telsoa014fcda012018-03-09 14:13:49 +000019 void Execute() const override;
20
21private:
22 mutable arm_compute::CLScale m_ResizeBilinearLayer;
23};
24
Matthew Bentham14e46692018-09-20 15:35:30 +010025} //namespace armnn