2
votes
2answers
51 views

testing the performance of a bunch of instructions in PHP

I've finished to code a page that retrieves data from my database and then makes some manipulation on it. But wow, just when I thought I was coding slowly to prevent performance lack and to get the ...
0
votes
0answers
38 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 ...
0
votes
0answers
123 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
2answers
118 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
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 ...
3
votes
3answers
410 views

Benchmarking programs in Rust

How is it possible to benchmark programs in Rust? For example how would I get execution time of program in seconds? Thanks.
2
votes
4answers
2k views

Get local time in nanoseconds [duplicate]

Possible Duplicate: C++ Timer function to provide time in nano seconds I need to measure the duration of a function execution in nanoseconds resolution. Is it possible? Our ordinary ...
1
vote
1answer
310 views

Calculating Processing and Request time for multiple Asynchronous Requests

For data visualization request in my application, I am sending multiple AJAX requests to a servlet in order to get the data in chunks and on callback of each request, the data received is rendered ...
0
votes
1answer
383 views

Measure total site loading time in PHP

I'm looking for a way to measure each step of a (HTTP) web request in php similar to Firebug's timeline or http://tools.pingdom.com. I can use a timer to measure the web requests, but I am looking ...
5
votes
1answer
2k views

Difference between as.POSIXct/as.POSIXlt and strptime for converting character vectors to POSIXct/POSIXlt

I have followed a number of questions here that asks about how to convert character vectors to datetime classes. I often see 2 methods, the strptime and the as.POSIXct/as.POSIXlt methods. I looked at ...
0
votes
1answer
246 views

MPI communication delay - does the size of the message matter?

I've been working with time measuring (benchmarking) in parallel algorithms, more specific, matrix multiplication. I'm using the following algorithm: if(taskid==MASTER) { averow = NRA/numworkers; ...
3
votes
4answers
531 views

How do you time a function in Go and return its runtime in milliseconds?

How do you time a function in Go and return its runtime in milliseconds?
0
votes
1answer
4k views

gettimeofday() C++ Inconsistency

I'm doing a project that involves comparing programming languages. I'm computing the Ackermann function. I tested Java, Python, and Ruby, and got responses between 10 and 30 milliseconds. But C++ ...
2
votes
1answer
768 views

Using time command for benchmarking

I'm trying to use the time command as a simple solution for benchmarking some scripts that do a lot of text processing and makes a number of network calls. To evaluate if its a good fit, I tried ...
0
votes
2answers
262 views

benchmarking python script reveals mysterious time delays

i have two modules: moduleParent and moduleChild i'm doing something like this in moduleParent: import moduleChild #a bunch of code start = time.time() moduleChild.childFunction() finish = ...
3
votes
2answers
787 views

Measure user time or system time in Ruby without Benchmark or time

Since I'm doing some time measurements at the moment, I wondered if it is possible to measure the user time or system time without using the Benchmark class or the command line utility time. Using ...
1
vote
2answers
311 views

PHP get exact time a particular line is executed

I'm trying to perform a simple benchmark on a script I have. First I tried to just add something like: echo 'After Checklist: '. date('h:i:s:u A') ."<br />"; but it just prints out the same ...
3
votes
3answers
186 views

Benchmarking an application in a fully loaded machine

I need to "time" or benchmark a number crunching application written in C/C++. The problem is that the machine where I run the program is usually full of people doing similar things, so the CPUs are ...
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 ...
1
vote
1answer
265 views

Puzzling output of the time command

I am trying to benchmark the run time of one of my scripts. I get following output #time ./foo.py real 0m37.883s user 1m0.648s sys 0m4.680s # Internally, foo spawns multiple other ...
-3
votes
3answers
282 views

Which language is easiest to learn? [closed]

This is a subjective question just to get a general impression. As Java is the most popular programming language right now it is used as a benchmark. Lets say I have to spend T amount of time/effort ...
1
vote
3answers
652 views

For simple C cmd programs: how to add “program executed in 12,345 seconds”?

I'm a windows user, and I'm learning C. I use Codeblocks and visual c++ 2008 express at home to write simple C command line programs (I'm a beginner) and I find really useful when codeblocks adds a ...
5
votes
1answer
2k views

Why is sys+user > real in “time command”?

I have a program that uses pthread library to do the matrix multiplication of 500x500 matrix. Each thread calculates 50 rows of the matrix. When I time its execution: shadyabhi@shadyabhi-desktop:~$ ...
25
votes
3answers
4k views

Writing a time function in Haskell

I’m new to Haskell and I’d like to be able to time the runtime of a given function call or snippet of code. In Clojure I can use ‘time’: user=> (time (apply * (range 2 10000))) "Elapsed time: ...
281
votes
3answers
73k views

What do 'real', 'user' and 'sys' mean in the output of time(1)?

$ time foo real 0m0.003s user 0m0.000s sys 0m0.004s $ What do 'real', 'user' and 'sys' mean in the output of time? Which one is meaningful when benchmarking my app?
11
votes
4answers
6k views

Looking for benchmarking code snippet (c++)

Some loading routines in my program takes to long to complete. I want a quick small snippet for checking how long a function took to execute. By small I mean "preferably without 3rd party libraries". ...