blob: ada488a7b2bdfd2729ff023d92290bd47e6a961c [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <backendsCommon/Workload.hpp>
#include <backendsCommon/WorkloadData.hpp>
#include <armnn/Types.hpp>
namespace armnn
{
// Base class template providing an implementation of the Constant layer common to all data types.
class RefConstantWorkload : public BaseWorkload<ConstantQueueDescriptor>
{
public:
RefConstantWorkload(const ConstantQueueDescriptor& descriptor, const WorkloadInfo& info);
void PostAllocationConfigure() override;
virtual void Execute() const override;
};
} //namespace armnn