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-07-31 08:08:10 +00:00
|
|
|
from pytorch_lightning.plugins import DDPPlugin, SingleDevicePlugin
|
2021-03-19 21:38:49 +00:00
|
|
|
from tests.helpers import BoringModel
|
|
|
|
from tests.helpers.runif import RunIf
|
|
|
|
|
|
|
|
|
|
|
|
class CustomParallelPlugin(DDPPlugin):
|
|
|
|
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()
|
|
|
|
plugin = CustomParallelPlugin()
|
|
|
|
assert plugin.sync_batchnorm is None
|
2021-10-20 15:32:53 +00:00
|
|
|
trainer = Trainer(max_epochs=1, strategy=plugin, default_root_dir=tmpdir, sync_batchnorm=True)
|
2021-03-19 21:38:49 +00:00
|
|
|
trainer.fit(model)
|
|
|
|
assert plugin.sync_batchnorm is True
|
2021-07-31 08:08:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("restore_optimizer_and_schedulers", [True, False])
|
|
|
|
def test_plugin_lightning_restore_optimizer_and_schedulers(tmpdir, restore_optimizer_and_schedulers):
|
|
|
|
class TestPlugin(SingleDevicePlugin):
|
|
|
|
load_optimizer_state_dict_called = False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def lightning_restore_optimizer_and_schedulers(self) -> bool:
|
|
|
|
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()
|
|
|
|
plugin = TestPlugin(torch.device("cpu"))
|
|
|
|
trainer = Trainer(
|
2021-10-20 15:32:53 +00:00
|
|
|
default_root_dir=tmpdir, fast_dev_run=True, strategy=plugin, resume_from_checkpoint=checkpoint_path
|
2021-07-31 08:08:10 +00:00
|
|
|
)
|
|
|
|
trainer.fit(model)
|
|
|
|
assert plugin.load_optimizer_state_dict_called == restore_optimizer_and_schedulers
|