blob: b9f676de947aeb2dd0d41703d0cbd9cb4ed5c587 [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
telsoa01c577f2c2018-08-31 09:22:23 +01008#include "ClDepthwiseConvolutionBaseWorkload.hpp"
9
telsoa014fcda012018-03-09 14:13:49 +000010namespace armnn
11{
12
telsoa01c577f2c2018-08-31 09:22:23 +010013class ClDepthwiseConvolutionUint8Workload : public ClDepthwiseConvolutionBaseWorkload<DataType::QuantisedAsymm8>
telsoa014fcda012018-03-09 14:13:49 +000014{
15public:
16 ClDepthwiseConvolutionUint8Workload(const DepthwiseConvolution2dQueueDescriptor& descriptor,
17 const WorkloadInfo& info);
18 void Execute() const override;
telsoa014fcda012018-03-09 14:13:49 +000019};
20
21} //namespace armnn
22
23