Disable flaky test, see #11360 (#11361)
Summary:
Signed-off-by: Edward Z. Yang <ezyang@fb.com>
Pull Request resolved: https://github.com/pytorch/pytorch/pull/11361
Reviewed By: yf225
Differential Revision: D9696524
Pulled By: ezyang
fbshipit-source-id: f6801d6f4f34090d467b16810db9cf576d5d519b
diff --git a/test/test_jit.py b/test/test_jit.py
index 93c9027..ff98b97 100644
--- a/test/test_jit.py
+++ b/test/test_jit.py
@@ -3038,6 +3038,7 @@
self.assertEqual(cu.test_fuser_multiple_blocks(*inputs), outputs)
@unittest.skipIf(IS_WINDOWS, "NYI: fuser support for Windows")
+ @unittest.skip("this test is flaky, see #11360")
def test_scalar_fusion(self):
def fn(x, y):
return x + y.type_as(x)