[PD] Change bootstrap_room metadata dtype from int64 to uint64 (#19141)

This commit is contained in:
Shangming Cai
2026-02-22 14:20:16 +08:00
committed by GitHub
parent 5995bfec63
commit eccee4c48e
+1 -1
View File
@@ -137,7 +137,7 @@ class MetadataBuffers:
) )
# Request validation: store bootstrap_room to detect metadata corruption # Request validation: store bootstrap_room to detect metadata corruption
self.bootstrap_room = torch.zeros( self.bootstrap_room = torch.zeros(
(size, 8), dtype=torch.int64, device=device (size, 8), dtype=torch.uint64, device=device
) )
def get_buf_infos(self): def get_buf_infos(self):