mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-28 08:37:12 +08:00
Change-Id: I1eeffddf7108183ad867d2b05d313f0cf6941c01 Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
14 lines
281 B
C++
14 lines
281 B
C++
/*
|
|
* Copyright (C) 2019 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/os_interface/windows/wddm_allocation.h"
|
|
|
|
namespace OCLRT {
|
|
std::string WddmAllocation::getAllocationInfoString() const {
|
|
return getHandleInfoString();
|
|
}
|
|
} // namespace OCLRT
|