2019-02-27 11:22:10 +01:00
|
|
|
/*
|
2024-01-23 11:23:06 +00:00
|
|
|
* Copyright (C) 2020-2024 Intel Corporation
|
2019-02-27 11:22:10 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-23 22:44:01 +01:00
|
|
|
#include "shared/source/os_interface/windows/wddm_allocation.h"
|
2019-02-27 11:22:10 +01:00
|
|
|
|
2024-01-23 11:23:06 +00:00
|
|
|
#include "shared/source/gmm_helper/gmm.h"
|
|
|
|
|
#include "shared/source/gmm_helper/resource_info.h"
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2019-02-27 11:22:10 +01:00
|
|
|
std::string WddmAllocation::getAllocationInfoString() const {
|
2019-03-05 09:25:18 +01:00
|
|
|
return getHandleInfoString();
|
|
|
|
|
}
|
2024-01-23 11:23:06 +00:00
|
|
|
std::string WddmAllocation::getPatIndexInfoString() const {
|
|
|
|
|
return "";
|
|
|
|
|
}
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|