mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
Test Plan: revert-hammer
Differential Revision:
D30279364 (b004307252)
Original commit changeset: c1ed77dfe43a
fbshipit-source-id: eab50857675c51e0088391af06ec0ecb14e2347e
9 lines
250 B
Python
9 lines
250 B
Python
import sys
|
|
sys.argv.append("--jit_executor=profiling")
|
|
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)
|