2021-05-22 20:19:24 +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.
|
|
|
|
import torch
|
|
|
|
|
|
|
|
from pytorch_lightning import Trainer
|
2021-12-23 07:26:28 +00:00
|
|
|
from pytorch_lightning.strategies import SingleDeviceStrategy
|
2021-05-22 20:19:24 +00:00
|
|
|
from tests.helpers.boring_model import BoringModel
|
|
|
|
from tests.helpers.runif import RunIf
|
|
|
|
|
|
|
|
|
|
|
|
def test_single_cpu():
|
|
|
|
"""Tests if on_gpu and on_tpu is set correctly for single cpu plugin."""
|
|
|
|
trainer = Trainer()
|
2021-12-22 02:11:43 +00:00
|
|
|
assert isinstance(trainer.strategy, SingleDeviceStrategy)
|
|
|
|
assert not trainer.strategy.on_gpu
|
|
|
|
assert not trainer.strategy.on_tpu
|
|
|
|
assert trainer.strategy.root_device == torch.device("cpu")
|
2021-05-22 20:19:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
class BoringModelGPU(BoringModel):
|
|
|
|
def on_train_start(self) -> None:
|
|
|
|
# make sure that the model is on GPU when training
|
|
|
|
assert self.device == torch.device("cuda:0")
|
|
|
|
self.start_cuda_memory = torch.cuda.memory_allocated()
|
|
|
|
|
|
|
|
|
|
|
|
@RunIf(skip_windows=True, min_gpus=1)
|
|
|
|
def test_single_gpu():
|
2021-06-08 13:04:16 +00:00
|
|
|
"""Tests if device is set correctly when training and after teardown for single GPU plugin."""
|
2021-05-22 20:19:24 +00:00
|
|
|
trainer = Trainer(gpus=1, fast_dev_run=True)
|
|
|
|
# assert training type plugin attributes for device setting
|
2021-12-22 02:11:43 +00:00
|
|
|
assert isinstance(trainer.strategy, SingleDeviceStrategy)
|
|
|
|
assert trainer.strategy.on_gpu
|
|
|
|
assert not trainer.strategy.on_tpu
|
|
|
|
assert trainer.strategy.root_device == torch.device("cuda:0")
|
2021-05-22 20:19:24 +00:00
|
|
|
|
|
|
|
model = BoringModelGPU()
|
|
|
|
|
|
|
|
trainer.fit(model)
|
|
|
|
|
|
|
|
# assert after training, model is moved to CPU and memory is deallocated
|
|
|
|
assert model.device == torch.device("cpu")
|
|
|
|
cuda_memory = torch.cuda.memory_allocated()
|
|
|
|
assert cuda_memory < model.start_cuda_memory
|