1 // 2 // Copyright © 2022 Arm Ltd and Contributors. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 6 #pragma once 7 8 #include <armnn/IRuntime.hpp> 9 10 #include <client/include/ProfilingOptions.hpp> 11 12 namespace arm 13 { 14 15 namespace pipe 16 { 17 18 ProfilingOptions ConvertExternalProfilingOptions( 19 const armnn::IRuntime::CreationOptions::ExternalProfilingOptions& options); 20 21 } // namespace pipe 22 23 } // namespace arm 24