mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Test Plan: manual inspection & sandcastle Reviewed By: zertosh Differential Revision: D30279364 fbshipit-source-id: c1ed77dfe43a3bde358f92737cd5535ae5d13c9a
12 lines
249 B
Python
12 lines
249 B
Python
import sys
|
|
|
|
sys.argv.append("--jit_executor=simple")
|
|
from test_jit import * # noqa: F403
|
|
|
|
if __name__ == "__main__":
|
|
run_tests()
|
|
import test_jit_py3
|
|
|
|
suite = unittest.findTestCases(test_jit_py3)
|
|
unittest.TextTestRunner().run(suite)
|