// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #include #include #include "Decoders.hpp" #include "Encoders.hpp" #include namespace armnn { class RefDepthwiseConvolution2dWorkload : public BaseWorkload { public: explicit RefDepthwiseConvolution2dWorkload(const DepthwiseConvolution2dQueueDescriptor &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