blob: bbaf899ca6e42fd462341c542cf6c8a54baaf2e6 [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
8#include "backends/Workload.hpp"
9#include "backends/WorkloadData.hpp"
10
11namespace armnn
12{
13
14class RefResizeBilinearUint8Workload : public Uint8Workload<ResizeBilinearQueueDescriptor>
15{
16public:
17 using Uint8Workload<ResizeBilinearQueueDescriptor>::Uint8Workload;
18 virtual void Execute() const override;
19};
20
21} //namespace armnn