(self)
| 105 | self.assertAllClose(expected, value, rtol=RTOL, atol=ATOL) |
| 106 | |
| 107 | def testFFT(self): |
| 108 | self._VerifyFftMethod(INNER_DIMS_1D, lambda x: x, np.fft.fft, |
| 109 | signal.fft) |
| 110 | |
| 111 | def testFFT2D(self): |
| 112 | self._VerifyFftMethod(INNER_DIMS_2D, lambda x: x, np.fft.fft2, |
nothing calls this directly
no test coverage detected