blob: 11bb28b9d558f46f40f9898973aae75da6ca8700 (
plain)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 | // Copyright (C) 2016 The Qt Company Ltd.// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only#include <QtTest/qbenchmark.h>#include <QtTest/private/qbenchmark_p.h>#include <QtTest/private/qbenchmarkmetric_p.h>#include <QtTest/private/qbenchmarktimemeasurers_p.h>#include <QtCore/qdir.h>#include <QtCore/qset.h>#include <QtCore/qdebug.h> QT_BEGIN_NAMESPACE QBenchmarkGlobalData *QBenchmarkGlobalData::current;QBenchmarkGlobalData::QBenchmarkGlobalData(){setMode(mode_);}QBenchmarkGlobalData::~QBenchmarkGlobalData(){delete measurer;if(QBenchmarkGlobalData::current ==this)QBenchmarkGlobalData::current =nullptr;}voidQBenchmarkGlobalData::setMode(Mode mode){ mode_ = mode;delete measurer; measurer =createMeasurer();} QBenchmarkMeasurerBase *QBenchmarkGlobalData::createMeasurer(){ QBenchmarkMeasurerBase *measurer =nullptr;if(0) {#if QT_CONFIG(valgrind)}else if(mode_ == CallgrindChildProcess || mode_ == CallgrindParentProcess) { measurer =new QBenchmarkCallgrindMeasurer;#endif#ifdef QTESTLIB_USE_PERF_EVENTS}else if(mode_ == PerfCounter) { measurer =new QBenchmarkPerfEventsMeasurer;#endif#ifdef HAVE_TICK_COUNTER}else if(mode_ == TickCounter) { measurer =new QBenchmarkTickMeasurer;#endif}else if(mode_ == EventCounter) { measurer =new QBenchmarkEvent;}else{ measurer =new QBenchmarkTimeMeasurer;}return measurer;}intQBenchmarkGlobalData::adjustMedianIterationCount(){return medianIterationCount != -1? medianIterationCount : measurer->adjustMedianCount(1);} QBenchmarkTestMethodData *QBenchmarkTestMethodData::current;QBenchmarkTestMethodData::QBenchmarkTestMethodData() =default;QBenchmarkTestMethodData::~QBenchmarkTestMethodData(){QBenchmarkTestMethodData::current =nullptr;}voidQBenchmarkTestMethodData::beginDataRun(){ iterationCount =adjustIterationCount(1);}voidQBenchmarkTestMethodData::endDataRun(){}intQBenchmarkTestMethodData::adjustIterationCount(int suggestion){// Let the -iterations option override the measurer.if(QBenchmarkGlobalData::current->iterationCount != -1) { iterationCount =QBenchmarkGlobalData::current->iterationCount;}else{ iterationCount =QBenchmarkGlobalData::current->measurer->adjustIterationCount(suggestion);}return iterationCount;}voidQBenchmarkTestMethodData::setResults(const QList<QBenchmarkMeasurerBase::Measurement> &list,bool setByMacro){bool accepted =false;QBenchmarkMeasurerBase::Measurement firstMeasurement = {};if(!list.isEmpty()) firstMeasurement = list.constFirst();// Always accept the result if the iteration count has been// specified on the command line with -iterations.if(QBenchmarkGlobalData::current->iterationCount != -1) accepted =true;else if(QBenchmarkTestMethodData::current->runOnce || !setByMacro) { iterationCount =1; accepted =true;}// Test the result directly without calling the measurer if the minimum time// has been specified on the command line with -minimumvalue.else if(QBenchmarkGlobalData::current->walltimeMinimum != -1) accepted = (firstMeasurement.value >QBenchmarkGlobalData::current->walltimeMinimum);else accepted =QBenchmarkGlobalData::current->measurer->isMeasurementAccepted(firstMeasurement);// Accept the result or double the number of iterations.if(accepted) resultAccepted =true;else iterationCount *=2; valid =true; results.reserve(list.size());for(auto m : list) results.emplaceBack(QBenchmarkGlobalData::current->context, m, iterationCount, setByMacro);}/*! \class QTest::QBenchmarkIterationController \internal The QBenchmarkIterationController class is used by the QBENCHMARK macro to drive the benchmarking loop. It is responsible for starting and stopping the timing measurements as well as calling the result reporting functions.*//*! \internal*/QTest::QBenchmarkIterationController::QBenchmarkIterationController(RunMode runMode){ i =0;if(runMode == RunOnce)QBenchmarkTestMethodData::current->runOnce =true;QTest::beginBenchmarkMeasurement();}QTest::QBenchmarkIterationController::QBenchmarkIterationController(){ i =0;QTest::beginBenchmarkMeasurement();}/*! \internal*/QTest::QBenchmarkIterationController::~QBenchmarkIterationController(){QBenchmarkTestMethodData::current->setResults(QTest::endBenchmarkMeasurement());}/*! \internal*/boolQTest::QBenchmarkIterationController::isDone()const noexcept {if(QBenchmarkTestMethodData::current->runOnce)return i >0;return i >=QTest::iterationCount();}/*! \internal*/voidQTest::QBenchmarkIterationController::next() noexcept {++i;}/*! \internal*/intQTest::iterationCount() noexcept {returnQBenchmarkTestMethodData::current->iterationCount;}/*! \internal*/voidQTest::setIterationCountHint(int count){QBenchmarkTestMethodData::current->adjustIterationCount(count);}/*! \internal*/voidQTest::setIterationCount(int count){QBenchmarkTestMethodData::current->iterationCount = count;QBenchmarkTestMethodData::current->resultAccepted =true;}/*! \internal*/voidQTest::beginBenchmarkMeasurement(){QBenchmarkGlobalData::current->measurer->start();// the clock is ticking after the line above, don't add code here.}/*! \internal*/ QList<QBenchmarkMeasurerBase::Measurement>QTest::endBenchmarkMeasurement(){// the clock is ticking before the line below, don't add code here.returnQBenchmarkGlobalData::current->measurer->stop();}/*! Sets the benchmark result for this test function to \a result. Use this function if you want to report benchmark results without using the QBENCHMARK macro. Use \a metric to specify how Qt Test should interpret the results. The context for the result will be the test function name and any data tag from the _data function. This function can only be called once in each test function, subsequent calls will replace the earlier reported results. Note that the -iterations command line argument has no effect on test functions without the QBENCHMARK macro. \since 4.7*/voidQTest::setBenchmarkResult(qreal result,QTest::QBenchmarkMetric metric){QBenchmarkTestMethodData::current->setResult({ result, metric },false);}template<typename T> typename T::value_type qAverage(const T &container){ typename T::const_iterator it = container.constBegin(); typename T::const_iterator end = container.constEnd(); typename T::value_type acc = typename T::value_type();int count =0;while(it != end) { acc += *it;++it;++count;}return acc / count;} QT_END_NAMESPACE
|