blob: f172be9f51da66b8b1dfe883724da9b3628001d4 [file] [log] [blame]
Jim Flynn3e9bc192022-03-23 23:01:26 +00001//
2// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "BackendProfiling.hpp"
7
8#include <client/include/backends/IBackendProfiling.hpp>
9
10namespace arm
11{
12
13namespace pipe
14{
15
16std::unique_ptr<IBackendProfiling> IBackendProfiling::CreateBackendProfiling(const ProfilingOptions& options,
17 IProfilingService& profilingService,
18 const std::string& backendId)
19{
20 return std::make_unique<BackendProfiling>(options, profilingService, backendId);
21}
22
23} // namespace pipe
24} // namespace arm