Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

38
votes
11answers
5k views

How do I write a correct micro-benchmark in Java?

As the title says. How do you write (and run) a correct micro-benchmark in Java? I'm looking here for code samples and comments illustrating various things to think about. Example: Should the ...
6
votes
1answer
873 views

Drain the instruction pipeline of Intel Core 2 Duo?

I'm writing some micro-benchmarking code for some very short operations in C. For example, one thing I'm measuring is how many cycles are needed to call an empty function depending on the number of ...
3
votes
2answers
593 views

How to benchmark on multi-core processors

I am looking for ways to perform micro-benchmarks on multi-core processors. Context: At about the same time desktop processors introduced out-of-order execution that made performance hard to ...
2
votes
1answer
286 views

How to specify the command line when using Caliper?

I find googles micro benchmark project Caliper very interesting but the documentation is still (except some examples) quite non-existent. I have two different cases where I need to influence the ...
1
vote
5answers
80 views

Java. Concatenate String. Micro Benchmark

At first step I run this code: public class Demo { public static void main(String[] args) { String x = "x"; long start = System.currentTimeMillis(); for (int i = 0; i ...
0
votes
1answer
139 views

Better way to do simple performance testing

When comparing the performance of operations this is how I would typicaly do the tests: <?php $w = 'world'; $start1 = microtime(true); for($i=0;$i<10000;$i++) echo 'Hello ' . $w . '!'; ...
0
votes
8answers
673 views

Java: Why do two consecutive calls to the same method yield different times for execution

Here is a sample code: public class TestIO{ public static void main(String[] str){ TestIO t = new TestIO(); t.fOne(); t.fTwo(); t.fOne(); t.fTwo(); } public ...