Profiling something under controlled circumstances to find its performance.

learn more… | top users | synonyms (2)

3
votes
1answer
72 views

scala specialization - using object instead of class causes slowdown?

I've done some benchmarks and have results that I don't know how to explain. The situation in a nutshell: I have 2 classes doing the same (computation heavy) thing with generic arrays, both of ...
-1
votes
0answers
29 views

Is there a list of JavaScript operations by performance? [closed]

It would be really enlightening to see a list of benchmarks comparing how expensive are certain operations such as function calling, creating an array, creating an object, summing 2 numbers and so on. ...
2
votes
1answer
104 views

Option type benchmark using F#

I need to use Some/None options in heavy numerical simulations. The following micro benchmark gives me Fast = 485 and Slow = 5890. I do not like nulls and even if I liked them I cannot use null ...
0
votes
2answers
34 views

PC performance and stability issue in multithreaded simple benchmark. How to make each thread run on separate core? [closed]

Look at my code in this post: How to write simple speed test app with CUDA? This time I'm not about the CUDA, but the code of application that is in the post. The issue I want to face is that the ...
1
vote
0answers
54 views

How to write simple speed test app with CUDA?

Below is the code of a simple app that tests speed of my 4 core CPU with HT. I want to write as much similar app as possible that makes speed test of my GPU with CUDA functionality by using CUDA. ...
0
votes
0answers
8 views

Java compilation error for TPC-W Benchmark

