mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: Rename jobs for testing GraphExecutor configurations to something a little bit more sensical. Pull Request resolved: https://github.com/pytorch/pytorch/pull/45715 Reviewed By: ezyang, anjali411 Differential Revision: D24114344 Pulled By: Krovatkin fbshipit-source-id: 89e5f54aaebd88f8c5878e060e983c6f1f41b9bb
10 lines
233 B
Python
10 lines
233 B
Python
import sys
|
|
sys.argv.append("--jit_executor=legacy")
|
|
from test_jit import *
|
|
|
|
if __name__ == '__main__':
|
|
run_tests()
|
|
import test_jit_py3
|
|
suite = unittest.findTestCases(test_jit_py3)
|
|
unittest.TextTestRunner().run(suite)
|