Fix unroll factor display bug. (#1969)

Šī revīzija ir iekļauta:
Arm Patinyasakdikul
2025-10-10 13:35:06 -07:00
revīziju iesūtīja GitHub
vecāks 5bd5079de1
revīzija ff75860d73
+1 -1
Parādīt failu
@@ -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;
}