mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 20:12:03 +08:00
22 lines
447 B
C++
22 lines
447 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2019 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "runtime/os_interface/linux/drm_allocation.h"
|
||
|
|
#include "runtime/os_interface/linux/drm_buffer_object.h"
|
||
|
|
|
||
|
|
#include <sstream>
|
||
|
|
|
||
|
|
namespace OCLRT {
|
||
|
|
std::string DrmAllocation::getAllocationInfoString() const {
|
||
|
|
std::stringstream ss;
|
||
|
|
if (bo != nullptr) {
|
||
|
|
ss << " Handle: " << bo->peekHandle();
|
||
|
|
}
|
||
|
|
return ss.str();
|
||
|
|
}
|
||
|
|
} // namespace OCLRT
|