rearrange

This commit is contained in:
conrad
2025-08-11 00:48:59 +10:00
parent 2b49392e7c
commit 4a5c3d8f27
+1 -1
View File
@@ -45,7 +45,7 @@ struct fft_engine_wrapper
{
arma_debug_sigprint();
const bool use_fftw3 = (N_samples >= (threshold / N_exec)) && (is_cx_fp16<cx_type>::no);
const bool use_fftw3 = (is_cx_fp16<cx_type>::no) && (N_samples >= (threshold / N_exec));
worker_kissfft = (use_fftw3 == false) ? new fft_engine_kissfft<cx_type,inverse>(N_samples) : nullptr;
worker_fftw3 = (use_fftw3 == true ) ? new fft_engine_fftw3 <cx_type,inverse>(N_samples) : nullptr;