msr-fiddle / pipedream

MIT License
379 stars 117 forks source link

I would like to know what the role of the following driver.py is? #33

Open ADAM-CT opened 4 years ago

ADAM-CT commented 4 years ago

https://github.com/msr-fiddle/pipedream/blob/f50827f2e28cbdbd82a4ea686c0498272b1460d6/runtime/driver.py

When I ran python driver.py --config . Only 4 files were generated, as follows: command_history.log
gpus=16 machinefile
test_gpus16.yml

I understand that when the above command is run, the training begins, but only four files are generated, so I want to know what driver.py does

deepakn94 commented 4 years ago

driver.py, when run without the --quiet option, runs the experiment specified in the provided config. More information on how to use it in EXPERIMENTS.md.

I think you are not seeing logfiles because there's some exception being thrown somewhere.

ADAM-CT commented 4 years ago

thanks,i will check it