2018-04-23 14:43:18 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2023-11-19 04:24:06 +00:00
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// Copyright (C) 2015-2023 Edouard Griffiths, F4EXB <f4exb06@gmail.com> //
|
|
|
|
// Copyright (C) 2020 Kacper Michajłow <kasper93@gmail.com> //
|
2018-04-23 14:43:18 +00:00
|
|
|
// //
|
|
|
|
// 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 12:47:17 +00:00
|
|
|
// (at your option) any later version. //
|
2018-04-23 14:43:18 +00: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 16:01:01 +00:00
|
|
|
#include <random>
|
|
|
|
#include <functional>
|
2018-04-23 14:43:18 +00:00
|
|
|
|
2018-04-23 16:24:45 +00:00
|
|
|
#include "dsp/decimators.h"
|
2018-05-01 17:49:47 +00:00
|
|
|
#include "dsp/decimatorsif.h"
|
2018-04-24 23:44:54 +00:00
|
|
|
#include "dsp/decimatorsfi.h"
|
2018-04-25 16:01:01 +00:00
|
|
|
#include "dsp/decimatorsff.h"
|
2018-04-23 14:43:18 +00:00
|
|
|
#include "parserbench.h"
|
2020-11-19 16:40:01 +00:00
|
|
|
#include "export.h"
|
2018-04-23 14:43:18 +00:00
|
|
|
|
|
|
|
namespace qtwebapp {
|
|
|
|
class LoggerWithFile;
|
|
|
|
}
|
|
|
|
|
2020-11-20 18:47:04 +00:00
|
|
|
class SDRBENCH_API MainBench: public QObject {
|
2018-04-23 14:43:18 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-11-20 18:47:04 +00:00
|
|
|
explicit MainBench(qtwebapp::LoggerWithFile *logger, const ParserBench& parser, QObject *parent = 0);
|
|
|
|
~MainBench();
|
2018-04-23 14:43:18 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void run();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void finished();
|
|
|
|
|
|
|
|
private:
|
2018-05-09 19:50:41 +00:00
|
|
|
void testDecimateII(ParserBench::TestType testType = ParserBench::TestDecimatorsII);
|
2018-05-01 17:49:47 +00:00
|
|
|
void testDecimateIF();
|
2018-04-24 23:44:54 +00:00
|
|
|
void testDecimateFI();
|
2018-04-25 16:01:01 +00:00
|
|
|
void testDecimateFF();
|
2021-04-17 16:14:15 +00:00
|
|
|
void testGolay2312();
|
2023-01-12 00:02:38 +00:00
|
|
|
void testFT8(const QString& wavFile, const QString& argsStr); //!< use with sdrbench/samples/ft8/230105_091630.wav in -f option
|
2018-04-24 23:44:54 +00:00
|
|
|
void decimateII(const qint16 *buf, int len);
|
2018-05-09 19:50:41 +00:00
|
|
|
void decimateInfII(const qint16 *buf, int len);
|
|
|
|
void decimateSupII(const qint16 *buf, int len);
|
2018-05-01 17:49:47 +00:00
|
|
|
void decimateIF(const qint16 *buf, int len);
|
2018-04-24 23:44:54 +00:00
|
|
|
void decimateFI(const float *buf, int len);
|
2018-04-25 16:01:01 +00:00
|
|
|
void decimateFF(const float *buf, int len);
|
|
|
|
void printResults(const QString& prefix, qint64 nsecs);
|
2018-04-23 16:24:45 +00:00
|
|
|
|
2023-01-08 18:03:29 +00:00
|
|
|
|
2018-04-23 14:43:18 +00:00
|
|
|
static MainBench *m_instance;
|
|
|
|
qtwebapp::LoggerWithFile *m_logger;
|
|
|
|
const ParserBench& m_parser;
|
2018-04-25 16:01:01 +00:00
|
|
|
std::mt19937 m_generator;
|
2018-04-30 09:08:08 +00:00
|
|
|
std::uniform_real_distribution<float> m_uniform_distribution_f;
|
|
|
|
std::uniform_int_distribution<qint16> m_uniform_distribution_s16;
|
2018-04-23 16:24:45 +00:00
|
|
|
|
2020-06-21 09:46:08 +00:00
|
|
|
Decimators<qint32, qint16, SDR_RX_SAMP_SZ, 12, true> m_decimatorsII;
|
|
|
|
DecimatorsIF<qint16, 12, true> m_decimatorsIF;
|
|
|
|
DecimatorsFI<true> m_decimatorsFI;
|
|
|
|
DecimatorsFF<true> m_decimatorsFF;
|
2018-04-24 23:44:54 +00:00
|
|
|
|
2018-04-23 16:24:45 +00:00
|
|
|
SampleVector m_convertBuffer;
|
2018-04-25 16:01:01 +00:00
|
|
|
FSampleVector m_convertBufferF;
|
2018-04-23 14:43:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SDRBENCH_MAINBENCH_H_
|