// // Copyright © 2022 Arm Ltd and Contributors. All rights reserved. // SPDX-License-Identifier: MIT // #include "BackendProfiling.hpp" #include namespace arm { namespace pipe { std::unique_ptr IBackendProfiling::CreateBackendProfiling(const ProfilingOptions& options, IProfilingService& profilingService, const std::string& backendId) { return std::make_unique(options, profilingService, backendId); } } // namespace pipe } // namespace arm