// // Copyright © 2017 Arm Ltd. All rights reserved. // See LICENSE file in the project root for full license information. // #pragma once #include "backends/Workload.hpp" #include "backends/WorkloadData.hpp" namespace armnn { class RefFullyConnectedUint8Workload : public Uint8Workload { public: explicit RefFullyConnectedUint8Workload(const FullyConnectedQueueDescriptor& descriptor, const WorkloadInfo& info); virtual void Execute() const override; private: std::unique_ptr m_Weight; std::unique_ptr m_Bias; }; } //namespace armnn