Skip to content

Commit 1e32fb5

Browse files
committed
ignore type
1 parent fdd24d1 commit 1e32fb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jax/_src/xla_bridge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ def make_cpu_client() -> xla_client.Client:
252252
)
253253
elif collectives_impl == 'mpi' and xla_extension_version >= 251:
254254
collectives = xla_client._xla.make_mpi_collectives() # type: ignore
255-
collectives.Init()
256-
atexit.register(collectives.Finalize)
255+
collectives.Init() # type: ignore
256+
atexit.register(collectives.Finalize) # type: ignore
257257
elif collectives_impl != 'none':
258258
collectives_impls = ['none', 'gloo'
259259
] + (['mpi'] if xla_extension_version >= 251 else [])

0 commit comments

Comments
 (0)