(test_case)
| 60 | |
| 61 | |
| 62 | def require_torch(test_case): |
| 63 | if not is_torch_available(): |
| 64 | test_case = unittest.skip('test requires PyTorch')(test_case) |
| 65 | return test_case |
| 66 | |
| 67 | |
| 68 | def set_test_level(level: int): |
nothing calls this directly
no test coverage detected
searching dependent graphs…