mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 00:58:39 +08:00
- Enable local memory in 32 bit scenarios. Change-Id: I091570a3d0aa6043febf2721480196425e058978 Signed-off-by: Michal Mrozek <michal.mrozek@intel.com>
15 lines
338 B
C++
15 lines
338 B
C++
/*
|
|
* Copyright (C) 2018-2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "core/memory_manager/memory_constants.h"
|
|
#include "runtime/os_interface/windows/os_interface.h"
|
|
#include "test.h"
|
|
|
|
TEST(osInterfaceTests, osInterfaceLocalMemoryEnabledByDefault) {
|
|
EXPECT_TRUE(NEO::OSInterface::osEnableLocalMemory);
|
|
}
|