Fix unroll factor display bug. (#1969)

Этот коммит содержится в:
Arm Patinyasakdikul
2025-10-10 13:35:06 -07:00
коммит произвёл GitHub
родитель 5bd5079de1
Коммит ff75860d73
+1 -1
Просмотреть файл
@@ -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;
}