aboutsummaryrefslogtreecommitdiff
path: root/contrib/bc/manuals/benchmarks.md
blob: af0593f4e8766f2a68c691ce8ec6dd52a783e378 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
# Benchmarks

The results of these benchmarks suggest that building this `bc` with
optimization at `-O3` with link-time optimization (`-flto`) will result in the
best performance. However, using `-march=native` can result in **WORSE**
performance.

*Note*: all benchmarks were run four times, and the fastest run is the one
shown. Also, `[bc]` means whichever `bc` was being run, and the assumed working
directory is the root directory of this repository. Also, this `bc` was at
version `3.0.0` while GNU `bc` was at version `1.07.1`, and all tests were
conducted on an `x86_64` machine running Gentoo Linux with `clang` `9.0.1` as
the compiler.

## Typical Optimization Level

These benchmarks were run with both `bc`'s compiled with the typical `-O2`
optimizations and no link-time optimization.

### Addition

The command used was:

```
tests/script.sh bc add.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 2.54
user 1.21
sys 1.32
```

For this `bc`:

```
real 0.88
user 0.85
sys 0.02
```

### Subtraction

The command used was:

```
tests/script.sh bc subtract.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 2.51
user 1.05
sys 1.45
```

For this `bc`:

```
real 0.91
user 0.85
sys 0.05
```

### Multiplication

The command used was:

```
tests/script.sh bc multiply.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 7.15
user 4.69
sys 2.46
```

For this `bc`:

```
real 2.20
user 2.10
sys 0.09
```

### Division

The command used was:

```
tests/script.sh bc divide.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 3.36
user 1.87
sys 1.48
```

For this `bc`:

```
real 1.61
user 1.57
sys 0.03
```

### Power

The command used was:

```
printf '1234567890^100000; halt\n' | time -p [bc] -q > /dev/null
```

For GNU `bc`:

```
real 11.30
user 11.30
sys 0.00
```

For this `bc`:

```
real 0.73
user 0.72
sys 0.00
```

### Scripts

[This file][1] was downloaded, saved at `../timeconst.bc` and the following
patch was applied:

```
--- ../timeconst.bc	2018-09-28 11:32:22.808669000 -0600
+++ ../timeconst.bc	2019-06-07 07:26:36.359913078 -0600
@@ -110,8 +110,10 @@
 
 		print "#endif /* KERNEL_TIMECONST_H */\n"
 	}
-	halt
 }
 
-hz = read();
-timeconst(hz)
+for (i = 0; i <= 50000; ++i) {
+	timeconst(i)
+}
+
+halt
```

The command used was:

```
time -p [bc] ../timeconst.bc > /dev/null
```

For GNU `bc`:

```
real 16.71
user 16.06
sys 0.65
```

For this `bc`:

```
real 13.16
user 13.15
sys 0.00
```

Because this `bc` is faster when doing math, it might be a better comparison to
run a script that is not running any math. As such, I put the following into
`../test.bc`:

```
for (i = 0; i < 100000000; ++i) {
	y = i
}

i
y

halt
```

The command used was:

```
time -p [bc] ../test.bc > /dev/null
```

For GNU `bc`:

```
real 16.60
user 16.59
sys 0.00
```

For this `bc`:

```
real 22.76
user 22.75
sys 0.00
```

I also put the following into `../test2.bc`:

```
i = 0

while (i < 100000000) {
	i += 1
}

i

halt
```

The command used was:

```
time -p [bc] ../test2.bc > /dev/null
```

For GNU `bc`:

```
real 17.32
user 17.30
sys 0.00
```

For this `bc`:

```
real 16.98
user 16.96
sys 0.01
```

It seems that the improvements to the interpreter helped a lot in certain cases.

Also, I have no idea why GNU `bc` did worse when it is technically doing less
work.

## Recommended Optimizations from `2.7.0`

Note that, when running the benchmarks, the optimizations used are not the ones
I recommended for version `2.7.0`, which are `-O3 -flto -march=native`.

This `bc` separates its code into modules that, when optimized at link time,
removes a lot of the inefficiency that comes from function overhead. This is
most keenly felt with one function: `bc_vec_item()`, which should turn into just
one instruction (on `x86_64`) when optimized at link time and inlined. There are
other functions that matter as well.

I also recommended `-march=native` on the grounds that newer instructions would
increase performance on math-heavy code. We will see if that assumption was
correct. (Spoiler: **NO**.)

