diff --git a/projects/rccl-tests/src/common.cu b/projects/rccl-tests/src/common.cu index 9277ea2b15..0d4dfc1944 100644 --- a/projects/rccl-tests/src/common.cu +++ b/projects/rccl-tests/src/common.cu @@ -984,8 +984,8 @@ testResult_t run() { int rank = proc*nThreads*nGpus+i; cudaDeviceProp prop; CUDACHECK(cudaGetDeviceProperties(&prop, cudaDev)); - len += snprintf(line+len, MAX_LINE-len, "# Rank %2d Group %2d Pid %6d on %10s device %2d [0x%02x] %s\n", - rank, color, getpid(), hostname, cudaDev, prop.pciBusID, prop.name); + len += snprintf(line+len, MAX_LINE-len, "# Rank %2d Group %2d Pid %6d on %10s device %2d [%04x:%02x:%02x] %s\n", + rank, color, getpid(), hostname, cudaDev, prop.pciDomainID, prop.pciBusID, prop.pciDeviceID, prop.name); maxMem = std::min(maxMem, prop.totalGlobalMem); }