pytorch / xla

Enabling PyTorch on XLA Devices (e.g. Google TPU)
https://pytorch.org/xla
Other
2.49k stars 483 forks source link

Improve some typing annotations #8369

Closed tengyifei closed 1 week ago

tengyifei commented 1 week ago

Tuple[T] means a tuple of 1 element of type T. These annotations actually wanted to say a tuple of N elements of type T. The right incantation for that is Tuple[T, ...].