// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "ClDepthwiseConvolutionBaseWorkload.hpp" namespace armnn { class ClDepthwiseConvolutionFloatWorkload : public ClDepthwiseConvolutionBaseWorkload { public: ClDepthwiseConvolutionFloatWorkload(const DepthwiseConvolution2dQueueDescriptor& descriptor, const WorkloadInfo& info); void Execute() const override; }; } //namespace armnn