mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
Change-Id: I46426d040dda6125d9e0bef7c1960413ba602566 Signed-off-by: Zdunowski, Piotr <piotr.zdunowski@intel.com>
16 lines
327 B
C++
16 lines
327 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 {
|
|
std::stringstream ss;
|
|
ss << " Handle: " << handle;
|
|
return ss.str();
|
|
}
|
|
} // namespace OCLRT
|