Menu

[22d97c]: / da / __init__.py  Maximize  Restore  History

Download this file

22 lines (16 with data), 517 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# runtime package
from . import common
from . import importer
from . import pattern as pat
from .common import global_init
from .sim import DistProcess, NodeProcess
__version__ = VERSION = common.__version__
modules = common.modules
__all__ = ["global_init", "DistProcess", "NodeProcess"]
for name in common.api_registry.keys():
globals()[name] = common.api_registry[name]
__all__.append(name)
# Inject the DistAlgo module loader:
importer._install()
# Hook into multiprocessing.spawn:
common._install()
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.