// // 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 namespace armnn { template class RefPermuteWorkload : public TypedWorkload { public: static const std::string& GetName() { static const std::string name = std::string("RefPermute") + GetDataTypeName(DataType) + "Workload"; return name; } using TypedWorkload::m_Data; using TypedWorkload::TypedWorkload; void Execute() const override; }; using RefPermuteFloat32Workload = RefPermuteWorkload; using RefPermuteUint8Workload = RefPermuteWorkload; } //namespace armnn