263 lines
8.6 KiB
Python
263 lines
8.6 KiB
Python
# 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.
|
|
"""Test deprecated functionality which will be removed in v1.7.0."""
|
|
import os
|
|
from re import escape
|
|
from unittest import mock
|
|
from unittest.mock import Mock
|
|
|
|
import pytest
|
|
import torch
|
|
|
|
from pytorch_lightning import Callback, Trainer
|
|
from pytorch_lightning.callbacks.lr_monitor import LearningRateMonitor
|
|
from pytorch_lightning.loggers import LoggerCollection
|
|
from pytorch_lightning.overrides.distributed import IndexBatchSamplerWrapper
|
|
from pytorch_lightning.plugins.environments import (
|
|
KubeflowEnvironment,
|
|
LightningEnvironment,
|
|
LSFEnvironment,
|
|
SLURMEnvironment,
|
|
TorchElasticEnvironment,
|
|
)
|
|
from pytorch_lightning.strategies import SingleDeviceStrategy
|
|
from tests.deprecated_api import _soft_unimport_module
|
|
from tests.helpers import BoringModel
|
|
from tests.loggers.test_logger import CustomLogger
|
|
from tests.plugins.environments.test_lsf_environment import _make_rankfile
|
|
|
|
|
|
def test_v1_7_0_on_interrupt(tmpdir):
|
|
class HandleInterruptCallback(Callback):
|
|
def on_keyboard_interrupt(self, trainer, pl_module):
|
|
print("keyboard interrupt")
|
|
|
|
model = BoringModel()
|
|
handle_interrupt_callback = HandleInterruptCallback()
|
|
|
|
trainer = Trainer(
|
|
callbacks=[handle_interrupt_callback],
|
|
max_epochs=1,
|
|
limit_val_batches=0.1,
|
|
limit_train_batches=0.2,
|
|
enable_progress_bar=False,
|
|
logger=False,
|
|
default_root_dir=tmpdir,
|
|
)
|
|
with pytest.deprecated_call(
|
|
match="The `on_keyboard_interrupt` callback hook was deprecated in v1.5 and will be removed in v1.7"
|
|
):
|
|
trainer.fit(model)
|
|
|
|
|
|
def test_v1_7_0_flush_logs_every_n_steps_trainer_constructor(tmpdir):
|
|
with pytest.deprecated_call(match=r"Setting `Trainer\(flush_logs_every_n_steps=10\)` is deprecated in v1.5"):
|
|
_ = Trainer(flush_logs_every_n_steps=10)
|
|
|
|
|
|
class BoringCallbackDDPSpawnModel(BoringModel):
|
|
def add_to_queue(self, queue):
|
|
...
|
|
|
|
def get_from_queue(self, queue):
|
|
...
|
|
|
|
|
|
def test_v1_7_0_deprecate_add_get_queue(tmpdir):
|
|
model = BoringCallbackDDPSpawnModel()
|
|
trainer = Trainer(default_root_dir=tmpdir, fast_dev_run=True)
|
|
|
|
with pytest.deprecated_call(match=r"`LightningModule.add_to_queue` method was deprecated in v1.5"):
|
|
trainer.fit(model)
|
|
|
|
with pytest.deprecated_call(match=r"`LightningModule.get_from_queue` method was deprecated in v1.5"):
|
|
trainer.fit(model)
|
|
|
|
|
|
def test_v1_7_0_lightning_logger_base_close(tmpdir):
|
|
logger = CustomLogger()
|
|
with pytest.deprecated_call(match="`Logger.close` method is deprecated in v1.5 and will be removed in v1.7."):
|
|
logger.close()
|
|
with pytest.deprecated_call(
|
|
match="`LoggerCollection.close` method is deprecated in v1.5 and will be removed in v1.7."
|
|
):
|
|
logger = LoggerCollection([logger])
|
|
logger.close()
|
|
|
|
|
|
def test_v1_7_0_deprecate_lightning_distributed(tmpdir):
|
|
with pytest.deprecated_call(match="LightningDistributed is deprecated in v1.5 and will be removed in v1.7."):
|
|
from pytorch_lightning.distributed.dist import LightningDistributed
|
|
|
|
_ = LightningDistributed()
|
|
|
|
|
|
def test_v1_7_0_deprecate_on_post_move_to_device(tmpdir):
|
|
class TestModel(BoringModel):
|
|
def on_post_move_to_device(self):
|
|
print("on_post_move_to_device")
|
|
|
|
model = TestModel()
|
|
|
|
trainer = Trainer(default_root_dir=tmpdir, limit_train_batches=5, max_epochs=1)
|
|
|
|
with pytest.deprecated_call(
|
|
match=r"Method `on_post_move_to_device` has been deprecated in v1.5 and will be removed in v1.7"
|
|
):
|
|
trainer.fit(model)
|
|
|
|
|
|
def test_v1_7_0_deprecate_parameter_validation():
|
|
|
|
_soft_unimport_module("pytorch_lightning.core.decorators")
|
|
with pytest.deprecated_call(
|
|
match="Using `pytorch_lightning.core.decorators.parameter_validation` is deprecated in v1.5"
|
|
):
|
|
from pytorch_lightning.core.decorators import parameter_validation # noqa: F401
|
|
|
|
|
|
def test_v1_7_0_weights_summary_trainer(tmpdir):
|
|
with pytest.deprecated_call(match=r"Setting `Trainer\(weights_summary=full\)` is deprecated in v1.5"):
|
|
t = Trainer(weights_summary="full")
|
|
|
|
with pytest.deprecated_call(match=r"Setting `Trainer\(weights_summary=None\)` is deprecated in v1.5"):
|
|
t = Trainer(weights_summary=None)
|
|
|
|
t = Trainer(weights_summary="top")
|
|
with pytest.deprecated_call(match=r"`Trainer.weights_summary` is deprecated in v1.5"):
|
|
_ = t.weights_summary
|
|
|
|
with pytest.deprecated_call(match=r"Setting `Trainer.weights_summary` is deprecated in v1.5"):
|
|
t.weights_summary = "blah"
|
|
|
|
|
|
def test_v1_7_0_deprecated_slurm_job_id():
|
|
trainer = Trainer()
|
|
with pytest.deprecated_call(match="Method `slurm_job_id` is deprecated in v1.6.0 and will be removed in v1.7.0."):
|
|
trainer.slurm_job_id
|
|
|
|
|
|
def test_v1_7_0_deprecated_max_steps_none(tmpdir):
|
|
with pytest.deprecated_call(match="`max_steps = None` is deprecated in v1.5"):
|
|
_ = Trainer(max_steps=None)
|
|
|
|
trainer = Trainer()
|
|
with pytest.deprecated_call(match="`max_steps = None` is deprecated in v1.5"):
|
|
trainer.fit_loop.max_steps = None
|
|
|
|
|
|
def test_v1_7_0_deprecate_lr_sch_names(tmpdir):
|
|
model = BoringModel()
|
|
lr_monitor = LearningRateMonitor()
|
|
trainer = Trainer(default_root_dir=tmpdir, fast_dev_run=True, callbacks=[lr_monitor])
|
|
trainer.fit(model)
|
|
|
|
with pytest.deprecated_call(match="`LearningRateMonitor.lr_sch_names` has been deprecated in v1.5"):
|
|
assert lr_monitor.lr_sch_names == ["lr-SGD"]
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"cls",
|
|
[
|
|
KubeflowEnvironment,
|
|
LightningEnvironment,
|
|
SLURMEnvironment,
|
|
TorchElasticEnvironment,
|
|
],
|
|
)
|
|
def test_v1_7_0_cluster_environment_master_address(cls):
|
|
class MyClusterEnvironment(cls):
|
|
def master_address(self):
|
|
pass
|
|
|
|
with pytest.deprecated_call(
|
|
match="MyClusterEnvironment.master_address` has been deprecated in v1.6 and will be removed in v1.7"
|
|
):
|
|
MyClusterEnvironment()
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"cls",
|
|
[
|
|
KubeflowEnvironment,
|
|
LightningEnvironment,
|
|
SLURMEnvironment,
|
|
TorchElasticEnvironment,
|
|
],
|
|
)
|
|
def test_v1_7_0_cluster_environment_master_port(cls):
|
|
class MyClusterEnvironment(cls):
|
|
def master_port(self):
|
|
pass
|
|
|
|
with pytest.deprecated_call(
|
|
match="MyClusterEnvironment.master_port` has been deprecated in v1.6 and will be removed in v1.7"
|
|
):
|
|
MyClusterEnvironment()
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"cls,method_name",
|
|
[
|
|
(KubeflowEnvironment, "is_using_kubeflow"),
|
|
(LSFEnvironment, "is_using_lsf"),
|
|
(TorchElasticEnvironment, "is_using_torchelastic"),
|
|
],
|
|
)
|
|
def test_v1_7_0_cluster_environment_detection(cls, method_name, tmp_path):
|
|
class MyClusterEnvironment(cls):
|
|
@staticmethod
|
|
def is_using_kubeflow():
|
|
pass
|
|
|
|
@staticmethod
|
|
def is_using_lsf():
|
|
pass
|
|
|
|
@staticmethod
|
|
def is_using_torchelastic():
|
|
pass
|
|
|
|
environ = {
|
|
"LSB_DJOB_RANKFILE": _make_rankfile(tmp_path),
|
|
"LSB_JOBID": "1234",
|
|
"JSM_NAMESPACE_SIZE": "4",
|
|
"JSM_NAMESPACE_RANK": "3",
|
|
"JSM_NAMESPACE_LOCAL_RANK": "1",
|
|
}
|
|
with mock.patch.dict(os.environ, environ):
|
|
with mock.patch("socket.gethostname", return_value="10.10.10.2"):
|
|
with pytest.deprecated_call(
|
|
match=f"MyClusterEnvironment.{method_name}` has been deprecated in v1.6 and will be removed in v1.7"
|
|
):
|
|
MyClusterEnvironment()
|
|
|
|
|
|
def test_v1_7_0_index_batch_sampler_wrapper_batch_indices():
|
|
sampler = IndexBatchSamplerWrapper(Mock())
|
|
with pytest.deprecated_call(match="was deprecated in v1.5 and will be removed in v1.7"):
|
|
_ = sampler.batch_indices
|
|
|
|
with pytest.deprecated_call(match="was deprecated in v1.5 and will be removed in v1.7"):
|
|
sampler.batch_indices = []
|
|
|
|
|
|
def test_v1_7_0_post_dispatch_hook():
|
|
class CustomPlugin(SingleDeviceStrategy):
|
|
def post_dispatch(self, trainer):
|
|
pass
|
|
|
|
with pytest.deprecated_call(match=escape("`CustomPlugin.post_dispatch()` has been deprecated in v1.6")):
|
|
CustomPlugin(torch.device("cpu"))
|