// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include "backends/Workload.hpp" #include #include #include namespace armnn { class ClConvolution2dUint8Workload : public Uint8Workload { public: ClConvolution2dUint8Workload(const Convolution2dQueueDescriptor& descriptor, const WorkloadInfo& info, std::shared_ptr& memoryManager); void Execute() const override; private: mutable arm_compute::CLConvolutionLayer m_ConvolutionLayer; std::unique_ptr m_KernelTensor; std::unique_ptr m_BiasTensor; void FreeUnusedTensors(); }; } //namespace armnn