2020-12-17 09:21:00 +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.
|
2020-09-23 04:19:46 +00:00
|
|
|
from unittest import mock
|
2020-11-06 14:53:46 +00:00
|
|
|
|
2020-09-23 04:19:46 +00:00
|
|
|
import pytest
|
2021-11-19 14:38:42 +00:00
|
|
|
import torch
|
2020-11-06 14:53:46 +00:00
|
|
|
|
2020-12-23 23:11:42 +00:00
|
|
|
from pl_examples import _DALI_AVAILABLE
|
2021-11-19 14:38:42 +00:00
|
|
|
from pytorch_lightning.utilities.imports import _IS_WINDOWS
|
2020-09-23 04:19:46 +00:00
|
|
|
|
2021-07-26 11:37:35 +00:00
|
|
|
ARGS_DEFAULT = (
|
|
|
|
"--trainer.default_root_dir %(tmpdir)s "
|
|
|
|
"--trainer.max_epochs 1 "
|
|
|
|
"--trainer.limit_train_batches 2 "
|
|
|
|
"--trainer.limit_val_batches 2 "
|
2021-08-28 04:43:14 +00:00
|
|
|
"--trainer.limit_test_batches 2 "
|
|
|
|
"--trainer.limit_predict_batches 2 "
|
2021-07-26 11:37:35 +00:00
|
|
|
"--data.batch_size 32 "
|
|
|
|
)
|
2022-03-28 14:44:59 +00:00
|
|
|
ARGS_GPU = ARGS_DEFAULT + "--trainer.accelerator gpu --trainer.devices 1 "
|
2020-11-06 14:53:46 +00:00
|
|
|
|
|
|
|
|
2020-12-23 23:11:42 +00:00
|
|
|
@pytest.mark.skipif(not _DALI_AVAILABLE, reason="Nvidia DALI required")
|
2021-11-19 14:38:42 +00:00
|
|
|
@pytest.mark.skipif(not torch.cuda.is_available(), reason="CUDA required")
|
|
|
|
@pytest.mark.skipif(_IS_WINDOWS, reason="Not supported on Windows")
|
2021-07-26 11:37:35 +00:00
|
|
|
@pytest.mark.parametrize("cli_args", [ARGS_GPU])
|
2020-12-04 22:32:00 +00:00
|
|
|
def test_examples_mnist_dali(tmpdir, cli_args):
|
2021-11-02 08:04:29 +00:00
|
|
|
from pl_examples.integration_examples.dali_image_classifier import cli_main
|
2020-11-06 14:53:46 +00:00
|
|
|
|
2020-12-04 22:32:00 +00:00
|
|
|
# update the temp dir
|
2021-07-26 11:37:35 +00:00
|
|
|
cli_args = cli_args % {"tmpdir": tmpdir}
|
2020-11-06 14:53:46 +00:00
|
|
|
with mock.patch("argparse._sys.argv", ["any.py"] + cli_args.strip().split()):
|
|
|
|
cli_main()
|