-
Notifications
You must be signed in to change notification settings - Fork 37
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
Split test in prod or dev environment for resource limitation #551
base: master
Are you sure you want to change the base?
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.
need to run formatter plz
dags/mantaray/run_mantaray_jobs.py
Outdated
@@ -41,7 +41,7 @@ | |||
# merge all PyTorch/XLA tests ino one Dag | |||
with models.DAG( | |||
dag_id="pytorch_xla_model_regression_test_on_trillium", | |||
schedule="0 0 * * *", # everyday at midnight # job["schedule"], | |||
schedule="0 0 * * *" if composer_env.is_prod_env() else None, # everyday at midnight # job["schedule"], |
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.
hi, @RissyRan, due to other test might been set with different schedule time, so I only update test for pytorch_xla_model_regression_test_on_trillium
, and please let me know if I missed anything
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.
Could you upload to an test env, and see if other child dags get benefit? I think it should work properly.
thanks, do we mean the formatter in the CI? |
I think he mean this command:
from here |
Description
Split test in prod or dev environment for resource limitation
Checklist
Before submitting this PR, please make sure (put X in square brackets):