| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-19 06:43:20 +01:00
										 |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							|  |  |  | // Copyright (C) 2017-2018, 2020 Edouard Griffiths, F4EXB <f4exb06@gmail.com>    //
 | 
					
						
							|  |  |  | // Copyright (C) 2023 Jon Beniston, M7RCE <jon@beniston.com>                     //
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is free software; you can redistribute it and/or modify          //
 | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by          //
 | 
					
						
							|  |  |  | // the Free Software Foundation as version 3 of the License, or                  //
 | 
					
						
							|  |  |  | // (at your option) any later version.                                           //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful,               //
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of                //
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the                  //
 | 
					
						
							|  |  |  | // GNU General Public License V3 for more details.                               //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU General Public License             //
 | 
					
						
							|  |  |  | // along with this program. If not, see <http://www.gnu.org/licenses/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QDebug>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #include "dsp/fftengine.h"
 | 
					
						
							|  |  |  | #ifdef USE_KISSFFT
 | 
					
						
							|  |  |  | #include "dsp/kissengine.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef USE_FFTW
 | 
					
						
							|  |  |  | #include "dsp/fftwengine.h"
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-14 10:37:27 +01:00
										 |  |  | #ifdef VKFFT_BACKEND
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | #if VKFFT_BACKEND==0
 | 
					
						
							|  |  |  | #include "dsp/vulkanvkfftengine.h"
 | 
					
						
							| 
									
										
										
										
											2023-08-14 10:37:27 +01:00
										 |  |  | #elif VKFFT_BACKEND==1
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | #include "dsp/cudavkfftengine.h"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-14 10:37:27 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | QStringList FFTEngine::m_allAvailableEngines; | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | FFTEngine::~FFTEngine() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | FFTEngine* FFTEngine::create(const QString& fftWisdomFileName, const QString& preferredEngine) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QStringList allNames = getAllNames(); | 
					
						
							|  |  |  |     QString engine; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (allNames.size() == 0) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // No engines available
 | 
					
						
							|  |  |  | 	   qCritical("FFTEngine::create: no engine built"); | 
					
						
							|  |  |  | 	   return nullptr; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else if (!preferredEngine.isEmpty() && allNames.contains(preferredEngine)) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Use the preferred engine
 | 
					
						
							|  |  |  |         engine = preferredEngine; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         // Use first available
 | 
					
						
							|  |  |  |         engine = allNames[0]; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	qDebug("FFTEngine::create: using %s engine", qPrintable(engine)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-14 10:37:27 +01:00
										 |  |  | #ifdef VKFFT_BACKEND
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | #if VKFFT_BACKEND==0
 | 
					
						
							|  |  |  |     if (engine == VulkanvkFFTEngine::m_name) { | 
					
						
							|  |  |  | 	    return new VulkanvkFFTEngine(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if VKFFT_BACKEND==1
 | 
					
						
							|  |  |  |     if (engine == CUDAvkFFTEngine::m_name) { | 
					
						
							|  |  |  | 	    return new CUDAvkFFTEngine(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-14 10:37:27 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | #ifdef USE_FFTW
 | 
					
						
							|  |  |  | 	if (engine == FFTWEngine::m_name) { | 
					
						
							|  |  |  | 	    return new FFTWEngine(fftWisdomFileName); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef USE_KISSFFT
 | 
					
						
							|  |  |  |     if (engine == KissEngine::m_name) { | 
					
						
							|  |  |  | 	    return new KissEngine; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     return nullptr; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | QStringList FFTEngine::getAllNames() | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  |     if (m_allAvailableEngines.size() == 0) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #ifdef USE_FFTW
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  |         m_allAvailableEngines.append(FFTWEngine::m_name); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #ifdef USE_KISSFFT
 | 
					
						
							|  |  |  |         m_allAvailableEngines.append(KissEngine::m_name); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-14 10:37:27 +01:00
										 |  |  | #ifdef VKFFT_BACKEND
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  | #if VKFFT_BACKEND==0
 | 
					
						
							|  |  |  |         VulkanvkFFTEngine vulkanvkFFT; | 
					
						
							|  |  |  |         if (vulkanvkFFT.isAvailable()) { | 
					
						
							|  |  |  |             m_allAvailableEngines.append(vulkanvkFFT.getName()); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #elif VKFFT_BACKEND==1
 | 
					
						
							|  |  |  |         CUDAvkFFTEngine cudavkFFT; | 
					
						
							|  |  |  |         if (cudavkFFT.isAvailable()) { | 
					
						
							|  |  |  |             m_allAvailableEngines.append(cudavkFFT.getName()); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2023-08-14 10:37:27 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-22 03:04:42 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2023-08-13 23:52:57 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     return m_allAvailableEngines; | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | } |