```python >>> import numpy >>> import mkl_fft >>> a = numpy.arange(10, dtype=numpy.float16) >>> numpy.fft.fft(a).dtype # dtype('complex64') >>> mkl_fft.fft(a).dtype # dtype('complex128') >>> mkl_fft.interfaces.numpy_fft.fft(a).dtype # dtype('complex128') ```