mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 03:01:20 +08:00
Added chipset specific uuid retrieving functionality This is used by zeDeviceGetProperties Related-To: LOCI-2636 Signed-off-by: Joshua Santosh Ranjan <joshua.santosh.ranjan@intel.com>
18 lines
285 B
C++
18 lines
285 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
|
|
namespace NEO {
|
|
|
|
std::optional<std::string> getPciPath(int deviceFd);
|
|
std::optional<std::string> getPciLinkPath(int deviceFd);
|
|
|
|
} // namespace NEO
|