Skip to content
Closed
Changes from all commits
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
2 changes: 1 addition & 1 deletion test/test_jit_fuser.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_arg_configurations_smoke_cuda(self):
# TODO: add optionally enabled debug counters to the fuser to verify
# that we really can tell the difference between configurations
def f(x, y):
z1, z2 = (x + y).chunk(2, dim=1)
z1, z2 = (x+y).chunk(2, dim=1)
return z1 * z2

x = torch.randn(4, 4, dtype=torch.float, device='cuda')
Expand Down