File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
backends/intel_hpu/runtime Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -485,13 +485,13 @@ class RuntimeManager {
485
485
reinterpret_cast <void *>(uid.internal ),
486
486
uid.length );
487
487
if (FLAGS_intel_hpu_runtime_debug) {
488
- const uint8_t *bytes = reinterpret_cast <uint8_t *>(unique_id);
488
+ const uint8_t *bytes = reinterpret_cast <uint8_t *>(unique_id-> data );
489
489
std::ostringstream oss;
490
490
for (size_t i = 0 ; i < unique_id->sz ; ++i) {
491
491
oss << std::hex << static_cast <int >(bytes[i]);
492
492
}
493
493
LOG_IF (INFO, FLAGS_intel_hpu_runtime_debug)
494
- << " unique_id =" << oss.str () << " uid size = " << unique_id->sz ;
494
+ << " unique_id =" << oss.str () << " , uid size = " << unique_id->sz ;
495
495
}
496
496
return C_SUCCESS;
497
497
}
@@ -501,13 +501,13 @@ class RuntimeManager {
501
501
size_t rank,
502
502
C_CCLComm *comm) {
503
503
if (FLAGS_intel_hpu_runtime_debug) {
504
- const uint8_t *bytes = reinterpret_cast <uint8_t *>(unique_id);
504
+ const uint8_t *bytes = reinterpret_cast <uint8_t *>(unique_id-> data );
505
505
std::ostringstream oss;
506
506
for (size_t i = 0 ; i < unique_id->sz ; ++i) {
507
507
oss << std::hex << static_cast <int >(bytes[i]);
508
508
}
509
509
LOG_IF (INFO, FLAGS_intel_hpu_runtime_debug)
510
- << " unique_id =" << oss.str () << " uid size = " << unique_id->sz
510
+ << " unique_id =" << oss.str () << " , uid size = " << unique_id->sz
511
511
<< " , rank = " << rank;
512
512
}
513
513
You can’t perform that action at this time.
0 commit comments