mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 10:17:01 +08:00
16 lines
329 B
C++
16 lines
329 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "core/helpers/deferred_deleter_helper.h"
|
||
|
|
#include "runtime/os_interface/debug_settings_manager.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
bool isDeferredDeleterEnabled() {
|
||
|
|
return DebugManager.flags.EnableDeferredDeleter.get();
|
||
|
|
}
|
||
|
|
} // namespace NEO
|