-
Notifications
You must be signed in to change notification settings - Fork 48
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
disable goodput recorder in test-maxtest.sh #1106
Conversation
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.
Other than my nit, LGTM
Signed-off-by: Md Fahim Faysal Khan <[email protected]>
Thanks for the quick fix! Approved modulo tests passing |
@@ -245,22 +245,58 @@ RUN_NAME="logdir" ## the RUN_NAME cannot be changed | |||
if [ -z "$DECODER_BLOCK" ]; then |
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.
@kocchop
instead of if [ -z "$DECODER_BLOCK" ]; then ...
It could be something like:
RUN_SETTINGS="MaxText/train.py \
MaxText/configs/base.yml \
run_name=${RUN_NAME} \
${DECODER_ARG} \
....
This remove the duplicate code and make clear this is the only different in both condition.
Right now, it isn't clear if there is other diff then this one.
The goodput recorder was turned off by default and we do not use it. However, it has been turned on by default from MaxText side 2 days ago which is breaking the CI tests. We just need to explicitly disable these whenever we're running.