When compiling both `bc`'s with the optimizations I recommended for this `bc`
for version `2.7.0`, the results are as follows.

### Addition

The command used was:

```
tests/script.sh bc add.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 2.44
user 1.11
sys 1.32
```

For this `bc`:

```
real 0.59
user 0.54
sys 0.05
```

### Subtraction

The command used was:

```
tests/script.sh bc subtract.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 2.42
user 1.02
sys 1.40
```

For this `bc`:

```
real 0.64
user 0.57
sys 0.06
```

### Multiplication

The command used was:

```
tests/script.sh bc multiply.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 7.01
user 4.50
sys 2.50
```

For this `bc`:

```
real 1.59
user 1.53
sys 0.05
```

### Division

The command used was:

```
tests/script.sh bc divide.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 3.26
user 1.82
sys 1.44
```

For this `bc`:

```
real 1.24
user 1.20
sys 0.03
```

### Power

The command used was:

```
printf '1234567890^100000; halt\n' | time -p [bc] -q > /dev/null
```

For GNU `bc`:

```
real 11.08
user 11.07
sys 0.00
```

For this `bc`:

```
real 0.71
user 0.70
sys 0.00
```

### Scripts

The command for the `../timeconst.bc` script was:

```
time -p [bc] ../timeconst.bc > /dev/null
```

For GNU `bc`:

```
real 15.62
user 15.08
sys 0.53
```

For this `bc`:

```
real 10.09
user 10.08
sys 0.01
```

The command for the next script, the `for` loop script, was:

```
time -p [bc] ../test.bc > /dev/null
```

For GNU `bc`:

```
real 14.76
user 14.75
sys 0.00
```

For this `bc`:

```
real 17.95
user 17.94
sys 0.00
```

The command for the next script, the `while` loop script, was:

```
time -p [bc] ../test2.bc > /dev/null
```

For GNU `bc`:

```
real 14.84
user 14.83
sys 0.00
```

For this `bc`:

```
real 13.53
user 13.52
sys 0.00
```

## Link-Time Optimization Only

Just for kicks, let's see if `-march=native` is even useful.

The optimizations I used for both `bc`'s were `-O3 -flto`.

### Addition

The command used was:

```
tests/script.sh bc add.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 2.41
user 1.05
sys 1.35
```

For this `bc`:

```
real 0.58
user 0.52
sys 0.05
```

### Subtraction

The command used was:

```
tests/script.sh bc subtract.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 2.39
user 1.10
sys 1.28
```

For this `bc`:

```
real 0.65
user 0.57
sys 0.07
```

### Multiplication

The command used was:

```
tests/script.sh bc multiply.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 6.82
user 4.30
sys 2.51
```

For this `bc`:

```
real 1.57
user 1.49
sys 0.08
```

### Division

The command used was:

```
tests/script.sh bc divide.bc 1 0 1 1 [bc]
```

For GNU `bc`:

```
real 3.25
user 1.81
sys 1.43
```

For this `bc`:

```
real 1.27
user 1.23
sys 0.04
```

### Power

The command used was:

```
printf '1234567890^100000; halt\n' | time -p [bc] -q > /dev/null
```

For GNU `bc`:

```
real 10.50
user 10.49
sys 0.00
```

For this `bc`:

```
real 0.72
user 0.71
sys 0.00
```

### Scripts

The command for the `../timeconst.bc` script was:

```
time -p [bc] ../timeconst.bc > /dev/null
```

For GNU `bc`:

```
real 15.50
user 14.81
sys 0.68
```

For this `bc`:

```
real 10.17
user 10.15
sys 0.01
```

The command for the next script, the `for` loop script, was:

```
time -p [bc] ../test.bc > /dev/null
```

For GNU `bc`:

```
real 14.99
user 14.99
sys 0.00
```

For this `bc`:

```
real 16.85
user 16.84
sys 0.00
```

The command for the next script, the `while` loop script, was:

```
time -p [bc] ../test2.bc > /dev/null
```

For GNU `bc`:

```
real 14.92
user 14.91
sys 0.00
```

For this `bc`:

```
real 12.75
user 12.75
sys 0.00
```

It turns out that `-march=native` can be a problem. As such, I have removed the
recommendation to build with `-march=native`.

## Recommended Compiler

When I ran these benchmarks with my `bc` compiled under `clang` vs. `gcc`, it
performed much better under `clang`. I recommend compiling this `bc` with
`clang`.

[1]: https://github.com/torvalds/linux/blob/master/kernel/time/timeconst.bc