// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include namespace armnn { class NeonDepthwiseConvolutionFloatWorkload : public FloatWorkload { public: NeonDepthwiseConvolutionFloatWorkload(const DepthwiseConvolution2dQueueDescriptor& descriptor, const WorkloadInfo& info); virtual void Execute() const override; private: mutable std::unique_ptr m_pDepthwiseConvolutionLayer; std::unique_ptr m_KernelTensor; std::unique_ptr m_BiasTensor; void FreeUnusedTensors(); }; } //namespace armnn