Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip Old Pytorch Versions for SwinUNETR #7266

Merged
merged 8 commits into from
Nov 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 28 additions & 18 deletions tests/test_swin_unetr.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,37 +24,47 @@
from monai.networks.nets.swin_unetr import PatchMerging, PatchMergingV2, SwinUNETR, filter_swinunetr
from monai.networks.utils import copy_model_state
from monai.utils import optional_import
from tests.utils import assert_allclose, skip_if_downloading_fails, skip_if_no_cuda, skip_if_quick, testing_data_config
from tests.utils import (
assert_allclose,
pytorch_after,
skip_if_downloading_fails,
skip_if_no_cuda,
skip_if_quick,
testing_data_config,
)

einops, has_einops = optional_import("einops")

TEST_CASE_SWIN_UNETR = []
case_idx = 0
test_merging_mode = ["mergingv2", "merging", PatchMerging, PatchMergingV2]
checkpoint_vals = [True, False] if pytorch_after(1, 11) else [False]
for attn_drop_rate in [0.4]:
for in_channels in [1]:
for depth in [[2, 1, 1, 1], [1, 2, 1, 1]]:
for out_channels in [2]:
for img_size in ((64, 32, 192), (96, 32)):
for feature_size in [12]:
for norm_name in ["instance"]:
test_case = [
{
"spatial_dims": len(img_size),
"in_channels": in_channels,
"out_channels": out_channels,
"img_size": img_size,
"feature_size": feature_size,
"depths": depth,
"norm_name": norm_name,
"attn_drop_rate": attn_drop_rate,
"downsample": test_merging_mode[case_idx % 4],
},
(2, in_channels, *img_size),
(2, out_channels, *img_size),
]
case_idx += 1
TEST_CASE_SWIN_UNETR.append(test_case)
for use_checkpoint in checkpoint_vals:
test_case = [
{
"spatial_dims": len(img_size),
"in_channels": in_channels,
"out_channels": out_channels,
"img_size": img_size,
"feature_size": feature_size,
"depths": depth,
"norm_name": norm_name,
"attn_drop_rate": attn_drop_rate,
"downsample": test_merging_mode[case_idx % 4],
"use_checkpoint": use_checkpoint,
},
(2, in_channels, *img_size),
(2, out_channels, *img_size),
]
case_idx += 1
TEST_CASE_SWIN_UNETR.append(test_case)

TEST_CASE_FILTER = [
[
Expand Down
Loading