Files
pytorch/test/test_nvfuser_frontend.py
jjsjann123 e096bca5f9 adding symbolic link to get CI to run tests where cmake is not run on CI node (#95402)
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
2023-03-01 19:01:18 +00:00

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()