Skip to content

Commit 91f1769

Browse files
authored
Arm backend: Switch torch.tan to torch.max in test_multiple_delegates (#14813)
Switch torch.tan to torch.max in test_multiple_delegates. Signed-off-by: Emma Kujala <[email protected]>
1 parent bf3b66c commit 91f1769

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/arm/test/misc/test_multiple_delegates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class MultipleDelegatesModule(torch.nn.Module):
2323

2424
def forward(self, x: torch.Tensor, y: torch.Tensor):
2525
z = x + y
26-
s = torch.tan(z)
26+
s = torch.max(z)
2727
return s * z
2828

2929

0 commit comments

Comments
 (0)