1
vote
3answers
37 views
Benchmarking Desktop Applications
I have the desire to benchmark a Client/Server application (GUI) written in Java, on a Windows platform. I'm doing this so I can identify where the Application platform will break …
7
votes
8answers
585 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?
1
vote
2answers
78 views
Benchmarking SSE instructions
I'm benchmarking some SSE code (multiplying 4 floats by 4 floats) against traditional C code doing the same thing. I think my benchmark code must be incorrect in some way because i …
-2
votes
3answers
64 views
Speed of data access…
Which do you think would be faster:
A) Reading a file 512 bytes in length on a solid state drive in a directory of 1 billion files
B) Selecting a 512-byte column by unique indexe …
3
votes
2answers
77 views
.NET Benchmarking Guidelines
I'm interested in learning the best practices for benchmarking in .NET. What are the guidelines for setting up a valid benchmark test? How does one determine that their test is goo …
6
votes
4answers
208 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. …
1
vote
1answer
42 views
gwt application logging, profiling, benchmarking
Is there a good methodology for logging/benchmarking/profiling a gwt application to identify bottlenecks?
Something like a timing/logging framework or similar.
0
votes
5answers
85 views
Benchmarking method calls in C#
I'm looking for a way to benchmark method calls in C#.
I have coded a data structure for university assignment, and just came up with a way to optimize a bit, but in a way that w …
0
votes
1answer
36 views
Trouble deciphering Autobench output
I'm trying to benchmark a simple webserver I wrote, but I'm having trouble deciphering what Autobench has outputted. I've been googling all over for help on this (even going throu …
3
votes
1answer
63 views
Ruby Benchmark module: meanings of “user”, “system”, and “real”?
Experimenting with Ruby's Benchmark module...
>> Benchmark.bm(7) { |b| b.report('Report:') { s = '' ; 10000.times { s += 'a' } } }
user system total …
0
votes
2answers
101 views
Is there any simple way to benchmark python script?
Usually I use shell command time. My purpose is to test if data is small, medium, large or very large set, how much time and memory usage will be.
Any tools for linux or just pyth …
0
votes
1answer
13 views
Information on client interrogation to determine execution ability?
I am looking for information concerning a proven process to interrogate the current user's client, and perhaps benchmark a code piece, to determine how effectively the client is ex …
22
votes
21answers
3k 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 a …
0
votes
1answer
13 views
Apache Benchmark - Randomized querystrings?
heya,
I need to benchmark a site, and was thinking of using ab (Apache Benchmark) to do it.
We need to hammer it quite hard, and we're interested more in how our app will cope, a …
2
votes
2answers
196 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)) …
