Skip to content

Commit 0cae2d0

Browse files
committed
JS call performance evaluation
1 parent e5b58b6 commit 0cae2d0

File tree

2 files changed

+111
-5
lines changed

2 files changed

+111
-5
lines changed

objectbox/lib/src/web/number.dart

+3
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ external num Function(num) get double;
3636
/// ```
3737
@JS()
3838
external num Function(num, num) get power;
39+
40+
/// Multiply a value by 2 (dart code)
41+
num double2(num v) => v * 2;

objectbox/test/web_test.dart

+108-5
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,116 @@
1111
// Since the early dev version of the JS has different APIs (e.g. Store
1212
// constructor) than the native version, don't run on `vm`, only in the browser.
1313
@TestOn('browser')
14-
1514
import 'package:test/test.dart';
16-
import 'package:objectbox/src/web/number.dart';
15+
import 'package:objectbox/src/web/number.dart' as webnum;
1716

1817
void main() {
19-
test('test JS/TS integration', () {
20-
// `double` is a JS function
21-
expect(double(4), equals(8));
18+
/// JS Code generated for the [test`] function. Note the inlined dart version.
19+
/// function() {
20+
/// var watch1, num1, i, watch2, num2,
21+
/// t1 = objectbox.double.call$1(4);
22+
/// G.expect(t1, new D._DeepMatcher(8, 100), null);
23+
/// G.expect(8, new D._DeepMatcher(8, 100), null);
24+
/// watch1 = new P.Stopwatch();
25+
/// $.$get$Stopwatch__frequency();
26+
/// watch1.start$0();
27+
/// for (num1 = 1, i = 0; i < 10000; ++i)
28+
/// num1 = objectbox.double.call$1(num1);
29+
/// watch1.stop$0(0);
30+
/// P.print("JS call takes: " + P.Duration$(watch1.get$elapsedMicroseconds(), 0).toString$0(0));
31+
/// watch2 = new P.Stopwatch();
32+
/// $.$get$Stopwatch__frequency();
33+
/// watch2.start$0();
34+
/// for (num2 = 1, i = 0; i < 10000; ++i)
35+
/// num2 *= 2;
36+
/// watch2.stop$0(0);
37+
/// P.print("Dart call takes: " + P.Duration$(watch2.get$elapsedMicroseconds(), 0).toString$0(0));
38+
/// P.print("Factor: " + H.S(watch1.get$elapsedTicks() / 10000 / (watch2.get$elapsedTicks() / 10000)));
39+
/// G.expect(num1, new D._DeepMatcher(num2, 100), null);
40+
/// }
41+
test('test1', () {
42+
num runs = 10000;
43+
// `double` is a JS function, `double2` is implemented in dart
44+
expect(webnum.double(4), equals(8));
45+
expect(webnum.double2(4), equals(8));
46+
47+
num num1 = 1;
48+
final watch1 = Stopwatch()..start();
49+
for (var i = 0; i < runs; i++) {
50+
// num1 = webnum.double(10);
51+
num1 = webnum.double(num1);
52+
}
53+
watch1.stop();
54+
print('JS call takes: ${watch1.elapsed}');
55+
56+
num num2 = 1;
57+
final watch2 = Stopwatch()..start();
58+
for (var i = 0; i < runs; i++) {
59+
// num2 = webnum.double2(10);
60+
num2 = webnum.double2(num2);
61+
}
62+
watch2.stop();
63+
print('Dart call takes: ${watch2.elapsed}');
64+
65+
// Results: Dart code is about 7.6 times faster when passing the result as
66+
// the next param (up to "Infinity"), and 15 times with a constant param.
67+
final factor = (watch1.elapsedTicks / runs) / (watch2.elapsedTicks / runs);
68+
print('Factor: $factor');
69+
70+
expect(num1, equals(num2));
71+
});
72+
/// JS Code generated for the [test`] function. Note the inlined dart version.
73+
/// function() {
74+
/// var watch1, num1, i, watch2, num2,
75+
/// t1 = objectbox.double.call$1(4);
76+
/// G.expect(t1, new D._DeepMatcher(8, 100), null);
77+
/// G.expect(8, new D._DeepMatcher(8, 100), null);
78+
/// watch1 = new P.Stopwatch();
79+
/// $.$get$Stopwatch__frequency();
80+
/// watch1.start$0();
81+
/// for (num1 = 1, i = 0; i < 10000; ++i)
82+
/// num1 = objectbox.double.call$1(num1);
83+
/// watch1.stop$0(0);
84+
/// P.print("JS call takes: " + P.Duration$(watch1.get$elapsedMicroseconds(), 0).toString$0(0));
85+
/// watch2 = new P.Stopwatch();
86+
/// $.$get$Stopwatch__frequency();
87+
/// watch2.start$0();
88+
/// for (num2 = 1, i = 0; i < 10000; ++i)
89+
/// num2 *= 2;
90+
/// watch2.stop$0(0);
91+
/// P.print("Dart call takes: " + P.Duration$(watch2.get$elapsedMicroseconds(), 0).toString$0(0));
92+
/// P.print("Factor: " + H.S(watch1.get$elapsedTicks() / 10000 / (watch2.get$elapsedTicks() / 10000)));
93+
/// G.expect(num1, new D._DeepMatcher(num2, 100), null);
94+
/// }
95+
test('test1', () {
96+
num runs = 10000;
97+
// `double` is a JS function, `double2` is implemented in dart
98+
expect(webnum.double(4), equals(8));
99+
expect(webnum.double2(4), equals(8));
100+
101+
num num1 = 1;
102+
final watch1 = Stopwatch()..start();
103+
for (var i = 0; i < runs; i++) {
104+
// num1 = webnum.double(10);
105+
num1 = webnum.double(num1);
106+
}
107+
watch1.stop();
108+
print('JS call takes: ${watch1.elapsed}');
109+
110+
num num2 = 1;
111+
final watch2 = Stopwatch()..start();
112+
for (var i = 0; i < runs; i++) {
113+
// num2 = webnum.double2(10);
114+
num2 = webnum.double2(num2);
115+
}
116+
watch2.stop();
117+
print('Dart call takes: ${watch2.elapsed}');
118+
119+
// Results: Dart code is about 7.6 times faster when passing the result as
120+
// the next param (up to "Infinity"), and 15 times with a constant param.
121+
final factor = (watch1.elapsedTicks / runs) / (watch2.elapsedTicks / runs);
122+
print('Factor: $factor');
123+
124+
expect(num1, equals(num2));
22125
});
23126
}

0 commit comments

Comments
 (0)