Skip to content

Commit 455eda6

Browse files
authored
fix Resize for JIT single value sequences (#7139)
1 parent 1496ff0 commit 455eda6

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

test/test_prototype_transforms_consistency.py

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def __init__(
7474
legacy_transforms.Resize,
7575
[
7676
ArgsKwargs(32),
77+
ArgsKwargs([32]),
7778
ArgsKwargs((32, 29)),
7879
ArgsKwargs((31, 28), interpolation=prototype_transforms.InterpolationMode.NEAREST),
7980
ArgsKwargs((33, 26), interpolation=prototype_transforms.InterpolationMode.BICUBIC),

torchvision/prototype/transforms/_geometry.py

+10-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,16 @@ def __init__(
4646
) -> None:
4747
super().__init__()
4848

49-
self.size = (
50-
[size]
51-
if isinstance(size, int)
52-
else _setup_size(size, error_msg="Please provide only two dimensions (h, w) for size.")
53-
)
49+
if isinstance(size, int):
50+
size = [size]
51+
elif isinstance(size, (list, tuple)) and len(size) in {1, 2}:
52+
size = list(size)
53+
else:
54+
raise ValueError(
55+
f"size can either be an integer or a list or tuple of one or two integers, " f"but got {size} instead."
56+
)
57+
self.size = size
58+
5459
self.interpolation = interpolation
5560
self.max_size = max_size
5661
self.antialias = antialias

0 commit comments

Comments
 (0)