mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-21 13:44:15 +08:00
Fixes #95155 which breaks CI and no nvfuser python tests are run on CI nodes. Thanks to @davidberard98 for noticing this. Pull Request resolved: https://github.com/pytorch/pytorch/pull/95402 Approved by: https://github.com/davidberard98
12 lines
214 B
Python
12 lines
214 B
Python
# Owner(s): ["module: nvfuser"]
|
|
|
|
try:
|
|
from _nvfuser.test_python_frontend import * # noqa: F403,F401
|
|
except ImportError:
|
|
def run_tests():
|
|
return
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
run_tests()
|