(self)
| 122 | signal.ifft) |
| 123 | |
| 124 | def testIFFT2D(self): |
| 125 | self._VerifyFftMethod(INNER_DIMS_2D, lambda x: x, np.fft.ifft2, |
| 126 | signal.ifft2d) |
| 127 | |
| 128 | def testIFFT3D(self): |
| 129 | self._VerifyFftMethod(INNER_DIMS_3D, lambda x: x, |
nothing calls this directly
no test coverage detected