From 0c4c0af5a6ed5ece7d0b82b5a8ef301f4e87e5cc Mon Sep 17 00:00:00 2001 From: Michael Suo Date: Fri, 6 Sep 2019 15:33:58 -0700 Subject: [PATCH] ddd --- test/test_jit_fuser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_jit_fuser.py b/test/test_jit_fuser.py index d99dea7b3401..f77797d06292 100644 --- a/test/test_jit_fuser.py +++ b/test/test_jit_fuser.py @@ -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')