Fix unroll factor display bug. (#1969)

This commit is contained in:
Arm Patinyasakdikul
2025-10-10 13:35:06 -07:00
zatwierdzone przez GitHub
rodzic 5bd5079de1
commit ff75860d73
+1 -1
Wyświetl plik
@@ -378,7 +378,7 @@ ncclResult_t commSetUnrollFactor(struct ncclComm* comm) {
else
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;
}