(self)
| 109 | self._validateTopK(inputs, k, values, indices) |
| 110 | |
| 111 | def testTop1AllNan(self): |
| 112 | inputs = [[np.NaN, np.NaN], [np.NaN, np.NaN]] |
| 113 | self._validateTopK(inputs, 1, [[np.NaN], [np.NaN]], [[0], [0]]) |
| 114 | |
| 115 | def _testLargeSort(self, dtype): |
| 116 | b = 10 |
nothing calls this directly
no test coverage detected