Commit 25401b21 authored by Ramesh Errabolu's avatar Ramesh Errabolu
Browse files

Print UUID of device for bandwidth runs

parent 26d40c2c
...@@ -367,6 +367,7 @@ void RocmBandwidthTest::DisplayDevInfo() const { ...@@ -367,6 +367,7 @@ void RocmBandwidthTest::DisplayDevInfo() const {
std::cout << ", " << agent_list_[idx].name_; std::cout << ", " << agent_list_[idx].name_;
bool gpuDevice = (agent_list_[idx].device_type_ == HSA_DEVICE_TYPE_GPU); bool gpuDevice = (agent_list_[idx].device_type_ == HSA_DEVICE_TYPE_GPU);
if (gpuDevice) { if (gpuDevice) {
std::cout << ", " << agent_list_[idx].uuid_;
std::cout << ", " << agent_list_[idx].bdf_id_; std::cout << ", " << agent_list_[idx].bdf_id_;
} }
std::cout << std::endl; std::cout << std::endl;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment