From 3102f53d3a370d9aa4385881f86b5c31d5503263 Mon Sep 17 00:00:00 2001 From: Martin Reinecke <martin@mpa-garching.mpg.de> Date: Wed, 30 Aug 2017 13:31:24 +0200 Subject: [PATCH] no support for quad-precision floats --- .../fft_operator/transformations/lm_transformation_helper.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/nifty/operators/fft_operator/transformations/lm_transformation_helper.py b/nifty/operators/fft_operator/transformations/lm_transformation_helper.py index 710412065..09fd0f7a3 100644 --- a/nifty/operators/fft_operator/transformations/lm_transformation_helper.py +++ b/nifty/operators/fft_operator/transformations/lm_transformation_helper.py @@ -17,8 +17,6 @@ def buildIdx(nr, lmax): new_dtype = np.float32 elif nr.dtype == np.dtype('complex128'): new_dtype = np.float64 - elif nr.dtype == np.dtype('complex256'): - new_dtype = np.float128 else: raise TypeError("dtype of nr not supported.") -- GitLab