mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00: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
11 lines
205 B
Python
11 lines
205 B
Python
# Owner(s): ["module: nvfuser"]
|
|
|
|
try:
|
|
from _nvfuser.test_dynamo import * # noqa: F403,F401
|
|
except ImportError:
|
|
def run_tests():
|
|
return
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
run_tests()
|