mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-25 13:33:02 +08:00
- pass registry path in constructor Change-Id: I2a121da2c9483a0df088989feea490a638c63016 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
16 lines
308 B
C++
16 lines
308 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/debug_settings/debug_settings_manager.h"
|
|
#include "runtime/os_interface/ocl_reg_path.h"
|
|
|
|
using namespace std;
|
|
|
|
namespace NEO {
|
|
DebugSettingsManager<globalDebugFunctionalityLevel> DebugManager(oclRegPath);
|
|
}
|