You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
YAML config support for pipeline benchmarking (pytorch#3180)
Summary:
Pull Request resolved: pytorch#3180
Added a support for YAML file configuration of the pipeline benchmarking. This feature makes easier to reproduce complex configurations without the need to CLI arguments passing.
Example `.yaml ` file should look like:
```
RunOptions:
world_size: 2
PipelineConfig:
pipeline: "sparse"
```
Also, configs can be listed in a 'flat' way as well:
```
world_size: 2
pipeline: "sparse"
```
To run, add the `--yaml_config` flag with the `.yaml` file path. Additional flags can overwrite the `yaml` file configs as well if desired.
Differential Revision: D78127340
0 commit comments