mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 08:36:09 +08:00
This patch force KMD allocation path for USM shared Additionally we force 64kb page from lock which is required to properly program GPU VA Related-To: NEO-6913 Signed-off-by: Kamil Diedrich kamil.diedrich@intel.com
21 lines
336 B
C++
21 lines
336 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/os_interface/os_interface.h"
|
|
|
|
#include "shared/source/helpers/constants.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool OSInterface::osEnableLocalMemory = true;
|
|
|
|
namespace Directory {
|
|
bool ReturnEmptyFilesVector = false;
|
|
}
|
|
|
|
} // namespace NEO
|