Skip to content
Snippets Groups Projects
overhead-findings.txt 560 B
Newer Older
[increases overhead (first is slower)]
-for loop with list vs. array (reason: due to new instantiation of iterator)
-for loop with super type vs. concrete type (reason: due to less JIT optimization possibilities)
-passing by argument vs. instance variable (reason: unknown)
-pipe with array vs. single element (reason: unknown)
Christian Wulf's avatar
Christian Wulf committed
-

[irrelevant w.r.t. overhead]
-foreach vs. index-based iteration
-iterative vs. recursive execution
-


[analysis performance results (50%)]

2:	7400 ns
9:	9400 ns
10:	4900 ns (single element pipe)
11: 7400 ns (fixed sized pipe)