aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/js/fib10.qml
diff options
context:
space:
mode:
authorVille Voutilainen <ville.voutilainen@qt.io>2021-12-01 13:14:20 +0200
committerVille Voutilainen <ville.voutilainen@qt.io>2022-01-04 11:12:11 +0000
commitc9d84ead801960601870240e36478468c2a28b82 (patch)
treefbd2c6ae0466ecfce032e5eebca10d02dcae7bf3 /src/benchmarks/auto/js/fib10.qml
parent6d298da7cda85b35aa22c68aac55fdb6513e68eb (diff)
Use a resource file for benchmarks, and add some Android goodies and fixes
Task-number: QTBUG-94148 Change-Id: I7cc0b1ade676c4f7f963915315c00e317582e56f Reviewed-by: Daniel Smith <Daniel.Smith@qt.io>
Diffstat (limited to 'src/benchmarks/auto/js/fib10.qml')
-rw-r--r--src/benchmarks/auto/js/fib10.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/benchmarks/auto/js/fib10.qml b/src/benchmarks/auto/js/fib10.qml
new file mode 100644
index 0000000..7e0df4f
--- /dev/null
+++ b/src/benchmarks/auto/js/fib10.qml
@@ -0,0 +1,19 @@
+import QtQuick 2.0
+import QmlBench 1.0
+
+// Tests the creation of Items with a recursive function binding
+CreationBenchmark {
+ id: root;
+ count: 50;
+ staticCount: 1000;
+ delegate: Item {
+ x: fib(10);
+ }
+
+ function fib(n) {
+ if (n < 2)
+ return Math.max(0, n);
+ else
+ return fib(n-1) + fib(n-2);
+ }
+}