mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Related-To: NEO-4359 Change-Id: I2dc106cc2d7bc9087fb3925051969fa2a245e6f5 Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
26 lines
601 B
C++
26 lines
601 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/helpers/non_copyable_or_moveable.h"
|
|
|
|
#include <string>
|
|
namespace NEO {
|
|
|
|
class HwDeviceId : NonCopyableClass {
|
|
public:
|
|
HwDeviceId(int fileDescriptorIn, const char *pciPathIn) : fileDescriptor(fileDescriptorIn), pciPath(pciPathIn) {}
|
|
~HwDeviceId();
|
|
int getFileDescriptor() const { return fileDescriptor; }
|
|
const char *getPciPath() const { return pciPath.c_str(); }
|
|
|
|
protected:
|
|
const int fileDescriptor;
|
|
const std::string pciPath;
|
|
};
|
|
} // namespace NEO
|