mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/29230 Differential Revision: D18402229 Pulled By: Krovatkin fbshipit-source-id: 62f4bc9bc89c0c7369359bba1359c22a2fa80f46
11 lines
258 B
Python
11 lines
258 B
Python
import sys
|
|
sys.argv.append("--ge_config=simple")
|
|
from test_jit import *
|
|
|
|
if __name__ == '__main__':
|
|
run_tests()
|
|
if not PY2:
|
|
import test_jit_py3
|
|
suite = unittest.findTestCases(test_jit_py3)
|
|
unittest.TextTestRunner().run(suite)
|