()
| 45 | |
| 46 | @patch("stumpy.config.STUMPY_THREADS_PER_BLOCK", TEST_THREADS_PER_BLOCK) |
| 47 | def test_gpu_aamp_int_input(): |
| 48 | with pytest.raises(TypeError): |
| 49 | gpu_aamp(np.arange(10), 5, ignore_trivial=True) |
| 50 | |
| 51 | |
| 52 | @pytest.mark.filterwarnings("ignore", category=NumbaPerformanceWarning) |
nothing calls this directly
no test coverage detected