(self)
| 109 | signal.fft) |
| 110 | |
| 111 | def testFFT2D(self): |
| 112 | self._VerifyFftMethod(INNER_DIMS_2D, lambda x: x, np.fft.fft2, |
| 113 | signal.fft2d) |
| 114 | |
| 115 | def testFFT3D(self): |
| 116 | self._VerifyFftMethod(INNER_DIMS_3D, lambda x: x, |
nothing calls this directly
no test coverage detected