Skip to content
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
4 changes: 4 additions & 0 deletions tests/test_loop_cleanup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def test_run_training_loop_finally_runs_cleanup_on_success(self):
args=args,
inference_manager=inference_manager,
inference_future=inference_future,
inference_engines=None,
)

def test_run_training_loop_finally_runs_cleanup_on_exception(self):
Expand All @@ -71,6 +72,7 @@ def test_run_training_loop_finally_runs_cleanup_on_exception(self):
args=args,
inference_manager=inference_manager,
inference_future=inference_future,
inference_engines=None,
)


Expand Down Expand Up @@ -184,6 +186,7 @@ def test_setup_eval_dispatch_bs_is_dp_size():
args = SimpleNamespace(
eval_interval=50,
dp_size=2,
inference_batch_size=4,
max_sample_pool_size=64,
checkpoint_dir=None,
cache_dir="./cache",
Expand Down Expand Up @@ -216,6 +219,7 @@ def test_setup_eval_dispatch_bs_caps_at_dataset_size():
args = SimpleNamespace(
eval_interval=50,
dp_size=8,
inference_batch_size=4,
max_sample_pool_size=64,
checkpoint_dir=None,
cache_dir="./cache",
Expand Down
Loading