I am following the guide given here to install and run the tcp-w benchmark. However, I am facing some java compilation issues. At the very last step, when I do javac rbe/* I get the error: ...
2
votes
2answers
53 views

Capturing (externally) the memory consumption of a given Callback

The Problem Lets say I have this function: function hog($i = 1) // uses $i * 0.5 MiB, returns $i * 0.25 MiB { $s = str_repeat('a', $i * 1024 * 512); return substr($s, $i * 1024 * 256); } I ...
0
votes
0answers
5 views

Error while checking database.properties: Installing RUBiS Benchmark

I am currently trying to install RUBiS PHP version. $ make client #no problem $ make emultor /usr/lib/jvm/java-1.7.0//bin/java -classpath ./Client edu.rice.rubis.client.ClientEmulator RUBiS client ...
2
votes
2answers
65 views

Android Fibonacci Benchmark / Deep recursion

I'm running a Fibonacci benchmark on my Android phone and I'm getting some strange results. As I don't really care if the UI-thread is locked or not, I'm running the code below inside the UI-thread in ...
-3
votes
0answers
13 views

pub/sub benchmarking tool guidance [closed]

I needed some direction on how to generate a benchmarking tool for pub/sub engines. How would I go on generating the workload? Thanks. P.S: I am new to the concept of pub/sub so any good reference ...
6
votes
3answers
221 views

Vector vs Array Performance

In another thread I started a discussion about Vectors and Arrays, in which I was largely playing devil's advocate, to push buttons. However, during the course of this, I stumbled onto a test case ...
1
vote
1answer
19 views

Changing the file descriptor size in httperf

I'm doing a series of benchmarks and found the httpperf tool. But the version in my ubuntu 12.04 has a too small file descriptor size. Because it warns me with this message: httperf: warning: ...
-1
votes
2answers
69 views

MySQLi query vs PHP Array, which is faster?

I'm developing an algorithm for intense calculations on multiple huge arrays. Right now I have used PHP arrays to do the job but, it seems slower than what I needed it to be. I was thinking on using ...
-2
votes
0answers
97 views

Javascript or Go? [closed]

According to this: http://benchmarksgame.alioth.debian.org/u32/benchmark.php?test=all&lang=v8&lang2=go&data=u32 Javascript is faster than Go on 8 out of 10 of the benchmarks. Does this ...
0
votes
1answer
33 views

Session data Vs mysql query for small info

Cant find any sort of benchmarking, or tests, around this particular thing, so i'll just ask: Needing a small amount of info (let's say that it's: "150", for example) that is stored or in the ...
1
vote
1answer
37 views

performance analysis of multiple platforms

I have written a Program that runs in two modes,Sequential and Multithreaded,with the purpose of running it on multiple processor architectures and then analyzing the processors' performance and ...
0
votes
0answers
30 views

Three.js benchmark, how to?

I'm about to perform some benchmark experiments for WebGL (Three.js). I'm thinking about loading time (from link click to loaded scene), loading time for files, and frame rate. With many tests I must ...
1
vote
2answers
29 views

Can 32-bit SPARC V8 application run on 64-bit SPARC V9?

I have few benchmark application complied for SPARC V8 32-bit architecture. I used them for performance evaluation of SPARC 32-bit processor. However, few application fall short of in performance. I ...
0
votes
2answers
25 views

How to Benchmark Javascript DOM Manipulation

I have two javascript functions that do same thing: create a menu based on a json object. One function appends all the <ul> and <li> elements to a variable, and then writes the HTML to ...
1
vote
2answers
70 views

Google Caliper: Trouble getting started (Java Benchmarking)

I am trying to use Google Caliper to benchmark some simple code. I am using the examples from their websites. Here's what I've done so far: Downloaded the Caliper JAR and added it to my Netbeans ...
0
votes
0answers
17 views

Apache Benchmark timeout and 14648 errors

When running the apache benchmarking below: ab -n 1500 -c 150 http://yourdomain.com/ I am getting the following error, and the benchmarking is stopped with only a limited number of requests ...
1
vote
2answers
24 views

Image resizing performance comparison

I'm saving two photos from an upload. One is a larger photo and the other is a thumb. I was wondering if i used less resources to create the thumb copy of a photo from the reduced larger photo say ...
2
votes
1answer
26 views

NAS NPB benchmark gives incorrect “Time taken in seconds”

I am running the NAS NPB 3.0 Java benchmarks. Once run, the benchmark provides different information about the conducted experiment. One of the information displayed is Time in seconds But the time ...
1
vote
0answers
38 views

Unable to load caliper results online

I followed few suggestions available online but none has helped. Got caliper and built it from https://github.com/peterlynch/caliper export ...
0
votes
0answers
32 views

Unable to install Google Caliper

I installed google caliper by downloading its git code, did a mvn clean install of it. This produced caliper-1.0-beta-SNAPSHOT.jar. I included caliper as a maven dependency my project and decided to ...
-1
votes
1answer
31 views

What is the best buffer management drop policy?

I am working on project that contains a fixed-size buffer of type (FIFO): First input First Output, where clients send their requests to that buffer, and the system handles them.When the buffer is ...
0
votes
0answers
13 views

NAS parallel benchmark in Java input size too big

I am running NAS NPB3.0 JAVA implementation. The program I am trying to run is BT.java with the input 200 number of time steps 0.0008d0 dt for class A = 0.0008d0. class B = 0.0003d0 class C = ...
0
votes
1answer
34 views

Convert List<Integer> to int[] - Pure Java vs ArrayUtils benchmark issue

I recently had to optimise an api call in a high performance system that did some List<Integer> to int[] conversion. My initial finding was that for my expected average amount of elements pure ...
1
vote
1answer
120 views

How to improve Redis server's CPU usage?

My goal is to make about 80% CPU usage on Redis server, this can benifit our backend server designing. While using Redis itself's benchmark, it's very easy to reach about 100% CPU usage: $ ...
1
vote
0answers
30 views

Benchmarking with existing data

I'm new to Rails but not new to software development and so some of these may be elementary questions mixed in with head-scratching ones. We are trying to get some benchmarking in our app and are ...
4
votes
1answer
54 views

measuring time across processes

I need to measure the communitcation latency between two processes on the same machine.The best way I have come up with is serializing DateTime.UtcNow (DateTime.Now seems to be so utterly slow that it ...
4
votes
1answer
97 views

How to test only one benchmark function?

In my Go package there are several benchmark files like map1_benchmark_test.go and map2_benchmark_test.go. In every *_benchmark_test.go file, there is more than one benchmark function like func ...
0
votes
0answers
19 views

Strange Java NBody loop performance with/without arrays

I'm working on benchmarking some programs in some different languages, and I have gotten some very strange results while benchmarking my Java implementations of NBody force simulation (O(n^2) ...
5
votes
1answer
175 views

Why is my program so slow?

Someone decided to do a quick test to see how native client compared to javascript in terms of speed. They did that by running 10 000 000 sqrt calculations and measuring the time it took. The result ...
-1
votes
0answers
33 views

Why does lmdd report unusually high bandwidth numbers when writing small file sizes? [closed]

I'm currently using some of the lmbench suite to measure my disk performance. I've been plotted a graph of the bandwidth against the file size I'm writing to. Graph: http://i.imgur.com/AILcA8v.png ...
0
votes
1answer
35 views

Measure how many times iOS can draw per frame

I am trying to benchmark how many times iOS natively can draw between frame refresh compared to HTML5/JavaScript. Using this JavaScript I get a number for how may times the browser can draw during ...
0
votes
1answer
33 views

Benchmark A Page Via Windows Command Line and Powershell

I would like to benchmark the response time of a site as well as simulate a load via the windows command line (WIN+R) Is this possible? What is the windows equivalent of this linux command: $ ab -n ...
0
votes
1answer
42 views

java heap size grows by portions up to some limit

I am writing a simple server application in Java, and I'm making some benchmarks using Apache benchmark now. Right after the start the resident memory used by server is about 40M. I make the series ...
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 ...
0
votes
0answers
45 views

Is virtual memory a good indicator for process memory utilisation?

QA team sent us a memory consumption reprot for our shoftware showing that virtual memory used by the process piked to more than than 600 MB under heavy load. so I have ran the same tests and found ...
0
votes
0answers
27 views

Getting current transferred MPI network communication volume

I have a question related to MPI. In order to keep track of the communication volume used by my implementation, I would like to get the currently-transferred data amount since the mpi-process' start ...
0
votes
1answer
11 views

benchRun query with projection

I want to benchmark some queries using benchRun. But I don't see an option for projection. Say I wanted to do the following query find({_id:1},{children:0}) how do I construct the operation document ...
0
votes
0answers
58 views

CouchDB Benchmarks [closed]

I'm an enthusiast user of couchdb and now I'm trying to set up system made up a federated system for the exchange of scientific data by means of a couchdb cluster. I started studying a bit ...
0
votes
0answers
25 views

SQL: Non MVCC COUNT vs. MVCC triggers [closed]

Hi I was wandering what is faster in read and read/write. Count on MyISAM Index-only scan on PostgreSQL INSERT und UPDATE trigger on InnoDB or PostgreSQL incrementing a counter Any opinions about ...
0
votes
3answers
129 views

Using MySQL COUNT(1), COUNT(2) …etc using JOIN

I have 4 tables: Table talks table talks_fan table talks_follow table talks_comments What I'm trying to achieve is counting all comments, fans, followers for every single talk. I came up with this ...
1
vote
1answer
181 views

Testing write/read speed on NTFS, FAT, EXT4

I have to write a program in C (or C++) in Linux that will tests write and read speed on different file systems. I have to be sure that all data are written to the disk (not in cache). So my first ...
2
votes
3answers
64 views

Can I reduce the MySQL speed to highlight which query is causing the slowness?

I'm working on an API written in NodeJS and connecting to a MySQL 5.5 database. On our live system, we have one query that's running at over 7 seconds. We've traced this down to a couple of tables ...
1
vote
1answer
43 views

simulate user load on hardware router

I am trying to simulate user load on a hardware router. I am specifically trying to emulate the average load of a home router. What i need to to do is load it up over a week long period at different ...
0
votes
1answer
27 views

Apachebench making more requests than I ask for

I am trying to use apachebench to make a number of requests to test my server. However it often times makes a ton more requests than I ask for. I am using this to test a node.js server which uses ...
0
votes
0answers
21 views

Benchmarking with Mobile Data Connection

I have a benchmarking situation that requires some advise. This is basically a scenario. I typically use Jmeter to benchmark web page loads. However in this case, I intend to benchmark an URL that ...

1 2 3 4 5 23