// // Copyright © 2017 Arm Ltd. All rights reserved. // See LICENSE file in the project root for full license information. // #pragma once #include "backends/ClWorkloadUtils.hpp" namespace armnn { class ClDepthwiseConvolutionUint8Workload : public Uint8Workload { public: ClDepthwiseConvolutionUint8Workload(const DepthwiseConvolution2dQueueDescriptor& descriptor, const WorkloadInfo& info); void Execute() const override; private: typedef uint8_t KernelDataType; typedef int32_t BiasDataType; mutable std::unique_ptr m_pDepthwiseConvolutionLayer; arm_compute::CLTensor m_KernelTensor; arm_compute::CLTensor m_BiasTensor; template friend void InitClDepthwiseConvolutionWorkload(WorkloadType& workload); }; } //namespace armnn