summaryrefslogtreecommitdiff
path: root/noncore/settings/sysinfo/benchmarkinfo.h
authormickeyl <mickeyl>2004-02-27 16:26:54 (UTC)
committer mickeyl <mickeyl>2004-02-27 16:26:54 (UTC)
commit557424c8b345677038e6e35aae2ada22748af904 (patch) (side-by-side diff)
tree047afc03d6b269e56d30fd1069813d64c8413dca /noncore/settings/sysinfo/benchmarkinfo.h
parent4075bd88da2eb3f3eec78fe283023231764834b4 (diff)
downloadopie-557424c8b345677038e6e35aae2ada22748af904.zip
opie-557424c8b345677038e6e35aae2ada22748af904.tar.gz
opie-557424c8b345677038e6e35aae2ada22748af904.tar.bz2
This patch adds a benchmark tab to SysInfo!
Available tests & Implementation Status: ------------------------------------------- Integer Arithmetic: done Floating Point: done Text Rendering: done Gfx Rendering: done RAM Performance: in progress SD Performance: not yet done CF Performance: not yet done ------------------------------------------- I will complete this on weekend by adding the last tests and adding a comparison table for known systems :) Have Fun!
Diffstat (limited to 'noncore/settings/sysinfo/benchmarkinfo.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sysinfo/benchmarkinfo.h72
1 files changed, 72 insertions, 0 deletions
diff --git a/noncore/settings/sysinfo/benchmarkinfo.h b/noncore/settings/sysinfo/benchmarkinfo.h
new file mode 100644
index 0000000..2c7fa40
--- a/dev/null
+++ b/noncore/settings/sysinfo/benchmarkinfo.h
@@ -0,0 +1,72 @@
+/**********************************************************************
+** BenchmarkInfo
+**
+** A benchmark for Qt/Embedded
+**
+** Copyright (C) 2004 Michael Lauer <mickey@vanille.de>
+** Inspired by ZBench (C) 2002 Satoshi <af230533@im07.alpha-net.ne.jp>
+**
+** This file may be distributed and/or modified under the terms of the
+** GNU General Public License version 2 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file.
+**
+** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+**
+**********************************************************************/
+
+#include <qwidget.h>
+#include <qdialog.h>
+
+class QClipboard;
+class QCheckListItem;
+class QPushButton;
+class QListView;
+
+//#define INT_TEST_ITERATIONS 50
+//#define CHAR_TEST_ITERATIONS 15000
+//#define DRAW_TEST_ITERATIONS 5000
+
+#define INT_TEST_ITERATIONS 50
+#define CHAR_TEST_ITERATIONS 15000
+#define DRAW_TEST_ITERATIONS 5000
+
+class BenchmarkInfo : public QWidget
+{
+ Q_OBJECT
+
+public:
+ BenchmarkInfo( QWidget *parent = 0, const char *name = 0, int wFlags = 0 );
+ ~BenchmarkInfo();
+
+ QCheckListItem* test_alu;
+ QCheckListItem* test_fpu;
+ QCheckListItem* test_txt;
+ QCheckListItem* test_gfx;
+ QCheckListItem* test_ram;
+ QCheckListItem* test_sd;
+ QCheckListItem* test_cf;
+
+ bool main_rd;
+ bool main_wt;
+ bool sd_rd;
+ bool sd_wt;
+ bool cf_rd;
+ bool cf_wt;
+
+ QClipboard* clb;
+
+ QListView* tests;
+ QPushButton* startButton;
+
+ void benchInteger() const;
+ void paintChar();
+ void paintLineRect();
+ bool writeFile( const QString& );
+ bool readFile( const QString& );
+
+private slots:
+ void run();
+
+};