mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-27 07:44:16 +08:00
Keep disabled in ULTs, except multi thread tests. Related-To: NEO-13425 Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
14 lines
259 B
C++
14 lines
259 B
C++
/*
|
|
* Copyright (C) 2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/memory_manager/unified_memory_reuse_cleaner.h"
|
|
|
|
namespace NEO {
|
|
bool UnifiedMemoryReuseCleaner::isSupported() {
|
|
return true;
|
|
}
|
|
} // namespace NEO
|