We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd24d1 commit 1e32fb5Copy full SHA for 1e32fb5
jax/_src/xla_bridge.py
@@ -252,8 +252,8 @@ def make_cpu_client() -> xla_client.Client:
252
)
253
elif collectives_impl == 'mpi' and xla_extension_version >= 251:
254
collectives = xla_client._xla.make_mpi_collectives() # type: ignore
255
- collectives.Init()
256
- atexit.register(collectives.Finalize)
+ collectives.Init() # type: ignore
+ atexit.register(collectives.Finalize) # type: ignore
257
elif collectives_impl != 'none':
258
collectives_impls = ['none', 'gloo'
259
] + (['mpi'] if xla_extension_version >= 251 else [])
0 commit comments