-
Notifications
You must be signed in to change notification settings - Fork 239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve run_llama_train.sh args and add local-ranks-filter #51
Conversation
PP=${PP:-"1"} | ||
SP=${SP:-"1"} | ||
DP=${DP:-"-1"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder where these are picked up. Shall we also add to the torchrun
cmd? e.g. --pp_degree=${PP}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, yea, i forgot to copy that part over. will fix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Had an inline comment; o/w looks all good. Thanks for working on this!
DP=${DP:-"-1"} | ||
|
||
# by default log just rank 0 output, | ||
LOG_RANK=${LOG_RANK:-0} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think one issue for my solution is that you can't easily disable 'log_rank' unless you comment out the --local-ranks-filter
option
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gonna merge it this way, its probably easier to have rank0 by default and comment out than remember how to add the filter string in, but we can probably improve this.
42d77fc
to
9b9ee1f
Compare
allows convenient switching of args w/o editing .sh file e.g. `LOG_RANK=1,2 ./run_llama_train.sh` `NGPU=2 SP=2 ./run_llama_train.sh`
allows convenient switching of args w/o editing .sh file
e.g.
LOG_RANK=1,2 ./run_llama_train.sh
NGPU=2 SP=2 ./run_llama_train.sh