aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/RefWorkloads/RefDepthwiseConvolution2dUint8Workload.hpp
blob: bd9945f529969ff9334c7ca40f5f7eb641561273 (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 RefDepthwiseConvolution2dUint8Workload : public Uint8Workload<DepthwiseConvolution2dQueueDescriptor>
{
public:
    using Uint8Workload<DepthwiseConvolution2dQueueDescriptor>::Uint8Workload;
    virtual void Execute() const override;
};

} //namespace armnn