// // Copyright © 2017 Arm Ltd. All rights reserved. // See LICENSE file in the project root for full license information. // #pragma once #include #include namespace armnn { template LayerType* Layer::CloneBase(Graph& graph, Params&& ... params) const { LayerType* const layer = graph.AddLayer(std::forward(params)...); layer->SetComputeDevice(m_ComputeDevice); layer->SetGuid(GetGuid()); return layer; } } // namespace