Skip to content
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

Change precision for daily tests #3231

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tests/utils/object_store/test_gs_object_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def test_gs_object_store_integration_json_auth(expected_use_gcs_sdk_val=True, cl
train_dataloader=train_dataloader,
save_folder='gs://mosaicml-internal-integration-testing/checkpoints/{run_name}',
save_filename='test-model.pt',
max_duration='2ba',
max_duration='1ba',
precision='bf16',
)
run_name = trainer_save.state.run_name
gcs_os = get_gcs_os_from_trainer(trainer_save)
Expand All @@ -49,7 +50,8 @@ def test_gs_object_store_integration_json_auth(expected_use_gcs_sdk_val=True, cl
model=model,
train_dataloader=train_dataloader,
load_path=f'gs://mosaicml-internal-integration-testing/checkpoints/{run_name}/test-model.pt',
max_duration='4ba',
max_duration='2ba',
precision='bf16',
)
trainer_load.fit()
trainer_load.close()
Expand Down
Loading