()
| 25 | |
| 26 | |
| 27 | def test_default_work(): |
| 28 | parser = AbsTask.get_parser() |
| 29 | args = parser.parse_args([]) |
| 30 | resolve_distributed_mode(args) |
| 31 | option = build_dataclass(DistributedOption, args) |
| 32 | option.init_options() |
| 33 | option.init_torch_distributed() |
| 34 | |
| 35 | |
| 36 | def test_resolve_distributed_mode1(dist_init_method): |
nothing calls this directly
no test coverage detected
searching dependent graphs…