2019-02-19 08:55:11 +01:00
|
|
|
/*
|
2021-05-21 01:17:57 +02:00
|
|
|
* Copyright (C) 2019-2021 Intel Corporation
|
2019-02-19 08:55:11 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/debug_settings/debug_settings_manager.h"
|
|
|
|
|
#include "shared/source/execution_environment/execution_environment.h"
|
|
|
|
|
#include "shared/source/memory_manager/memory_manager.h"
|
|
|
|
|
#include "shared/source/os_interface/os_interface.h"
|
|
|
|
|
#include "shared/source/os_interface/windows/wddm_memory_manager.h"
|
2019-02-19 08:55:11 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2021-05-25 15:37:44 +00:00
|
|
|
std::unique_ptr<MemoryManager> MemoryManager::createMemoryManager(ExecutionEnvironment &executionEnvironment, DriverModelType driverModel) {
|
2019-03-21 17:45:00 +01:00
|
|
|
return std::make_unique<WddmMemoryManager>(executionEnvironment);
|
2019-02-19 08:55:11 +01:00
|
|
|
}
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|