Profiling something under controlled circumstances to find its performance.
5
votes
8answers
290 views
benchmarking, code reordering, volatile
I decide I want to benchmark a particular function, so I naïvely write code like this:
#include <ctime>
#include <iostream>
int SlowCalculation(int input) { ... }
int main() {
...
0
votes
0answers
107 views
Interpreting Linux time command result
I want to benchmark BLAST running time on my server so I started the time command.
The server has 16 CPUs and I was running the BLAST 16 threaded. There may have been other applications running in ...
0
votes
1answer
224 views
Node.js Performance using Cluster
I have been trying to figure this out for a while. I wrote a very simple http server in node to benchmark the effect of using cluster. Here is my code:
var cluster = require('cluster');
var http = ...
0
votes
0answers
33 views
How to produce accurate results for benchmarking a Javascript function
I have this function that I'm using for benchmarking:
function benchMarkTest(func, loop) {
if (arguments.length == 1) {
loop = 1;
}
var start = Date.now();
for (var i = 0; ...
1
vote
2answers
65 views
Ruby Enumerator performance issue
based on my previous related question, I've discovered huge performance gap when using Enumerator class to generate infinite sequences.
Before I did believed the hitch is with Enumerable methods take ...
3
votes
2answers
78 views
How do I perform benchmark comparisons on a series of functions in Rebol?
I recently enquired about the fastest/most efficient way to count newlines in Rebol—I now need to ascertain which approach is best in a given situation.
Some example scenarios: Short Text, Fewer ...
1
vote
1answer
64 views
Database Benchmark : Weird results when testing concurrency (ExecutorService)
I am currently developing a java Benchmark to evaluate some usecases (inserts, updates, deletes, etc.) with an Apache Derby database.
My implementation is the following :
After having warmed up the ...
1
vote
1answer
28 views
technical considerations for including an extraneous javascript library in a Rails project
I recently included Handlebars.js in a rails project, and a coworker balked at the notion. What are the realistic technical considerations when including an extra javascript library into a rails ...
0
votes
1answer
43 views
Does benchmark in java good for compared modular arithmatic operations ?
Can I rely on the results of the benchmark in java to compare the calculations such as modular arithmetic to compare between two operation for example
A = B x C MOD N
D = E^-1 MOD N
Q1)
I want ...
-1
votes
1answer
170 views
Does encrypt time less than decrypt time in RSA cryptograohy?
I going to do implementation RSA cryptography. I want know . How many times encryption faster than decryption in RSA cryptography. I try compute elapsed time in java by use System.currentTimeMillis(); ...
1
vote
2answers
44 views
Benchmark analysis and display results of analysis AND benchmark?
Probably, I just missed a parameter... but, maybe someone can point me to it: How can run analysis in R benchmark it and still store the result back somewhere?. I know R functions can only return one ...
0
votes
1answer
25 views
What is a way I can measure a performance difference before and after implementing state_machine gem?
I'm almost finished implementing pluginaweek's state_machine gem and I'd like to try and measure something before I implement it so I can remeasure afterwards and see a difference. Right now there's a ...
0
votes
2answers
112 views
time() ok when debugging (JTAG), not-ok when running on-chip. How to time with an embedded proc?
I'm "playing" with the rm48 board (Texas Instrument RM48L952, ARM CORTEX-R4F), and i want to time a loop (for instance).
char message[20];
int temp=0;
time_t start, end, elapsed;
sciInit();
start ...
3
votes
1answer
62 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 {
...
4
votes
1answer
55 views
Benchmarking : Same process multiple times, only one warmup?
I am currently working on a Java application (Benchmark) that has for purpose to mesure some processes relative to a database.
My application is supposed to run has following :
I have several ...
2
votes
1answer
190 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
98 views
Error: Mysql database doesn't support transactions
Hi I have a InnoDB has a default database which supports transactions.
But When I run transactions script for Mysql sql-benchmarking I get below error:
Testing server 'MySQL 5.5.29 0ubuntu0.12.10.1' ...
0
votes
0answers
26 views
How to benchmark silverlight sockets?
My VPS server is 2 core x 2.8 GHz and 2 GB ram. I am running a c# socket server to act as voice chat server. It is working pretty fine so far with 6 clients. I wish to find the breaking point of the ...
1
vote
3answers
160 views
Fastest way to test for array inclusion in Ruby
I was wondering. What is the fastest way to test if an array contains another in Ruby? So I build this little benchmark script. Would love to hear your thoughts on comparison methods. Do you know some ...
0
votes
0answers
43 views
Links for database benchmark [closed]
was there any links for insert/update/select(joins,unions,etc) database benchmarks, for
mysql per version
postgres per version
so we could find out what are the performance improvement between ...
2
votes
2answers
127 views
How to measure Disk Speed in Java for Benchmarking
I would like to know how can you measure disk speed using Java API.
Random read,sequential read and Random and sequential write.
If someone thinks it's not a real question. Please explain so before ...
1
vote
2answers
172 views
Bench marking ARM NEON OpenMAx Numbers
I am currently working on bench marking the performance of Cortex-A8 processor by using various compilers(tried DS-5 and IAR) and various libraries (Openmax,NE10).
I am specifically working on to see ...
0
votes
0answers
148 views
Best way to compare performance of document store NoSQL databases
I am planing to build a benchmarking tool for NoSQL database performance comparison (raven, mongo and whatever has .NET API).
I did some research on database benchmarking standards and TCP-C seems to ...
-3
votes
2answers
475 views
GWT Java benchmarks, running the same code in JavaSE vs GWT+browsers [closed]
I have posted GWT (Google Web Toolkit) java benchmarks results here http://thegoodcodeinn.blogspot.it/2013/02/gwt-benchmarks-gwtjsvm-vs-javavm.html .
These benchmarks are about executing the same Java ...
1
vote
0answers
74 views
How do I compile a SPEC CPU 2006 benchmark with older glibc version?
Can somebody please help me out with making the SPEC benchmark choose glibc version 2.6.1 that is present on my system other than the default one gcc takes? primary glibc version is below
ldd ...
1
vote
1answer
278 views
Command-line benchmark tool
I often want to know how well a machine performs in various circumstances (e.g. on a certain VM)
So I'm looking for a benchmark software which satisfies
Runs on command line, i.e. without requiring ...
0
votes
0answers
116 views
Siege benchmarking
I need to benchmark apache website in linux server.
I have configured Siege and it works fine..
When I run siege on local host I get transaction rate ie 625.00 trans/sec
command is : siege -b -c ...
0
votes
3answers
339 views
Fast MD5 Library is not faster than Java 7 MD5?
So I was looking for a faster way to calculate MD5 checksums and ran across the Fast MD5 library - but when I benchmark it with Java 7 on my machine it comes out slower than the Java version.
Either ...
0
votes
0answers
18 views
How can we maintain the counters for each process of the apache without using getmyid function [duplicate]
Possible Duplicate:
Maintain a counter for each processes
Hello,
Please open this question again, pls ask me if any doubt in understanding question. Guide me an elegant solution to this.
...
0
votes
0answers
90 views
Benchmarks for Relational vs Non-Relatoinal databases [ SQL vs NoSQL] [closed]
I am planning to do an empirical study to evaluate SQL vs No-SQL databases, I have chosen Cassandra vs MySQL to do this. Are there any benchmarks available to compare these databases? Also can you ...
1
vote
0answers
65 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 ...
6
votes
1answer
325 views
Why is Redis SET performance better than GET?
According to the Redis benchmarks , Redis can perform 100'000 SET operations/s, and 80'000 GET operations/s. Redis being an in-memory DB, this seems surprising because typically one would expect that ...
0
votes
2answers
56 views
Is this a right approach to do a deep copy in java for benchmarking memory?
Since System.arraycopy() and clone() does only shallow copying, I wonder if this approach would work for doing a deep copy.
ByteArrayOutputStream bos = new ByteArrayOutputStream();
...
-5
votes
1answer
179 views
Which has better performance? A std::array or C array? [closed]
I have always thought that c arrays would be faster than std::array in C++ but I have done some benchmarking based off the accessing speeds and it appears that the std::array is faster. Why is that?
0
votes
0answers
123 views
How can I benchmark fps of my programs?
I have created Pong in Java, Python, C#, and Visual Basic. I want to benchmark the fps of each program, but I don't know how. I tried using fraps. It said that my Java Pong was running at 350 fps, ...
0
votes
2answers
63 views
Benchmarking HDD
I am trying to benchmark my hard disk and find the throughput in Mb/s and latency in milliseconds. This is my code.
public class OneMB implements Timer {
public static void main(String a[]) throws ...
0
votes
1answer
94 views
Why the performance discrepancy in try/catch vs. other forms of control flow in Java? [duplicate]
Possible Duplicate:
How slow are Java exceptions?
The following two programs take approximately the same amount of time to run:
public class Break {
public static void main(String[] ...
0
votes
0answers
275 views
Calculating Floating point Operations Per Second(FLOPS) and Integer Operations Per Second(IOPS)
I am trying to learn some basic benchmarking. I have a loop in my Java program like,
float a=6.5f;
int b=3;
for(long j=0; j<999999999; j++){
var = a*b+(a/b);
}//end of ...
1
vote
1answer
47 views
How can I automate the profiling of my page's JavaScript?
I have a web page with lots of JavaScript. I am supposed to optimize the performance of the page.
Ideally, I would like to set up an automated test which would hover around the page and click on a ...
2
votes
1answer
89 views
Any benchmarks for parser generators?
Has anyone seen a good comparison of parser generators' performance?
I'm particularly interested in:
1) recursive ascent parser generators for LALR(1) grammars;
2) parser generators which produce ...
-2
votes
3answers
45 views
what are the java tools for bench-marking and tuning [closed]
What are commonly used enterprise java tools -open source or otherwise for bench-marking and tuning java applications.
-2
votes
4answers
210 views
Select * from table vs Select col1,col2,col3 from table [duplicate]
Possible Duplicate:
select * vs select column
I was just having a discussion with one of my colleague on the SQL Server performance on specifying the query command in the stored procedure.
...
5
votes
3answers
2k views
Benchmarks comparing Intel Xeon Phi and Nvidia Tesla K20
To my surprise, I cannot find a comparison of these products using open source OpenCL benchmark suites, such as rodinia and SHOC. Such a comparison could be more interesting than comparisons of ...
-1
votes
3answers
65 views
Why those Javascript snippets perform the same?
obj = [1,2,3,4,5];
function iter(){
for (var key in obj){
key=key+key;
};
};
function test1() {
iter(obj);
};
function test2(){
(function iter(obj){
for (var key in ...
0
votes
0answers
57 views
How to perform benchmarking in scheme?
I am looking to test various Scheme constructs for comparison purposes and was wondering how to go about doing so. I know Ruby has a dedicate module for such benchmarking and a web search does not ...
1
vote
0answers
76 views
Apache Tika benchmarks
I'm currently developing a Java based web crawler that handles only html files.
What I would like to know is if there any benchmarks out there that show the performance
of the Apache Tika library on ...
0
votes
1answer
57 views
Javascript benchmarks for adding/removing vs. editing DOM? [duplicate]
Possible Duplicate:
What is better, appending new elements via DOM functions, or appending strings with HTML tags?
I need to change one thousand <div>'s -- just two attributes. Would ...
0
votes
1answer
88 views
how many inserts can a database server handle? [closed]
I'm trying to bench how many inserts a database server can handle with the following:
1x5520 cpu
8 x 15k rpm sas 300GB (RAID-10 w/ BBU)
32GB of RAM
I'm having a hard time trying to check the ...
1
vote
1answer
167 views
Peak Bandwidth for CUDA Surface Memory?
Surface memory is the write-only analogue to the texture cache in CUDA.
I've found NVIDIA GPU peak bandwidth numbers in academic literature for reading from global memory and shared memory. However, ...
3
votes
2answers
124 views
Peak memory usage of code block? [duplicate]
Is it possible to get the peak memory usage of a particular block of code in PHP? The memory_get_peak_usage() function seems to get the peak over the entire process execution up to the point of the ...

