Skip to content

Commit 654ab20

Browse files
Elias Ellisonfacebook-github-bot
Elias Ellison
authored andcommittedAug 28, 2020
[JIT] Disable broken tests (pytorch#43750)
Summary: These started failing since **pytorch#43633 for indecipherable reasons; temporarily disable. The errors on the PRs were ``` Downloading workspace layers workflows/workspaces/3ca9ca71-7449-4ae1-bb7b-b7612629cc62/0/8607ba99-5ced-473b-b60a-0025b48739a6/0/105.tar.gz - 8.4 MB Applying workspace layers 8607ba99-5ced-473b-b60a-0025b48739a6 ``` which is not too helpful... Pull Request resolved: pytorch#43750 Reviewed By: ZolotukhinM Differential Revision: D23388060 Pulled By: eellison fbshipit-source-id: 96afa0160ec948049f3e194787a0a7ddbeb5124a
1 parent 1a21c92 commit 654ab20

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎test/test_cpp_extensions_jit.py

+3
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ def test_inline_jit_compile_extension_multiple_sources_and_no_functions(self):
285285
z = module.sin_add(x, y)
286286
self.assertEqual(z, x.sin() + y.sin())
287287

288+
@unittest.skip("Temporarily disabled")
288289
@unittest.skipIf(not (TEST_CUDA or TEST_ROCM), "CUDA not found")
289290
def test_inline_jit_compile_extension_cuda(self):
290291
cuda_source = """
@@ -327,6 +328,7 @@ def test_inline_jit_compile_extension_cuda(self):
327328
z = module.cos_add(x, y)
328329
self.assertEqual(z, x.cos() + y.cos())
329330

331+
@unittest.skip("Temporarily disabled")
330332
@unittest.skipIf(not (TEST_CUDA or TEST_ROCM), "CUDA not found")
331333
def test_inline_jit_compile_custom_op_cuda(self):
332334
cuda_source = """
@@ -401,6 +403,7 @@ def test_lenient_flag_handling_in_jit_extensions(self):
401403
z = module.tanh_add(x, y).cpu()
402404
self.assertEqual(z, x.tanh() + y.tanh())
403405

406+
@unittest.skip("Temporarily disabled")
404407
@unittest.skipIf(not (TEST_CUDA or TEST_ROCM), "CUDA not found")
405408
def test_half_support(self):
406409
"""

0 commit comments

Comments
 (0)
Please sign in to comment.