mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 21:42:53 +08:00
Related-To: NEO-4744 Change-Id: I8a9a791a634f9c0c444695036d96e3c959c90de0 Signed-off-by: Slawomir Milczarek <slawomir.milczarek@intel.com>
19 lines
424 B
C++
19 lines
424 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/device/device.h"
|
|
#include "shared/source/helpers/hw_info.h"
|
|
|
|
namespace NEO {
|
|
|
|
const std::string Device::getDeviceName(const HardwareInfo &hwInfo) const {
|
|
std::string deviceName = "Intel(R) Graphics ";
|
|
deviceName += familyName[hwInfo.platform.eRenderCoreFamily];
|
|
return deviceName;
|
|
}
|
|
} // namespace NEO
|