Files
compute-runtime/runtime/os_interface/windows/driver_info.cpp
Jobczyk, Lukasz 86edfea3bf Fix OCL specific registry path in a core dir
Change-Id: I5b7792582e6c77a29ffb42b8fe024bc826ae1867
Signed-off-by: Jobczyk, Lukasz <lukasz.jobczyk@intel.com>
2019-09-02 17:33:50 +02:00

55 lines
1.5 KiB
C++

/*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "runtime/device/driver_info.h"
#include "core/os_interface/windows/debug_registry_reader.h"
#include "runtime/os_interface/windows/driver_info.h"
#include "runtime/os_interface/windows/os_interface.h"
#include "runtime/os_interface/windows/wddm/wddm.h"
namespace NEO {
DriverInfo *DriverInfo::create(OSInterface *osInterface) {
if (osInterface) {
auto wddm = osInterface->get()->getWddm();
DEBUG_BREAK_IF(wddm == nullptr);
std::string path(wddm->getDeviceRegistryPath());
auto result = new DriverInfoWindows();
path = result->trimRegistryKey(path);
result->setRegistryReader(new RegistryReader(false, path));
return result;
}
return nullptr;
};
void DriverInfoWindows::setRegistryReader(SettingsReader *reader) {
registryReader.reset(reader);
}
std::string DriverInfoWindows::trimRegistryKey(std::string path) {
std::string prefix("\\REGISTRY\\MACHINE\\");
auto pos = prefix.find(prefix);
if (pos != std::string::npos)
path.erase(pos, prefix.length());
return path;
}
std::string DriverInfoWindows::getDeviceName(std::string defaultName) {
return registryReader.get()->getSetting("HardwareInformation.AdapterString", defaultName);
}
std::string DriverInfoWindows::getVersion(std::string defaultVersion) {
return registryReader.get()->getSetting("DriverVersion", defaultVersion);
};
} // namespace NEO