// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include namespace armnn { class RefDepthwiseConvolution2dUint8Workload : public Uint8Workload { public: explicit RefDepthwiseConvolution2dUint8Workload(const DepthwiseConvolution2dQueueDescriptor& descriptor, const WorkloadInfo& info); virtual void Execute() const override; private: std::unique_ptr m_Weight; std::unique_ptr m_Bias; }; } //namespace armnn