Files
compute-runtime/shared/offline_compiler/source/debug_variables_helper_ocloc.cpp
Chodor, Jaroslaw 7b13028ac4 feature: Allow debug keys in release ocloc on windows
Requires NEOReadDebugKeys=1

Related-To: NEO-16997
Signed-off-by: Chodor, Jaroslaw <jaroslaw.chodor@intel.com>
2025-12-16 14:48:52 +01:00

19 lines
381 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/debug_settings/debug_variables_helper.h"
#include "shared/source/os_interface/debug_env_reader.h"
namespace NEO {
bool isDebugKeysReadEnabled() {
EnvironmentVariableReader envReader;
return envReader.getSetting("NEOReadDebugKeys", false);
}
} // namespace NEO