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

add ATen support for bicubic interpolation #19380

Merged
merged 3 commits into from
Feb 5, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
more lint
  • Loading branch information
prathikr committed Feb 2, 2024
commit e840a0f3a2c0f2d005a7862ae333af316f51112f
Original file line number Diff line number Diff line change
Expand Up @@ -1808,7 +1808,7 @@ def run_step(model, input):
def test_aten_upsample_bicubic():
class _NeuralNetUpsampleBicubic(torch.nn.Module):
def __init__(self):
super(_NeuralNetUpsampleBicubic, self).__init__()
super().__init__()

def forward(self, input):
return torch.nn.functional.interpolate(input, size=(8, 12), mode="bicubic")
Expand Down
Loading