mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/execution_environment/root_device_environment.h"
|
|
#include "shared/source/helpers/debug_helpers.h"
|
|
#include "shared/source/os_interface/os_interface.h"
|
|
#include "shared/source/os_interface/windows/wddm/wddm.h"
|
|
#include "shared/source/os_interface/windows/wddm_memory_operations_handler.h"
|
|
|
|
namespace NEO {
|
|
|
|
bool OSInterface::osEnabled64kbPages = true;
|
|
bool OSInterface::newResourceImplicitFlush = false;
|
|
bool OSInterface::gpuIdleImplicitFlush = false;
|
|
bool OSInterface::requiresSupportForWddmTrimNotification = true;
|
|
|
|
bool OSInterface::isDebugAttachAvailable() const {
|
|
return false;
|
|
}
|
|
|
|
bool RootDeviceEnvironment::initOsInterface(std::unique_ptr<HwDeviceId> &&hwDeviceId, uint32_t rootDeviceIndex) {
|
|
auto wddm(Wddm::createWddm(std::move(hwDeviceId), *this));
|
|
if (!wddm->init()) {
|
|
return false;
|
|
}
|
|
memoryOperationsInterface = std::make_unique<WddmMemoryOperationsHandler>(wddm);
|
|
return true;
|
|
}
|
|
} // namespace NEO
|