Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Maxim Vafin <[email protected]>
  • Loading branch information
mryzhov and mvafin committed Oct 26, 2023
1 parent 466dc9b commit fbf0ed1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/layer_tests/pytorch_tests/test_adaptive_avg_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pytorch_layer_test_class import PytorchLayerTest


@pytest.mark.parametrize('input_shape', [[1, 2, 8, 9, 10], [2, 8, 9, 10]])
@pytest.mark.parametrize('input_tensor', [[1, 2, 8, 9, 10], [2, 8, 9, 10]])
@pytest.mark.parametrize('output_size', [[5, 7, 9], 7])
class TestAdaptiveAvgPool3D(PytorchLayerTest):

Expand All @@ -22,8 +22,8 @@ def __init__(self, output_size) -> None:
super().__init__()
self.output_size = output_size

def forward(self, input_shape):
return torch.nn.functional.adaptive_avg_pool3d(input_shape, self.output_size)
def forward(self, input_tensor):
return torch.nn.functional.adaptive_avg_pool3d(input_tensor, self.output_size)

ref_net = None

Expand Down

0 comments on commit fbf0ed1

Please sign in to comment.