mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-05-03 13:11:27 +00:00
Co-authored-by: Olli Saarikivi <olsaarik@microsoft.com> Co-authored-by: Changho Hwang <changhohwang@microsoft.com> Co-authored-by: Binyang Li <binyli@microsoft.com>
13 lines
255 B
Python
13 lines
255 B
Python
import mscclpp
|
|
|
|
|
|
def main():
|
|
config = mscclpp.Config.get_instance()
|
|
config.set_bootstrap_connection_timeout_config(15)
|
|
timeout = config.get_bootstrap_connection_timeout_config()
|
|
assert timeout == 15
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|