1 // 2 // Copyright © 2022 Arm Ltd and Contributors. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 6 #pragma once 7 8 #include "RefBaseWorkload.hpp" 9 #include <armnn/backends/WorkloadData.hpp> 10 #include "Decoders.hpp" 11 #include "Encoders.hpp" 12 13 namespace armnn 14 { 15 16 class RefConvolution2dWorkload : public RefBaseWorkload<Convolution2dQueueDescriptor> 17 { 18 public: 19 explicit RefConvolution2dWorkload(const Convolution2dQueueDescriptor& descriptor, 20 const WorkloadInfo& info); 21 22 void Execute() const override; 23 void ExecuteAsync(ExecutionData& executionData) override; 24 25 private: 26 void Execute(std::vector<ITensorHandle*> inputs, std::vector<ITensorHandle*> outputs) const; 27 28 const TensorShape m_InputShape; 29 const TensorShape m_FilterShape; 30 const TensorShape m_OutputShape; 31 }; 32 33 } //namespace armnn