2021-03-19 21:38:49 +00:00
|
|
|
# Copyright The PyTorch Lightning team.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2021-07-31 08:08:10 +00:00
|
|
|
import os
|
|
|
|
from typing import Any, Mapping
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
import torch
|
|
|
|
|
2021-03-19 21:38:49 +00:00
|
|
|
from pytorch_lightning import Trainer
|
2021-12-23 07:26:28 +00:00
|
|
|
from pytorch_lightning.strategies import DDPStrategy, SingleDeviceStrategy
|
2021-03-19 21:38:49 +00:00
|
|
|
from tests.helpers import BoringModel
|
|
|
|
from tests.helpers.runif import RunIf
|
|
|
|
|
|
|
|
|
2021-12-22 01:09:17 +00:00
|
|
|
class CustomParallelStrategy(DDPStrategy):
|
2021-03-19 21:38:49 +00:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super().__init__(**kwargs)
|
|
|
|
# Set to None so it will be overwritten by the accelerator connector.
|
|
|
|
self.sync_batchnorm = None
|
|
|
|
|
|
|
|
|
|
|
|
@RunIf(skip_windows=True)
|
|
|
|
def test_sync_batchnorm_set(tmpdir):
|
|
|
|
"""Tests if sync_batchnorm is automatically set for custom plugin."""
|
|
|
|
model = BoringModel()
|
2022-01-04 13:32:45 +00:00
|
|
|
strategy = CustomParallelStrategy()
|
|
|
|
assert strategy.sync_batchnorm is None
|
|
|
|
trainer = Trainer(max_epochs=1, strategy=strategy, default_root_dir=tmpdir, sync_batchnorm=True)
|
2021-03-19 21:38:49 +00:00
|
|
|
trainer.fit(model)
|
2022-01-04 13:32:45 +00:00
|
|
|
assert strategy.sync_batchnorm is True
|
2021-07-31 08:08:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("restore_optimizer_and_schedulers", [True, False])
|
2022-01-04 13:32:45 +00:00
|
|
|
def test_strategy_lightning_restore_optimizer_and_schedulers(tmpdir, restore_optimizer_and_schedulers):
|
|
|
|
class TestStrategy(SingleDeviceStrategy):
|
2021-07-31 08:08:10 +00:00
|
|
|
load_optimizer_state_dict_called = False
|
|
|
|
|
|
|
|
@property
|
2022-01-06 12:34:16 +00:00
|
|
|
def lightning_restore_optimizer(self) -> bool:
|
2021-07-31 08:08:10 +00:00
|
|
|
return restore_optimizer_and_schedulers
|
|
|
|
|
|
|
|
def load_optimizer_state_dict(self, checkpoint: Mapping[str, Any]) -> None:
|
|
|
|
self.load_optimizer_state_dict_called = True
|
|
|
|
|
|
|
|
# create ckpt to resume from
|
|
|
|
checkpoint_path = os.path.join(tmpdir, "model.ckpt")
|
|
|
|
model = BoringModel()
|
|
|
|
trainer = Trainer(default_root_dir=tmpdir, fast_dev_run=True)
|
|
|
|
trainer.fit(model)
|
|
|
|
trainer.save_checkpoint(checkpoint_path)
|
|
|
|
|
|
|
|
model = BoringModel()
|
2022-01-04 13:32:45 +00:00
|
|
|
strategy = TestStrategy(torch.device("cpu"))
|
|
|
|
trainer = Trainer(default_root_dir=tmpdir, fast_dev_run=True, strategy=strategy)
|
2021-10-25 19:05:31 +00:00
|
|
|
trainer.fit(model, ckpt_path=checkpoint_path)
|
2022-01-04 13:32:45 +00:00
|
|
|
assert strategy.load_optimizer_state_dict_called == restore_optimizer_and_schedulers
|