Files
compute-runtime/runtime/os_interface/windows/wddm_allocation.cpp
Zdunowski, Piotr a3fc0d0853 [5/n] Log allocation placement.
Change-Id: I46426d040dda6125d9e0bef7c1960413ba602566
Signed-off-by: Zdunowski, Piotr <piotr.zdunowski@intel.com>
2019-03-05 00:58:07 +01:00

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