Release 18.08
[platform/upstream/armnn.git] / src / armnn / backends / ClWorkloads / ClDepthwiseConvolutionUint8Workload.hpp
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // See LICENSE file in the project root for full license information.
4 //
5
6 #pragma once
7
8 #include "ClDepthwiseConvolutionBaseWorkload.hpp"
9
10 #include "backends/ClWorkloadUtils.hpp"
11
12 namespace armnn
13 {
14
15 class ClDepthwiseConvolutionUint8Workload : public ClDepthwiseConvolutionBaseWorkload<DataType::QuantisedAsymm8>
16 {
17 public:
18     ClDepthwiseConvolutionUint8Workload(const DepthwiseConvolution2dQueueDescriptor& descriptor,
19                                         const WorkloadInfo& info);
20     void Execute() const override;
21 };
22
23 } //namespace armnn
24
25