Skip to content

Commit

Permalink
Remove redundant fit call from accelerator connector test (#10626)
Browse files Browse the repository at this point in the history
  • Loading branch information
awaelchli authored Nov 19, 2021
1 parent 137b62d commit c09c9c7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/accelerators/test_accelerator_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ def test_accelerator_choice_ddp_cpu_and_strategy_spawn(tmpdir):


def _test_accelerator_choice_ddp_cpu_and_strategy(tmpdir, ddp_strategy_class):
model = BoringModel()
trainer = Trainer(
default_root_dir=tmpdir,
strategy=ddp_strategy_class(find_unused_parameters=True),
Expand All @@ -362,7 +361,6 @@ def _test_accelerator_choice_ddp_cpu_and_strategy(tmpdir, ddp_strategy_class):
assert isinstance(trainer.accelerator, CPUAccelerator)
assert trainer.training_type_plugin.num_processes == 2
assert trainer.training_type_plugin.parallel_devices == [torch.device("cpu")] * 2
trainer.fit(model)


@mock.patch.dict(
Expand Down

0 comments on commit c09c9c7

Please sign in to comment.