blob: a0e33fa320e4f545c1bda9f856584e82f7e15679 [file] [log] [blame]
Laurent Carlier749294b2020-06-01 09:03:17 +01001//
telsoa014fcda012018-03-09 14:13:49 +00002// 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
Aron Virginas-Tarc9cc8042018-11-01 16:15:57 +00008#include <backendsCommon/Workload.hpp>
9#include <backendsCommon/WorkloadData.hpp>
telsoa014fcda012018-03-09 14:13:49 +000010
11namespace armnn
12{
13
Ellen Norris-Thompson719d2a92019-06-12 10:23:57 +010014class RefResizeBilinearWorkload : public BaseWorkload<ResizeBilinearQueueDescriptor>
telsoa014fcda012018-03-09 14:13:49 +000015{
16public:
Ellen Norris-Thompson719d2a92019-06-12 10:23:57 +010017 using BaseWorkload<ResizeBilinearQueueDescriptor>::BaseWorkload;
telsoa014fcda012018-03-09 14:13:49 +000018 virtual void Execute() const override;
19};
20
21} //namespace armnn