Tagged Questions
The microbenchmark tag has no wiki summary.
68
votes
13answers
3k views
How can I find the missing value more concisely?
The following code checks if x and y are distinct values (the variables x, y, z can only have values a, b, or c) and if so, sets z to the third character:
if x == 'a' and y == 'b' or x == 'b' and y ...
15
votes
20answers
2k views
My python program executes faster than my java version of the same program. What gives?
Update: 2009-05-29
Thanks for all the suggestions and advice. I used your suggestions to make my production code execute 2.5 times faster on average than my best result a couple of days ago. In the ...
10
votes
4answers
639 views
On improving Haskell's performance compared to C in fibonacci micro-benchmark
I came across this question, which compared the performance of various compilers on computing fibonaci numbers the naive way.
I tried doing this with Haskell to see how it compares to C.
C code:
...
8
votes
13answers
948 views
Java for loop performance question
considering this example:
public static void main(final String[] args) {
final List<String> myList = Arrays.asList("A", "B", "C", "D");
final long start = System.currentTimeMillis();
...
5
votes
11answers
1k views
First time a Java loop is run SLOW, why? [Sun HotSpot 1.5, sparc]
In benchmarking some Java code on a Solaris SPARC box, I noticed that the first time I call the benchmarked function it runs EXTREMELY slowly (10x difference):
First | 1 | 25295.979 ...
4
votes
2answers
174 views
Micro-benchmark comparing Scala mutable, immutable collections with java.util.concurrent.* collections
Are there any published micro-benchmarks that compare the Scala mutable and immutable collections with each other and the collections in java.util.concurrent, in multi-threaded environments? I am ...
3
votes
3answers
230 views
Benchmarking small Arrays vs. Lists in Java: Is my benchmarking code wrong?
Disclaimer: I have looked through this
question and this question
but they both got derailed by small
details and general
optimization-is-unnecessary concerns.
I really need all the ...
2
votes
3answers
524 views
How to minimize the costs for allocating and initializing an NSDateFormatter?
I noticed that using an NSDateFormatter can be quite costly. I figured out that allocating and initializing the object already consumes a lot of time.
Further, it seems that using an NSDateFormatter ...
2
votes
4answers
206 views
What does Java do with my “equals” implementations here?
Today, I've stumbled over the following:
Consider two classes NewClass and NewClass1, which have the following "equals"-methods:
NewClass:
@Override
public boolean equals(Object obj) {
return ...
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
2answers
88 views
D implicitly cast Vector(T) types
Compare code fragments A:
struct Vector2(T) {
// ...
auto opCast(U)() {
return U(x, y);
}
void opOpAssign(string op)(Vector2 vector) {
mixin ("x" ~ op ~ "= ...
1
vote
2answers
68 views
Microbenchmark system Java
I am writing a microbanchmark in Java, following the ‘rules’ on this page. The last rule states:
“Reduce noise in your measurements. Run your benchmark on a quiet machine…”
So now I’m wondering how ...
1
vote
1answer
36 views
How long does a microbenchmark need to run?
First of all, this is not about the usefulness of microbenchmarks. I'm well aware of their purpose: Indicating performance characteristics and comparison in a very specific case to highlight a single ...