Tagged Questions
The time-measurement tag has no wiki summary.
6
votes
9answers
15k views
Python speed testing - Time Difference - milliseconds
What is the proper way to compare 2 times in Python in order to speed test a section of code? I tried reading the API docs. I'm not sure I understand the timedelta thing.
So far I have this code:
...
4
votes
4answers
82 views
Measuring the execution time in multithreading environment
I have an application that uses Task (TPL) objects for asynchronous execution.
The main thread waits for a trigger (some TCP packet) and then executes several tasks. What I want to do is to measure ...
2
votes
3answers
3k views
How to measure program execution time in ARM Cortex-A8 processor?
I'm using an ARM Cortex-A8 based processor called as i.MX515. There is linux Ubuntu 9.10 distribution. I'm running a very big application written in C and I'm making use of gettimeofday(); functions ...
1
vote
4answers
159 views
How to measure the time that a piece of code takes to execute?
Suppose I want to measure the time that a certain piece of code takes. For that I would normally do something like this
clock_t startTime = clock();
//do stuff
//do stuff
//do stuff
//do stuff
float ...
1
vote
5answers
397 views
c# Lock with Thread.Sleep not working
I have the following code.
In windows server 2008, the program is correct and runs as expected. It outputs 10 different ids.
However, when I run it in windows server 2003, the program is not correct. ...
1
vote
3answers
220 views
logical time versus physical time in ubuntu linux
i am measuring physical time between two events like this:
#include <time.h>
#include <sys/time.h>
timeval wall_time0;
timeval wall_time1;
// start of period measurement
gettimeofday( ...
0
votes
1answer
86 views
How to calculate process memory without shared libs in *nix?
I've simple program e.g. in C++
#include <iostream>
int main()
{
int a = 1000;
std::cout << a << std::endl;
return 0;
}
and i'm trying to calculate ...
0
votes
2answers
177 views
What is the most efficient, “cheap” and accurate way to measure time in Java in resolution of microseconds?
I'm using ASM java byte code instrumentation and my goal is to measure the time in each access to a variable.
** measure time and log **
** variable access **
I'm looking for a resolution ...
0
votes
1answer
101 views
Delay added to sound
I'm going to write an application in Silverlight that consists of 2 threads, one that plays sound and another that records sound. And whatever is recorded will be what was played plus some ambient ...
-2
votes
2answers
454 views
What is average case analysis?
Question 1: Why is average case analysis more difficult to carry out than the worst case analysis? I've got to think of at least 4 points. I thought of 1. Am I right?
Possible Answer: An algorithm ...