We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d4bac commit d3cfd00Copy full SHA for d3cfd00
exir/emit/test/test_emit.py
@@ -194,8 +194,8 @@ def forward(
194
self, x: torch.Tensor
195
) -> Tuple[torch.Tensor, torch.Tensor, List[torch.Tensor]]:
196
return (
197
- torch.Tensor(1),
198
- torch.Tensor(2),
+ torch.tensor(1),
+ torch.tensor(2),
199
[torch.sin(x).max(), torch.cos(x).max()],
200
)
201
0 commit comments