aboutsummaryrefslogtreecommitdiff
path: root/profiling/client/src/backends/IBackendProfiling.cpp
blob: f172be9f51da66b8b1dfe883724da9b3628001d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "BackendProfiling.hpp"

#include <client/include/backends/IBackendProfiling.hpp>

namespace arm
{

namespace pipe
{

std::unique_ptr<IBackendProfiling> IBackendProfiling::CreateBackendProfiling(const ProfilingOptions& options,
                                                                             IProfilingService& profilingService,
                                                                             const std::string& backendId)
{
    return std::make_unique<BackendProfiling>(options, profilingService, backendId);
}

} // namespace pipe
} // namespace arm