blob: e489cc7d81d221c6c917ed949422b708cf106ce4 [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include "backends/Workload.hpp"
#include "backends/WorkloadData.hpp"
namespace armnn
{
class RefFullyConnectedUint8Workload : public Uint8Workload<FullyConnectedQueueDescriptor>
{
public:
explicit RefFullyConnectedUint8Workload(const FullyConnectedQueueDescriptor& descriptor,
const WorkloadInfo& info);
virtual void Execute() const override;
private:
std::unique_ptr<ScopedCpuTensorHandle> m_Weight;
std::unique_ptr<ScopedCpuTensorHandle> m_Bias;
};
} //namespace armnn