(self)
| 923 | ) |
| 924 | |
| 925 | def test_duplicate_registrations(self): |
| 926 | dispatcher = PythonDispatcher() |
| 927 | |
| 928 | with self.assertRaisesRegex(RuntimeError, r"Overriden is not allowed"): |
| 929 | dispatcher.register(["CPU", "CPU"]) |
| 930 | |
| 931 | def test_defaultbackend_math(self): |
| 932 | dispatcher = PythonDispatcher() |
nothing calls this directly
no test coverage detected