Fix unroll factor display bug. (#1969)

Tento commit je obsažen v:
Arm Patinyasakdikul
2025-10-10 13:35:06 -07:00
odevzdal GitHub
rodič 5bd5079de1
revize ff75860d73
+1 -1
Zobrazit soubor
@@ -378,7 +378,7 @@ ncclResult_t commSetUnrollFactor(struct ncclComm* comm) {
else else
comm->unroll = NCCL_UNROLL_4; comm->unroll = NCCL_UNROLL_4;
INFO(NCCL_INIT, "RCCL Unroll Factor (pre-set): %d", comm->unroll+1); INFO(NCCL_INIT, "RCCL Unroll Factor (pre-set): %d", (int) (pow(2.0, (double)comm->unroll)));
return ncclSuccess; return ncclSuccess;
} }