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 ...
6
votes
2answers
174 views

Haskell measuring function performance

In Haskell, how can i 'simply' measure a functions performance. For example, how long it takes to run, or how much memory it takes?. I am aware of profiling, however, is there a more simple way that ...
5
votes
2answers
163 views

Is it REALLY true that Python code runs faster in a function?

I saw a comment that lead me to the question Why does Python code run faster in a function?. I got to thinking, and figured I would try it myself using the timeit library, however I got very ...
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 ...
1
vote
0answers
55 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 ...
1
vote
3answers
98 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 ...
2
votes
1answer
115 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 ...
0
votes
0answers
113 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
181 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 ...
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? ...
348
votes
2answers
23k views

Why does Python code run faster in a function?

def main(): for i in xrange(10**8): pass main() This piece of code in Python runs in real 0m1.841s user 0m1.828s sys 0m0.012s However, if the for loop isn't placed within ...
2
votes
1answer
113 views

avoid expensive setup in timeit.repeat() benchmark

I'm trying to measure the execution time of a small Python code snippet of mine and I'm wondering what's the best way to do so. Ideally, I would like to run some sort of setup (which takes a loooong ...
5
votes
1answer
287 views

Why are __getitem__(key) and get(key) significantly slower than [key]?

It was my understanding that brackets were nothing more than a wrapper for __getitem__. Here is how I benchmarked this: First, I generated a semi-large dictionary. items = {} for i in ...
4
votes
1answer
121 views

Benchmarking/Profiling JavaScript

i am currently investigating possibilities for profiling/benchmarking javascript code in terms of runtime behavior. I know that there are some decent tools if you run the code in your browser ...
8
votes
3answers
2k views

Is the UNIX `time` command accurate enough for benchmarks?

Let's say I wanted to benchmark two programs: foo.py and bar.py. Are a couple thousand runs and the respective averages of time python foo.py and time python bar.py adequate enough for profiling and ...
1
vote
1answer
147 views

apache bench like for mysql

Does it exist a tool like ab (apache bench) for mysql? ex: I create a table, I fill as i want (some MO of rows) then: shell> tool -conccurency=20 -requests=2000 -query="SELECT * FROM table WHERE ...
1
vote
1answer
127 views

PHP Application performance

First I want to say that I'm using Drupal as CMS and I know that there is separate Drupal stackexchange site. But my problem is not Drupal specific, it's not in User or Advanced User level. It's PHP ...
3
votes
3answers
259 views

Simple operation to waste time?

I'm looking for a simple operation / routine which can "waste" time if repeated continuously. I'm researching how gprof profiles applications, so this "time waster" needs to waste time in the user ...
4
votes
1answer
164 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; } ...
0
votes
0answers
223 views

Speeding up performance monitoring code

I'm trying to profile my app's performance on an xbox (which is drasticaly different to the PC, seemingly unrelated to GC issues), as such i can't use NProf, SlimTune etc. I've created a couple of ...
3
votes
1answer
360 views

.NET micro-benchmarking API

I'm looking for a library for doing micro-benchmarking of unit tests to monitor how code changes impact performance over time. That is, I would like the library to output results to e.g. XML to ...
1
vote
1answer
81 views

Is there a current tool for creating a profiling report like this?

The ruby-prof and pprof.rb libraries is useful but in my mind seem to give alot of unnecessary information (by not letting me filter out all of the rails code). What would be great would be to run a ...
1
vote
1answer
209 views

Simple Codeigniter Site hanging (8min+) - where to profile/benchmark?

My CI site will sometimes just hang - server seems to take forever to answer my request, i.e. when just loading the homepage, and other pages too. It's quite random and only does it sometimes. I ...
0
votes
2answers
449 views

Benchmark application for Qt?

I would like to do some profiling and benchmarking of Qt. The purpose of the profiling and benchmarking is to get the better understanding of Qt, and see what functions take most of the time, where ...
1
vote
1answer
244 views

undefined method 'threads' using ruby-prof

I'm trying to use ruby-prof to profile some code. It seems to work up until the line indicated below: require 'rubygems' require 'ruby-prof' result = RubyProf.start do puts "do stuff..." end ...
6
votes
6answers
3k views

Alternatives to ApacheBench for profiling my code speed

I've done some experiments using Apache Bench to profile my code response times, and it doesn't quite generate the right kind of data for me. I hope the good people here have ideas. Specifically, I ...
1
vote
5answers
3k views

Java Regex performance

I'm trying to parse links with Regex with Java. But, i think its getting to slow. For example. To extract all links from: http://news.google.com.ar/nwshp?hl=es&tab=wn is spending 34642 ...
7
votes
2answers
534 views

How do I benchmark and profile IO bound Perl web application under heavy load?

How do I benchmark (compare two different implementations) and profile (find performance bottlenecks in an implementation) behavior of a web application (in Perl) under heavy load? This webapp is ...
4
votes
3answers
418 views

Java profiling: java.lang.Object.hashCode takes half of the CPU time but never explictly called

I have been benchmarked my multihreaded program using -agentlib:hprof=cpu=samples and was surprised to find the following line in the results: rank self accum count trace method 1 52.88% ...
4
votes
2answers
330 views

Determining cache misses for various filesystems

I've got a project for school where I have to find out how many cache misses a filesystem will have under heavy and light loads and on a multiple processor machine. After discussing this with my ...
3
votes
2answers
474 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.
1
vote
5answers
612 views

Tools to profile function execution times of a .NET program

What tools are available to profile a .NET program by measuring function execution times and generating graphs to visualize the time spent at various points in the call graph?
5
votes
2answers
9k views

How to measure network performance (how to benchmark network protocol)

First, a bit of a background. There are many various comparisons of distributed version control systems (DVCS) which compare size of repository, or benchmark speed of operations. I haven't found any ...
2
votes
5answers
620 views

Efficiency, Benchmarking, Speed-testing, Performance

I am trying to write a script whose efficiency I am trying to measure. I have a couple of questions:- For small applications, is this kind of profiling required? Or am I getting paranoid? (assuming ...