diff options
author | Elias Ellison <eellison@fb.com> | 2019-03-29 18:10:36 -0700 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2019-03-29 18:13:26 -0700 |
commit | a5ddecd00c4d0971e2ad8a40e7345d41cf6e1ca0 (patch) | |
tree | c8e831ae8a6cc97954c4928db9e944cb1d21e22e /test/run_test.py | |
parent | 85f36014e2628fe291e94be8e5d156b4e6015afd (diff) | |
download | pytorch-a5ddecd00c4d0971e2ad8a40e7345d41cf6e1ca0.tar.gz pytorch-a5ddecd00c4d0971e2ad8a40e7345d41cf6e1ca0.tar.bz2 pytorch-a5ddecd00c4d0971e2ad8a40e7345d41cf6e1ca0.zip |
Move fuser to test_jit_fuser (#18590)
Summary:
Start of breaking up test_jit.py
New files will have the format test_jit_* so they are easily grepable but remain in the same directory so we don't have to go through multiple sources for imports.
I am adding a test that's expected to fail to be sure it's running.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/18590
Reviewed By: wanchaol
Differential Revision: D14677094
Pulled By: eellison
fbshipit-source-id: 9782c6aa9525bb6f332fc75cfff004c83a417522
Diffstat (limited to 'test/run_test.py')
-rw-r--r-- | test/run_test.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/run_test.py b/test/run_test.py index 42a0d548a1..5c78f21232 100644 --- a/test/run_test.py +++ b/test/run_test.py @@ -46,6 +46,7 @@ TESTS = [ 'type_hints', 'utils', 'namedtuple_return_api', + 'jit_fuser', ] WINDOWS_BLACKLIST = [ |