// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #pragma once #include #include namespace armnn { template class RefDebugWorkload : public TypedWorkload { public: static const std::string& GetName() { static const std::string name = std::string("RefDebug") + GetDataTypeName(DataType) + "Workload"; return name; } using TypedWorkload::m_Data; using TypedWorkload::TypedWorkload; void Execute() const override; }; using RefDebugFloat32Workload = RefDebugWorkload; using RefDebugUint8Workload = RefDebugWorkload; } //namespace armnn