Tagged Questions
0
votes
1answer
25 views
What tools exist for benchmarking Cascading for Hadoop routines?
I have been given a multi-step Cascading program that runs in about ten times the amount of time that an equivalent M/R job runs. How do I go about figuring out which of the steps is running the ...
43
votes
7answers
3k views
Ackermann very inefficient with Haskell/GHC
I try computing Ackermann(4,1) and there's a big difference in performance between different languages/compilers. Below are results on my Core i7 3820QM, 16G, Ubuntu 12.10 64bit,
C: 1.6s, gcc -O3 ...
4
votes
3answers
517 views
Fastest way of converting integer to string in java
Everytime I had to convert an intinto a String I picked either ""+aor Integer.toString(a). Now I wondered which way is faster, so I wrote a simple benchmark that calls function_1, function_2 and ...
1
vote
2answers
75 views
Prevent null-statement optimization for benchmark
Consider the following code : LWS
#include <iostream>
#include <chrono>
#include <cmath>
#include <ctime>
#include <cstdlib>
template <class Counter, class Function, ...
3
votes
1answer
68 views
Why does Method access seem faster than Field access?
I was doing some tests to find out what the speed differences are between using getters/setters and direct field access. I wrote a simple benchmark application like this:
public class FieldTest {
...
2
votes
1answer
202 views
Scala 2.10 benchmark: generic methods from the collections are useless when performance is important?
I have benchmarked several ways to fold a large array of primitives ("direct" and with iterators), and the results are disappointing. (Yes, I have done warmup, intermediate GC and many run passes, ...
1
vote
0answers
66 views
Constructing a meaningful benchmark for this code? [closed]
I've came across an article which discusses reimplementing dynamic_cast. The author claims a 20x 10x speedup. He provided his benchmark code in the reddit discussion. This is the benchmark:
#include ...
1
vote
0answers
59 views
Strategies for Python profiling and benchmarking [closed]
We would like to implement profiling and benchmarking on our Python (2.7) REST application. I have heard of the profile module, and it seems like a very good alternative, but we are interested in ...
0
votes
8answers
86 views
In PHP is faster to get a value from an if statement or from an array?
Maybe this is a stupid question but what is faster?
<?php
function getCss1 ($id = 0) {
if ($id == 1) {
return 'red';
} else if ($id == 2) {
return 'yellow';
} else if ...
1
vote
1answer
108 views
Derby: The more rows in the tables, the faster the queries?
I noticed some strange behaviour while doing performance tests with Apache Derby DB:
I do five test runs for performance testing. Before each run, I insert some data in the table, so that I do the ...
1
vote
4answers
226 views
How to test the render speed of my solution in a web browser?
Ok, I need to test the speed of my solution in a web browser, but I have some problems, there are 2 versions of the web solution, the original one that is on server A and the "fixed" version that is ...
3
votes
1answer
184 views
Scala 2.8 vs 2.9 benchmark, strange results
Some time ago, I wrote some code to decide which method of updating mutable variable with new value (but without creating new objects) is faster. One method uses a temporary value and there is an ...
0
votes
1answer
164 views
How to track any object instantiation on my JVM with Runtime.freeMemory() and GC
I am using the default GC with 1.6.0_27-b07 (Sun's JRE) and because of this I am not able to detect an increase in memory with Runtime.getRuntime().freeMemory(). Can anyone shed a light on how to ...
5
votes
1answer
165 views
Haskell benchmarking/Optimization of nf/whnf of non-strict reduction
I am trying to optimize a library which is designed to take a large data set and
then apply different operations to it. Now that the library is working, I want
to optimize it.
I am under the ...
3
votes
7answers
420 views
How could this Java code be sped up?
I am trying to benchmark how fast can Java do a simple task: read a huge file into memory and then perform some meaningless calculations on the data. All types of optimizations count. Whether it's ...
6
votes
4answers
1k views
Benchmarking VBA Code
What is considered the most accurate way to benchmark VBA code (in my case, I am testing code in Excel)? Are there any other techniques for benchmarking code besides the 2 below, and if so, what are ...
4
votes
1answer
167 views
C# compiler optimizations for benchmarking purposes
I needed to check performance of some .NET API, and I came up with this code.
Stopwatch sw = Stopwatch.StartNew();
for (int i = 0; i < 1000; i++) {
int res = (int) SOME .NET FUNCTION TO RUN;
}
...
1
vote
1answer
244 views
MySQL Query Cost
Can someone tell me the theoretical difference in the expensive of the following queries?
SELECT * FROM posts WHERE category IN(1)
SELECT * FROM posts WHERE category IN(1,2)
SELECT * FROM posts ...
1
vote
1answer
60 views
I have a really slow page, how can I figure out of it's the M, V, or C? What kind of timing mechanism would be accurate?
The controller makes a few calls to the model, then it returns some data to the view. The view actually, sadly, (it's not my fault), contains a ton of inline queries and more calls to the Model, yeah ...
2
votes
2answers
331 views
How can I do perl CGI performance measurements, benchmarks, time measurements at various stages of execution?
I would like to know techniques (coding, libraries, configurations) for measuring the duration of execution of CGI Perl code at various stages:
starting up the Perl interpreter
beginning running the ...
0
votes
1answer
247 views
Mysql benchamrking GUI tool
Hi
I need to optimize an application which is already there for a long time. Optimization will include move inline queries from php pages to "stored procedures", get rid of sub queries and convert ...
1
vote
2answers
707 views
How to benchmark and optimize a really database-intensive Rails action?
There is an action in the admin section of a client's site, say Admin::Analytics (that I did not build but have to maintain) that compiles site usage analytics by performing a couple dozen, rather ...
2
votes
5answers
935 views
How do I measure variability of a benchmark comprised of many sub-benchmarks?
(Not strictly programming, but a question that programmers need answered.)
I have a benchmark, X, which is made up of a lot of sub-benchmarks x1..xn. Its quite a noisy test, with the results being ...
45
votes
4answers
14k 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 ...
2
votes
4answers
820 views
Benchmarking a particular method in Objective-C
I have a critical method in an Objective-C application that I need to optimize as much as possible. I first need to take some easy benchmarks on this one single method so I can compare my progress as ...
2
votes
1answer
130 views
Any Javascript optimization benchmarks?
I watched Nicholas Zakas' talk, Speed up your Javascript, with some interest. I liked how he benchmarked the various performance improvements created by various optimization techniques, e.g. reducing ...
13
votes
5answers
639 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 ...
6
votes
3answers
263 views
Local Variables take 7x longer to access than global variables?
I was trying to benchmark the gain/loss of "caching" math.floor, in hopes that I could make calls faster.
Here was the test:
<html>
<head>
<script>
window.onload = function()
{
...
5
votes
2answers
408 views
PHP Performance Metrics
I am currently developing a PHP MVC Framework for a personal project. While I am developing the framework I am interested to see any notable performance by implementing different techniques for ...
0
votes
3answers
227 views
Execution times for various RDBMS queries?
Is there some reliable (i.e. acknowledged) data on the execution times for various queries, such as different types of joins, scans, with different types and size of data? I am looking for the order ...
7
votes
3answers
3k views
Understanding Ruby on Rails render times
I am working on an "optimization" on my application and I am trying to understand the output that rails (version 2.2.2) gives at the end of the render.
Here is the "old" way:
Rendered user/_old_log ...
-1
votes
5answers
241 views
Illogical benchmarking?
I witnessed the following weird behavior. I have two functions, which do almost the same - they measure the number of cycles it takes to do a certain operation. In one function, inside the loop I ...
6
votes
11answers
2k views
How to correctly benchmark a [templated] C++ program
< backgound>
I'm at a point where I really need to optimize C++ code. I'm writing a library for molecular simulations and I need to add a new feature. I already tried to add this feature in the ...
