mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 23:33:20 +08:00
Change-Id: If965c79d70392db26597aea4c2f3b7ae2820fe96 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
20 lines
643 B
C++
20 lines
643 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/execution_environment/execution_environment.h"
|
|
#include "runtime/memory_manager/memory_manager.h"
|
|
#include "runtime/os_interface/debug_settings_manager.h"
|
|
#include "runtime/os_interface/os_interface.h"
|
|
#include "runtime/os_interface/windows/os_interface.h"
|
|
#include "runtime/os_interface/windows/wddm_memory_manager.h"
|
|
|
|
namespace NEO {
|
|
std::unique_ptr<MemoryManager> MemoryManager::createMemoryManager(ExecutionEnvironment &executionEnvironment) {
|
|
return std::make_unique<WddmMemoryManager>(executionEnvironment);
|
|
}
|
|
} // namespace NEO
|