Files
compute-runtime/runtime/os_interface/windows/registry_reader.h
Katarzyna Cencelewska a99939b08f Fix dumping of cl_cache
- change creatOsReader and constructor of RegistryReader
- move body of constructors of RegistryReader from .h to .cpp

Change-Id: I57cbf51a57cb1cb7f9cd2473af766a79cf2035d2
2018-12-05 15:02:04 +01:00

33 lines
919 B
C++

/*
* Copyright (C) 2017-2018 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "runtime/utilities/debug_settings_reader.h"
#include "os_inc.h"
#include <string>
#include <stdint.h>
#include <Windows.h>
namespace OCLRT {
class RegistryReader : public SettingsReader {
public:
int32_t getSetting(const char *settingName, int32_t defaultValue) override;
bool getSetting(const char *settingName, bool defaultValue) override;
std::string getSetting(const char *settingName, const std::string &value) override;
RegistryReader(bool userScope);
RegistryReader(const std::string &regKey);
const char *appSpecificLocation(const std::string &name) override;
protected:
HKEY igdrclHkeyType = HKEY_LOCAL_MACHINE;
std::string registryReadRootKey = "Software\\Intel\\IGFX\\OCL";
void setUpProcessName();
std::string processName;
};
} // namespace OCLRT