Profiling something under controlled circumstances to find its performance.
2
votes
1answer
54 views
How would I simulate running code on different hardware while using only one machine?
As the title says I'm looking to approximate the performance of a piece of code on different hardware setups. Are there any tools out there to do this?
I'm looking to run my code and perform ...
2
votes
2answers
203 views
Wso2 ESB - Send many requests at the same time to a web service
How can I send many simultaneous Java requests from a Java client to a deployed web service? Knowing that the client was generated from the WSO2ESB.
0
votes
0answers
13 views
Search dataset with interval in attributes
I'm looking for a dataset (I prefere data services) with intervals as attributes, for example price in [5, 20]. I need it for experiments. Where can i found it ?
Thanks.
0
votes
0answers
34 views
Extract a large dataset with categorical attributes
I'm looking for a large dataset (e.g., cars or hotels) with categorical attributes. I want to retreive these large dataset to make an experiment. for example, a data set of cars with price, color, ...
2
votes
2answers
85 views
How to measure the time taken by executing a piece of code in a reliable way?
The question of how to measure execution time has been asked plenty of times on SO, see here or here for example. However these questions mostly focus on which timing functions to use.
What I am ...
2
votes
0answers
190 views
Database performance using mysqlslap vs actual sql queries
We are benchmarking a number of servers with a view to migrating our current site.
We have tested 2 configs against the current setup, using a mysqlslap test and by running sql queries on table with ...
0
votes
1answer
54 views
How to specify the workload to run on a SPEC CPU 2006 benchmark?
I'm currently trying to benchmark a new FDO toolchain with SPEC CPU 2006.
Some benchmarks are run with several workloads. For instance 473.astar is run with rivers and BigLakes.
When I use FDO on ...
8
votes
2answers
307 views
Is while(rs.next()) faster than a series of rs.absolute()
Suppose to have a ResultSet rs with n object.
This code:
while(rs.next()) {
// do something on rs
}
is algoritmically equal to this code (i.e. both gave the same result):
for(i=1; i<=n; ...
0
votes
0answers
56 views
Unable to run YCSB successfully for ElasticSearch
I am new to both YCSB and ElasticSearch. I was able to run YCSB easily for Cassandra. However, I have not been able to do the same with ES (or perhaps I have but I am not sure).
Following the steps ...
2
votes
1answer
777 views
guava cache vs ehcache benchmark
I'm trying to decide which of these two to use in my project: guava cache or ehcache. Looking for a lightweight service level caching solution.
I've searched for some benchmarks, but couldn't find ...
1
vote
1answer
156 views
JavaFX application boot time performance
I am creating my first JavaFX application, here is a bogged down version:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import ...
1
vote
0answers
83 views
Running a benchmark on javascript ajax calls
One function returns a single item, for one id.
The other function returns 3 items for 3 ids I just wanted to benchmark which would be best, my preference is for the single request just for ...
2
votes
2answers
92 views
MongoDB: How to make sure that Javascript is waiting for processes?
I asked myself, whether javascript (concerning mongoDB) waits for the execution of mongoDB processes.
For example:
Im inserting documents like
for (i=0; i<=myarray.length -1; i++)
{
...
1
vote
1answer
491 views
Is an actual baudrate of 115200 or higher possible?
While running some tests with an FT232R USBtoRS232 Chip, which should be able to manage speeds up to 3Mbaud/s, I have the problem that my actual speed is only around 38kbaud/s or 3,8KB/s.
I've ...
1
vote
0answers
29 views
How to measure by c code
I have a question about how to measure the bandwidth of a GPU. I have tried some different ways but none of them work. For example, I tried to use the amount of data transfer divided by the time used ...
3
votes
1answer
58 views
Are the results of the Linux time command affected by system load?
I'm using the Linux shell time and GNU time commands for some basic benchmarking.
But my system occasionally has varying load from other users.
Are the "user" and "sys" outputs affected by these ...
1
vote
3answers
82 views
Benchmarking : get algorithm user time
I'm trying to test the performance of an algorithm I wrote in C++. I use my university calculation cluster (via SGE)
The problem is that I don't know when the server is full or not with other ...
0
votes
0answers
82 views
phoronix test suite extract results from another system
i'm using phoronix test suite to benchmark various systems.
I have collected results from many systems to my pc and i want to extract results to text format and then compare them.
The option ...
-1
votes
3answers
172 views
Javascript and MongoDB - write to file
I'm using mongoDB on an ubuntu server. However I'm using a javascript to store data and do some map/reduce. I would like to measure these operations and write the results into a file. Somehow I fail ...
3
votes
1answer
146 views
MySQL benchmarking: 1 query returning 1000 rows VS 1000 single-row queries [closed]
Working on an app that requires a very large amount of data transferred from the DB. It includes SELECT and UPDATE queries both (i.e. read and write to the DB).
First I need to get a list of all the ...
6
votes
1answer
88 views
Benchmarking: using `expression` `quote` or neither
Generally, when I run benchmarks, I wrap my statements in expression.
Recently, it was suggested to either (a) not do so or (b) use quote instead of expression.
I find two advantages to wrapping ...
0
votes
0answers
540 views
MicroMVC, ColaPHP, DooPHP [closed]
In some benchmark I saw some PHP frameworks that are not well-known to me but have excellent performance:
MicroMVC
ColaPHP
DooPHP
Larravel
Kohana
(image source)
Which ones are stable for ...
1
vote
3answers
103 views
How to analyze the length of time a specific function runs in R
I just got a gig to help speed up a program in R by improving the efficiency of the algorithms used to calculate data. There are many loops that do different calculations, and I'm wondering which ...
7
votes
2answers
105 views
does the by( ) function make growing list
Does the by function make a list that grows one element at a time?
I need to process a data frame with about 4M observations grouped by a factor column. The situation is similar to the example below:
...
0
votes
1answer
142 views
Why my code faster on Linux than on RTOS?
I wrote a Matrix class in C++, I made a benchmark to test this code on a Raspberry Pi, when I used arch Linux the calculation time was 0.4ms, When I used ChibiOS which is RTOS the runtime of the code ...
2
votes
1answer
134 views
ruby debugging: print line number when taking too long
Is there a way in Ruby to have it print the __LINE__ number of code (at my script level, not required gems) it's working on if taking longer than 9 seconds (adjustable)?
For debugging I am getting it ...
5
votes
4answers
219 views
fastest way to get Min from every column in a matrix?
What is the fastest way to extract the min from each column in a matrix?
EDIT:
Moved all the benchmarks to the answer below.
Using a Tall, Short or Wide Matrix:
## TEST DATA
set.seed(1)
...
1
vote
1answer
118 views
CodeIgniter - how to selectively cache output?
My application allows registered users to post stuff. On the top bar, like many social apps, when logged in one can see their avatar etc.
My issue is that the user-specific content in the header gets ...
0
votes
1answer
86 views
Benchmark inconsistent results
I'm trying to profile a function. The function is meant to convert a structure to an array. I have two different approaches, using marshaling or BitConverter. Of course the marshaling method makes ...
0
votes
1answer
117 views
WCAT request throttling
I am having an issue with my initial testing/configuration of WCAT 6.4 for IIS 7 on Windows Server 2008 Std. We're pretty new to WCAT so this might be a fairly naive question.
We are testing a web ...
3
votes
1answer
402 views
Why is PostgreSQL 9.2 slower than 9.1 in my tests?
I have upgraded from PostgreSQL 9.1.5 to 9.2.1:
"PostgreSQL 9.1.5 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.4.6 20120305 (Red Hat 4.4.6-4), 64-bit"
"PostgreSQL 9.2.1 on ...
0
votes
1answer
180 views
Subprocess memory usage in python
How can one measure/benchmark maximum memory usage of a subprocess executed within python?
6
votes
3answers
186 views
Database temporarily disconnected after a lots of transactions by pgbench
I am using (PostgreSQL) 9.2.1 and test the database with pgbench.
pgbench -h 192.168.39.38 -p 5433 -t 1000 -c 40 -j 8 -C -U admin testdb
When I use the -C parameter(Establish a new connection for ...
3
votes
1answer
132 views
Scala criterion equivalent
Is there a Scala (or Java, I guess) equivalent of criterion? I'm not just talking about a benchmarking library: check out what criterion does for HTML results.
0
votes
1answer
66 views
Apache benchmark inconsistent
I am testing my website homepage on a local server using apache benchmark and I would have expected some consistent results, given that there are no eternal influences on the site as it is local.
...
2
votes
2answers
77 views
Benchmark by number of iterations per constant interval
For benchmarking the efficiency of different algorithms for a simple task and comparing them, the way I find most often is to set a constant number of times to iterate over the task, and measure the ...
0
votes
0answers
124 views
Calculating CPU to GPU bandwidth usage for a given application [closed]
In my application I am taking live 1080p video feeds and rendering them in OpenGL on a GPU. I want to profile this application. For that i need to calculate how much data transfer is happening from ...
5
votes
2answers
198 views
Algorithm performance
I am testing an algorithm for different parameters on a computer.
I notice the performance fluctuates for each parameters.
Say I run for the first time I got 20 ms, second times I got 5ms, third ...
3
votes
0answers
93 views
How to get JVM running time like the JVM hotspot log does?
When I use JVM option
-XX:+PrintCompilation
I get output like this
60 1 java.lang.String::hashCode (55 bytes)
74 2 sun.nio.cs.UTF_8$Encoder::encode (361 bytes)
...
-2
votes
1answer
173 views
0
votes
1answer
85 views
looking for a sample of MongoDB benchrun
I would like to run a benchmark using mongodb benchrun that will create a lot of load on the backend storage. and at the same time will be representative of real application workloads.
If somebody has ...
4
votes
0answers
2k views
Google's Scala performance benchmarks [closed]
Last year google published a benchmark comparing C++, Java, Scala and Go.
http://readwrite.com/2011/06/06/cpp-go-java-scala-performance-benchmark
The results in the table looked suspicious to me so I ...
0
votes
2answers
164 views
incrementations per second on a 2.5GHz Intel i7
I'm attempting to test some benchmarking tools by running them against a simple program which increments a variable as many times as possible for 1000 milliseconds.
How many incrementations of a ...
5
votes
1answer
175 views
Ruby attr_accessor vs. getter/setter benchmark: why is accessor faster?
I just tested attr_accessor against equivalent getter/setter-methods:
class A
# we define two R/W attributes with accessors
attr_accessor :acc, :bcc
# we define two attributes with ...
0
votes
0answers
91 views
GridMix3 error in hadoop 1.0.3
I'm trying to run the gridmix3 on hadooop1.0.3 and I get the following error. Does anybody know how to resolve this? I saw a similar post for hadoop 1.0.0 but then I didn't see any solution for the ...
0
votes
0answers
15 views
Intersocket communication profiling in SMP x86 platforms
I would like to estimate number of intersocket access in my application (benchmark RandomAccess). I am using Westmere, SandyBridge and Bulldozer platforms. Does anybody know any way how to do this?
...
1
vote
1answer
115 views
Python Pandas: What causes slowdown in different column selection methods?
After seeing this question about replicating SQL select-statement-like behavior in Pandas, I added this answer showing two ways that could shorten the verbose syntax given in the accepted answer to ...
0
votes
0answers
24 views
Benchmarking a cluster using HPL
I am trying to benchmark a cluster for scientific computing purposes using HPL (http://icl.cs.utk.edu/hpcc/faq/index.html) What is the ideal block size NB to use? How do you settle on a good choice ...
1
vote
1answer
57 views
Force fixed column order with caliper
I'm running a caliper benchmark with multiple time* methods and two parameters and at the end get a nice table like
parameter1 parameter2 benchmark
After a small change to a method body I get ...
4
votes
4answers
147 views
What is the optimum way to fold a function's arguments?
I have a function f that can be called with arbitrary arguments. When it is called with 2 arguments, it performs an operation. When it is called with >2 arguments, it must itself fold the others. That ...

