furax.distributed Functions: maybe_init – furax.distributed.maybe_init() Source code in src/furax/distributed.py 5 6 7 8 9 10 11def maybe_init() -> bool: try: jax.distributed.initialize() except ValueError: return False mhu.sync_global_devices('furax.startup') return True