mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
Related-To: LOCI-4561 Signed-off-by: Joshua Santosh Ranjan <joshua.santosh.ranjan@intel.com>
16 lines
316 B
C++
16 lines
316 B
C++
/*
|
|
* Copyright (C) 2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "level_zero/tools/source/metrics/metric.h"
|
|
|
|
namespace L0 {
|
|
|
|
std::unique_ptr<MetricDeviceContext> MetricDeviceContext::create(Device &device) {
|
|
return std::make_unique<MetricDeviceContext>(device);
|
|
}
|
|
|
|
} // namespace L0
|