mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-12 01:10:22 +00:00
Fix mscclpp_benchmark (#392)
Enable 1GB message size for NVLS transport in mscclpp_benchmark
This commit is contained in:
@@ -99,7 +99,7 @@ class CommGroup:
|
||||
else:
|
||||
endpoint = endpoints
|
||||
if endpoint.transport == Transport.Nvls:
|
||||
return connect_nvls_collective(self.communicator, all_ranks)
|
||||
return connect_nvls_collective(self.communicator, all_ranks, 2**30)
|
||||
else:
|
||||
connections[rank] = self.communicator.connect_on_setup(rank, 0, endpoint)
|
||||
self.communicator.setup()
|
||||
|
||||
@@ -289,7 +289,7 @@ if __name__ == "__main__":
|
||||
mscclpp_algbw = []
|
||||
nccl_algbw = []
|
||||
speed_ups = []
|
||||
end_range = 28 if is_nvls_supported() else 29
|
||||
end_range = 29
|
||||
for i in range(10, end_range):
|
||||
if MPI.COMM_WORLD.size // N_GPUS_PER_NODE == 1:
|
||||
nelems = 2**i
|
||||
|
||||
Reference in New Issue
Block a user