mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
Change-Id: I0ccc68216c1c3bb23d0389bec17124e09e4f98e1 Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
24 lines
600 B
C++
24 lines
600 B
C++
/*
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/helpers/hw_info.h"
|
|
#include "core/utilities/debug_settings_reader_creator.h"
|
|
#include "runtime/os_interface/debug_settings_manager.h"
|
|
|
|
namespace NEO {
|
|
|
|
template <DebugFunctionalityLevel DebugLevel>
|
|
DebugSettingsManager<DebugLevel>::DebugSettingsManager() {
|
|
}
|
|
|
|
template <DebugFunctionalityLevel DebugLevel>
|
|
DebugSettingsManager<DebugLevel>::~DebugSettingsManager() = default;
|
|
|
|
// Global Debug Settings Manager
|
|
DebugSettingsManager<globalDebugFunctionalityLevel> DebugManager;
|
|
} // namespace NEO
|