Tagged Questions
Profiling something under controlled circumstances to find its performance.
97
votes
3answers
32k views
What do 'real', 'user' and 'sys' mean in the output of time(1)?
$ time foo
real 0m0.003s
user 0m0.000s
sys 0m0.004s
$
What do 'real', 'user' and 'sys' mean in the output of time?
Which one is meaningful when benchmarking my app?
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 ...
62
votes
13answers
63k views
Benchmark: VMware vs Virtualbox
I tested VirtualBox 2.1.4 and VMware Workstation 6.5.1 for later use as a development VM
Host: Ubuntu64, 4GB RAM, Core2Duo E6600, Samsung HD502IJ
Guest: Windows XP Home, 1GB RAM, 8GB virtual disk
...
55
votes
24answers
11k views
How much faster is C++ than C#?
Or is it now the other way around?
From what I've heard there are some areas in which C# proves to be faster than C++, but I've never had the guts to test it by myself.
Thought any of you could ...
49
votes
5answers
26k views
file_get_contents VS CURL, what has better performance?
I am using PHP to build a web crawler to crawl millions of URLs, what is better for me in terms of performance? file_get_contents or CURL?
Thanks.
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 ...
38
votes
13answers
4k views
Does Google Analytics have peformance overhead?
To what extent does Google Analytics impact performance?
I'm looking for the following:
Benchmarks (including response times/pageload times et al)
Links or results to similar benchmarks
One ...
33
votes
8answers
2k views
Why does C# execute Math.Sqrt() more slowly than VB.NET?
Background
While running benchmark tests this morning, my colleagues and I discovered some strange things concerning performance of C# code vs. VB.NET code.
We started out comparing C# vs. Delphi ...
32
votes
3answers
5k views
Load Testing with AB … fake failed requests (length)
To do some load testing, for my own curiosity, on my server I ran:
ab -kc 50 -t 200 http://localhost/index.php
This opens up 50 keep-alive connections for 200 seconds and just slams my server with ...
26
votes
3answers
4k views
Why is go language so slow?
As we can see from The Computer Language Benchmarks Game:
go is on average 10x slower than C
go is 3x slower than Java !?
How can this be, bearing in mind that go compiler produces native code ...
21
votes
7answers
297 views
How to benchmark efficiency of PHP script
I want to know what is the best way to benchmark my PHP scripts. Does not matter if a cron job, or webpage or web service.
I know i can use microtime but is it really giving me the real time of a PHP ...
21
votes
3answers
5k views
How fast is Berkeley DB SQL compared to SQLite?
Oracle recently released a Berkeley DB back-end to SQLite. I happen to have a hundreds-of-megabytes SQLite database that could very well benefit from "improved performance, concurrency, scalability, ...
19
votes
4answers
656 views
Benchmarking (python vs. c++ using BLAS) and (numpy)
I would like to write a program that makes extensive use of BLAS and LAPACK linear algebra functionalities. Since performance is an issue I did some benchmarking and would like know, if the approach I ...
18
votes
4answers
585 views
How fast are lambda functions in GCC
Having toyed around a bit with C++0x Lamda Expression in G++, I was wondering as to how well the performance will be in general/specific situations compared to alternative ways without using lambda ...
18
votes
4answers
1k views
C#: Is this benchmarking class accurate?
I created a simple class to benchmark some methods of mine. But is it accurate? I am kind of new to benchmarking, timing, et cetera, so thought I could ask for some feedback here. Also, if it is good, ...
17
votes
4answers
2k views
Are .NET 4.0 Runtime slower than .NET 2.0 Runtime?
After I upgraded my projects to .NET 4.0 (With VS2010) I realized than they run slower than they were in .NET 2.0 (VS2008). So i decided to benchmark a simple console application in both VS2008 & ...
17
votes
7answers
4k views
Go language benchmarks?
I see the claims that Go is supposed to be almost comparable in speed to C, but are there any benchmarks available yet?
16
votes
5answers
2k views
Whats really more performant? Haskell or OCaml
Okay folks, now it's getting serious... for me.
I spent the last 18 months getting the grip of functional programming, starting with learning OCaml and for some weeks now Haskell. Now I want to take ...
16
votes
8answers
925 views
Is my method of measuring running time flawed?
Sorry, it's a long one, but I'm just explaining my train of thought as I analyze this. Questions at the end.
I have an understanding of what goes into measuring running times of code. It's run ...
16
votes
3answers
2k views
Writing a time function in Haskell
I'm new to Haskell and I'd like to be able to time the runtime of a given function call or snippet of code.
In Clojure I can use 'time':
user=> (time (apply * (range 2 10000)))
"Elapsed time: ...
15
votes
2answers
1k views
Clojure number crunching performance
I'm not sure whether this belongs on StackOverflow or in the Clojure Google group. But the group seems to be busy discussing numeric improvements for Clojure 1.2, so I'll try here:
...
15
votes
2answers
818 views
How to benchmark functions in Clojure?
I know I can get the time take to evaluate a function can be printed out on the screen/stdout using the time function/macro.
The time macro returns the value of the evaluated function, which makes it ...
15
votes
3answers
7k views
clearing a small integer array: memset vs. for loop
There are two ways to zero out an integer/float array:
memset(array, 0, sizeof(int)*arraysize);
or:
for (int i=0; i <arraysize; ++i)
array[i]=0;
obviously, memset is faster for large ...
15
votes
13answers
2k views
Is stopwatch benchmarking acceptable?
Does anyone ever use stopwatch benchmarking, or should a performance tool always be used? Are there any good free tools available for Java? What tools do you use?
EDIT: Thanks for all the answers ...
14
votes
2answers
152 views
Is it possible to force an existing Java application to use no more than x cores?
We are benchmarking existing Java programs. They are threaded applications designed to benefit from multi-core CPUs. We would like to measure the effect of the number of cores on the running speed, ...
14
votes
6answers
315 views
What's the best way to determine at runtime if a browser is too slow to gracefully handle complex JavaScript/CSS?
I'm toying with the idea of progressively enabling/disabling JavaScript (and CSS) effects on a page - depending on how fast/slow the browser seems to be.
I'm specifically thinking about low-powered ...
14
votes
5answers
440 views
How can I measure the speed of code written in Java? (AI algorithms)
How can I measure the speed of code written in Java?
I planning to develop software which will solve Sudoku using all presently available AI and ML algorithms and compare time against simple ...
14
votes
5answers
3k views
Java vs C#: Are there any studies that compare their execution speed?
Taken out all the obvious caveats related to benchmarks and benchmark comparison, is there any study (an array of well documented and not biased tests) that compares the average execution speed of the ...
14
votes
5answers
4k views
howto benchmark javascript code?
Is there a package that helps me benchmark JS code ? Im not referring the Firebug and such tools.
I need to compare 2 different JS functions that I have implemented. Im very familiar with perl's ...
13
votes
3answers
3k views
Clang vs GCC - which produces better binaries?
I'm currently using GCC, but I discovered Clang recently and I'm pondering switching. There is one deciding factor though - quality (speed, memory footprint, reliability) of binaries it produces - if ...
13
votes
5answers
454 views
What is microbenchmarking?
I've heard this term used, but I'm not entirely sure what it means, so:
What DOES it mean and what DOESN'T it mean?
What are some examples of what IS and ISN'T microbenchmarking?
What are the ...
13
votes
4answers
7k views
What is the best way to measure execution time of a function?
Obviously I can do and DateTime.Now.After - DateTime.Now.Before but there must be something more sophisticated.
Any tips appreciated.
12
votes
4answers
1k views
How to load data quickly into R?
I have some R scripts, where I have to load several dataframe in R as quickly as possible. This is quite important as reading the data is the slowest part of the procedure. E.g.: plotting from ...
12
votes
1answer
199 views
Java Performance History
I wonder if there is some resource on the web where the different versions of the Sun Java VM are compared by speed.
Something like the PyPy speed timeline would be optimal, because I'm interested in ...
12
votes
3answers
730 views
Why does Perl's tr/\n// get slower and slower as line lengths increase?
In perlfaq5, there's an answer for How do I count the number of lines in a file?. The current answer suggests a sysread and a tr/\n//. I wanted to try a few other things to see how much faster tr/\n// ...
12
votes
5answers
5k views
HTTPS vs HTTP speed comparison
I'm considered running my entire e-commerce website under https. I decided to run a crude benchmark to measure the download time of a 156KB image through https vs http because I had read that https is ...
11
votes
8answers
6k views
How to Calculate Execution Time of a Code Snippet in C++
I have to compute execution time of a C++ code snippet in seconds. It must be working either on Windows or Unix machines.
I use code the following code to do this. (import before)
clock_t startTime ...
11
votes
7answers
3k views
How to benchmark php/mysql site
I would like to know how to benchmark a php/mysql site.
We have a web app almost completed and ready to go live, we know how many people are going to be using it in a years time but have absolutely ...
11
votes
5answers
7k views
Why is looping over range() in Python faster than using a while loop?
The other day I was doing some Python benchmarking and I came across something interesting. Below are two loops that do more or less the same thing. Loop 1 takes about twice as long as loop 2 to ...
11
votes
7answers
6k views
SQLite Performance Benchmark — why is :memory: so slow…only 1.5X as fast as disk?
Why is :memory: in sqlite so slow?
I've been trying to see if there are any performance improvements gained by using in-memory sqlite vs. disk based sqlite. Basically I'd like to trade startup time ...
11
votes
8answers
1k views
Which javascript minification library produces better results?
Between Yahoo! UI Compressor, Dean Edwards Packer and jsmin, which produces better results, both in terms of resulting footprint and fewer errors when obfuscating.
11
votes
7answers
7k views
What is FLOP/s and is it a good measure of performance?
I've been asked to measure the performance of a fortran program that solves differential equations on a multi-CPU system. My employer insists that I measure FLOP/s (Floating operations per second) and ...
10
votes
4answers
293 views
Executable runs faster on Wine than Windows — why?
Solution: Apparently the culprit was the use of floor(), the performance of which turns out to be OS-dependent in glibc.
This is a followup question to an earlier one: Same program faster on Linux ...
10
votes
2answers
469 views
F# seems slower than other languages… what can I do to speed it up? [closed]
I like F# ; I really, really do. Having been bitten by the "functional programming"-bug, I force myself to use it when I have the opportunity to. In fact, I recently used it (during a one week ...
10
votes
4answers
514 views
Why is my multi threading not efficient?
I've designed a class that fills an array with integers using a various number of threads, in order to see the power of multi threading. But according to my result, there is none...
The idea: The ...
10
votes
4answers
862 views
How am I supposed to interpret the results from Apache's ab benchmarking tool?
Alright, I've searched everywhere and I can't seem to find a detailed resource online for how to interpret the results from Apache's ab server benchmarking tool. I've run several tests with what I ...
10
votes
3answers
286 views
Why does it take so long to print “\n” in Perl?
Why does it take so long to print a newline? Is this just my machine, or do others see the same effect?
With the newline:
#!/usr/bin/perl
use strict;
use Benchmark;
timethis(100000,'main();');
...
10
votes
6answers
390 views
How to measure productivity loss from slow PCs running Visual Studio?
Many PCs we have on the development team are out-dated and are very slow to run Visual Studio 2008. They should very much be replaced with newer machines. But there's a general reluctance on ...
10
votes
13answers
1k views
Why is .NET faster than C++ in this case?
Make sure you run outside of the IDE. That is key.
-edit- I LOVE SLaks comment. "The amount of misinformation in these answers is staggering." :D
Calm down guys. Pretty much all of you were wrong. I ...
10
votes
3answers
2k views
How do I get monotonic time durations in python?
I want to log how long something takes in real walltime. Currently I'm doing this:
startTime = time.time()
someSQLOrSomething()
print "That took %.3f seconds" % (time.time() - startTime)
But that ...