mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-21 17:29:14 +08:00
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
|