aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/RefWorkloads/RefResizeBilinearUint8Workload.hpp
blob: f72fafda4f41410f6ca3a769cefdf96d0670e995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//

#pragma once

#include "backends/Workload.hpp"
#include "backends/WorkloadData.hpp"

namespace armnn
{

class RefResizeBilinearUint8Workload : public Uint8Workload<ResizeBilinearQueueDescriptor>
{
public:
    using Uint8Workload<ResizeBilinearQueueDescriptor>::Uint8Workload;
    virtual void Execute() const override;
};

} //namespace armnn