| 
									
										
										
										
											2018-04-23 16:43:18 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2018 Edouard Griffiths, F4EXB.                                  //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // Swagger server adapter interface                                              //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 14:47:17 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2018-04-23 16:43:18 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef SDRBENCH_MAINBENCH_H_
 | 
					
						
							|  |  |  | #define SDRBENCH_MAINBENCH_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QObject>
 | 
					
						
							| 
									
										
										
										
											2018-04-25 18:01:01 +02:00
										 |  |  | #include <random>
 | 
					
						
							|  |  |  | #include <functional>
 | 
					
						
							| 
									
										
										
										
											2018-04-23 16:43:18 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-23 18:24:45 +02:00
										 |  |  | #include "dsp/decimators.h"
 | 
					
						
							| 
									
										
										
										
											2018-05-01 19:49:47 +02:00
										 |  |  | #include "dsp/decimatorsif.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-25 01:44:54 +02:00
										 |  |  | #include "dsp/decimatorsfi.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-25 18:01:01 +02:00
										 |  |  | #include "dsp/decimatorsff.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-23 16:43:18 +02:00
										 |  |  | #include "parserbench.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace qtwebapp { | 
					
						
							|  |  |  |     class LoggerWithFile; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MainBench: public QObject { | 
					
						
							|  |  |  |     Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     explicit MainBench(qtwebapp::LoggerWithFile *logger, const ParserBench& parser, QObject *parent = 0); | 
					
						
							|  |  |  |     ~MainBench(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public slots: | 
					
						
							|  |  |  |     void run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | signals: | 
					
						
							|  |  |  |     void finished(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2018-05-09 21:50:41 +02:00
										 |  |  |     void testDecimateII(ParserBench::TestType testType = ParserBench::TestDecimatorsII); | 
					
						
							| 
									
										
										
										
											2018-05-01 19:49:47 +02:00
										 |  |  |     void testDecimateIF(); | 
					
						
							| 
									
										
										
										
											2018-04-25 01:44:54 +02:00
										 |  |  |     void testDecimateFI(); | 
					
						
							| 
									
										
										
										
											2018-04-25 18:01:01 +02:00
										 |  |  |     void testDecimateFF(); | 
					
						
							| 
									
										
										
										
											2018-04-25 01:44:54 +02:00
										 |  |  |     void decimateII(const qint16 *buf, int len); | 
					
						
							| 
									
										
										
										
											2018-05-09 21:50:41 +02:00
										 |  |  |     void decimateInfII(const qint16 *buf, int len); | 
					
						
							|  |  |  |     void decimateSupII(const qint16 *buf, int len); | 
					
						
							| 
									
										
										
										
											2018-05-01 19:49:47 +02:00
										 |  |  |     void decimateIF(const qint16 *buf, int len); | 
					
						
							| 
									
										
										
										
											2018-04-25 01:44:54 +02:00
										 |  |  |     void decimateFI(const float *buf, int len); | 
					
						
							| 
									
										
										
										
											2018-04-25 18:01:01 +02:00
										 |  |  |     void decimateFF(const float *buf, int len); | 
					
						
							|  |  |  |     void printResults(const QString& prefix, qint64 nsecs); | 
					
						
							| 
									
										
										
										
											2018-04-23 18:24:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-23 16:43:18 +02:00
										 |  |  |     static MainBench *m_instance; | 
					
						
							|  |  |  |     qtwebapp::LoggerWithFile *m_logger; | 
					
						
							|  |  |  |     const ParserBench& m_parser; | 
					
						
							| 
									
										
										
										
											2018-04-25 18:01:01 +02:00
										 |  |  |     std::mt19937 m_generator; | 
					
						
							| 
									
										
										
										
											2018-04-30 11:08:08 +02:00
										 |  |  |     std::uniform_real_distribution<float> m_uniform_distribution_f; | 
					
						
							|  |  |  |     std::uniform_int_distribution<qint16> m_uniform_distribution_s16; | 
					
						
							| 
									
										
										
										
											2018-04-23 18:24:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 01:44:54 +02:00
										 |  |  | 	Decimators<qint32, qint16, SDR_RX_SAMP_SZ, 12> m_decimatorsII; | 
					
						
							| 
									
										
										
										
											2018-05-01 19:49:47 +02:00
										 |  |  | 	DecimatorsIF<qint16, 12> m_decimatorsIF; | 
					
						
							| 
									
										
										
										
											2018-04-25 01:44:54 +02:00
										 |  |  | 	DecimatorsFI m_decimatorsFI; | 
					
						
							| 
									
										
										
										
											2018-04-25 18:01:01 +02:00
										 |  |  |     DecimatorsFF m_decimatorsFF; | 
					
						
							| 
									
										
										
										
											2018-04-25 01:44:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-23 18:24:45 +02:00
										 |  |  |     SampleVector m_convertBuffer; | 
					
						
							| 
									
										
										
										
											2018-04-25 18:01:01 +02:00
										 |  |  |     FSampleVector m_convertBufferF; | 
					
						
							| 
									
										
										
										
											2018-04-23 16:43:18 +02:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // SDRBENCH_MAINBENCH_H_
 |