// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include #include "Decoders.hpp" #include "Encoders.hpp" namespace armnn { class RefConvolution2dWorkload : public BaseWorkload { public: explicit RefConvolution2dWorkload(const Convolution2dQueueDescriptor& descriptor, const WorkloadInfo& info); void PostAllocationConfigure() override; virtual void Execute() const override; private: std::unique_ptr m_Weight; std::unique_ptr m_Bias; std::unique_ptr> m_InputDecoder; std::unique_ptr> m_OutputEncoder; std::unique_ptr> m_FilterDecoder; std::unique_ptr> m_BiasDecoder; TensorShape m_InputShape; TensorShape m_OutputShape; TensorShape m_FilterShape; }; } //namespace armnn