Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
16answers
37k views

How do I time a method's execution in Java?

It seems like it should be simpler than it is to get a method's execution time. Is there a Timer utility class for things like timing how long a task takes, etc? Most of the searches on Google ...
15
votes
11answers
6k views

How can I find the execution time of a section of my program in C?

I'm trying to find a way to get the execution time of a section of code in C. I've already tried both time() and clock() from time.h, but it seems that time() returns seconds and clock() seems to give ...
12
votes
5answers
5k views

How to program a real-time accurate audio sequencer on the iphone?

I want to program a simple audio sequencer on the iphone but I can't get accurate timing. The last days I tried all possible audio techniques on the iphone, starting from AudioServicesPlaySystemSound ...
11
votes
5answers
14k views

Hide div after a few seconds

I was wondering, how in jquery am I able to hide a div after a few seconds? Like Gmail's messages for example. I've tried my best but am unable to get it working. Thanks!
10
votes
2answers
154 views

Executing code at regularly timed intervals in Clojure

What's the best way to make code run at regular intervals in Clojure ? I'm currently using java.util.concurrent.ScheduledExecutorService, but that's Java - is there a Clojure way of scheduling code to ...
9
votes
4answers
100 views

Output timing problem

the following code: String str1="asdfavaxzvzxvc"; String str2="werwerzsfaasdf"; Object c=str1; Object d=str2; System.out.println(c); long time1=System.currentTimeMillis(); for(int ...
9
votes
10answers
1k views

Java performance timing library

I frequent wrap code in a System.nanoTime() pair in order to timing it. Something like: long start = System.nanoTime(); methodToBeTimed(); long elapsedTime = System.nanoTime() - start; There is ...
9
votes
2answers
2k views

jQuery scope or race condition in AJAX/getJSON

I have a piece of jQuery code which invokes several getJSON() calls in quick succession: var table = $("table#output"); for (var i in items) { var thisItem = items[i]; $.getJSON("myService", ...
9
votes
4answers
2k views

Are Sql Triggers synchronous or asynchronous?

I have a table that has an insert trigger on it. If I insert in 6000 records into this table in one insert statement from a stored procedure, will the stored procedure return before the insert trigger ...
8
votes
3answers
479 views

Is setTimeout with no delay the same as executing the function instantly?

I am looking at some existing code in a web application. I saw this: window.setTimeout(function () { ... }) Is this the same as just executing the function content right away?
8
votes
4answers
3k views

Best timing method in C?

What is the best way to time a code section with high resolution and portability? /* Time from here */ ProcessIntenseFunction(); /* to here. */ printf("Time taken %d seconds %d milliseconds", sec, ...
7
votes
2answers
93 views

Strange 'Sleep' behaviour between systems

I have a program that uses Sleep Win32 API call to make a thread wait for a specific amount of time. In short, it simulates a camera by sending images prefetched in memory. I'm using Sleep to simulate ...
7
votes
2answers
212 views

Java timing accuracy on Windows XP vs. Windows 7

I have a bizarre problem - I'm hoping someone can explain to me what is happening and a possible workaround. I am implementing a Z80 core in Java, and attempting to slow it down, by using a ...
7
votes
5answers
334 views

Linux, need accurate program timing. Scheduler wake up program

I have a thread running on a Linux system which i need to execute in as accurate intervals as possbile. E.g. execute once every ms. Currently this is done by creating a timer with ...
7
votes
4answers
438 views

differences between “d = dict()” and “d = {}”

Why would one use one over the other: d = dict() ~0.208 usec d = {} ~0.06 usec
7
votes
2answers
936 views

Precision timing in .NET

I've just seen this question, where one of the answers indicates that System.Diagnostics.Stopwatch should only be used for diagnosing performance and not in production code. In that case, what would ...
7
votes
8answers
7k views

Microsecond accurate (or better) process timing in Linux

I need a very accurate way to time parts of my program. I could use the regular high-resolution clock for this, but that will return wallclock time, which is not what I need: I needthe time spent ...
7
votes
9answers
961 views

Testing your code for speed?

I'm a total newbie, but I was writing a little program that worked on strings in C# and I noticed that if I did a few things differently, the code executed significantly faster. So it had me ...
6
votes
2answers
203 views

Mathematica execution-time bug: symbol names

There is a strange bug that has been in Mathematica for years, at least since version 5.1, and persisting through version 7. Module[{f, L}, L = f[]; Do[L = f[L, i], {i, 10^4}]] // Timing ...
6
votes
4answers
773 views

C# sub millisecond timing

Is there anywhere in C# to perform timing operations with sub millisecond accuracy? I'm putting timing code in my software and everything is being returned as 0ms. I would like to know if there is a ...
6
votes
4answers
2k views

timeit versus timing decorator

I'm trying to time some code. First I used a timing decorator: #!/usr/bin/env python import time from itertools import izip from random import shuffle def timing_val(func): def ...
6
votes
7answers
2k views

What is the best way to measure Client Side page load times?

I'm looking to monitor the end user experience of our website and link that with timing information already logged on the server side. My assumption is that this will require javascript to to capture ...
5
votes
5answers
322 views

Can code running in a background thread be faster than in the main VCL thread in Delphi?

If anybody has had a lot of experience timing code running on the main VCL thread vs a background thread, I'd like to get an opinion. I have some code that does some heavy string processing running ...
5
votes
5answers
105 views

Peculiar result relating to struct size and performance

I was curious on the overhead of a large structure vs. a small structure in using operators + and * for math. So I made two struct, one Small with 1 double field (8 bytes) and one Big with 10 doubles ...
5
votes
4answers
1k views

What happens when QueryPerformanceCounter is called?

I'm looking into the exact implications of using QueryPerformanceCounter in our system and am trying to understand it's impact on the application. I can see from running it on my 4-core single cpu ...
4
votes
3answers
81 views

How can executing more instructions speed up exection

When I run the following function, I get somewhat unexpected results. On my machine, the code below consistently takes about 6 seconds to run. However, if I uncomment the ";dec [variable + 24]" line, ...
4
votes
2answers
239 views

Precisely measure execution time of code in thread (C#)

I'm trying to measure the execution time of some bits of code as accurately as possible on a number of threads, taking context switching and thread downtime into account. The application is ...
4
votes
2answers
172 views

Python - Threading, Timing, or function use?

I am having an issue formulating an idea on how to work this problem. Please help. My project consists of an N x N grid with a series of blocks that are supposed to move in a random direction and ...
4
votes
1answer
110 views

Timing in Scheme

I'm currently going through the Project Euler's problems and I'm solving them both in C# and Scheme (the Racket implementation). I know C# but I'm learning Scheme as I go along. Now, on top of having ...
4
votes
3answers
316 views

ERLANG - Timing Applications

I am interested in benchmarking different parts of my program for speed. I having tried using info(statistics) and erlang:now() I need to know down to the microsecond what the avg speed is. I don't ...
4
votes
3answers
2k views

MATLAB scatter3, plot3 speed discrepencies

This is about how MATLAB can take very different times to plot the same thing — and why. I generate 10000 points in 3D space: X = rand(10000, 1); Y = rand(10000, 1); Z = rand(10000, 1); I then ...
4
votes
4answers
1k views

How to measure CPU cycles per instruction in a C program

I have a C program where I am starting to use some SIMD optimizations for the SPE (Cell processor), etc. I would like somehow to "time" how many cycles do they need. One idea is to switch on/off and ...
4
votes
1answer
104 views

slow down gdb to reproduce bug

I have a timing bug in my application which only occurs when I use valgrind, because valgrind slows down the process so much. (it's actually a boost::weak_ptr-exception that I cannot localize) Now I ...
4
votes
4answers
292 views

sysopen permission denied

I'm trying to fix an intermittent bug in git-svn. The problem is happening in Windows XP only, with both Cygwin git (perl v5.10.1) and msysGit (perl v5.8.8). With any operation that involves a fetch, ...
4
votes
1answer
71 views

Why does my timing code always return 0?

i was optimizing my html5 game engine for performance issues and i want to know how much time a render process needs.So i got a bunch of render functions.Each of them render seperated parts of the ...
4
votes
4answers
128 views

What is an appropriate page processing time for a web application?

I'm working on a web application, and it's getting to the point where I've got most of the necessary features and I'm starting to worry about execution speed. So I did some hunting around for ...
4
votes
4answers
481 views

Why do more Pentium assembly instructions take less time?

Below is a clip from a listing of two Pentium assembly sequences. We have an outside loop that is trying to time our sequences and is doing a call-through-table to get to these routines. Therefore, ...
4
votes
4answers
1k views

Java equivelant of setInterval in javascript

Basically I want a function to be called every say, 10 milliseconds. How can I achieve that in Java?
4
votes
6answers
1k views

getting elapsed time since process start

I need a way to get the elapsed time (wall-clock time) since a program started, in a way that is resilient to users meddling with the system clock. On windows, the non standard clock() implementation ...
4
votes
10answers
12k views

C++ timing, milliseconds since last whole second

I'm working on a C++ application that needs detailed timing information, down to the millisecond level. We intend to gather the time to second accuracy using the standard time() function in . We ...
3
votes
1answer
78 views

Why is a finally block used when timing a method in Java?

http://stackoverflow.com/a/180191 Here a method is timed by calling System.nanoTime() in a normal block, while the end time is called for in a finally block? Was this only done to report a correct ...
3
votes
3answers
92 views

the overhead of a opencl or CUDA call?

I'm writing a function that does a lot of BLAS gemv operations. I would like to be able to do this on the GPU and I've tried with cuBlas. My problem is that my matrix's and vectors are rather small ...
3
votes
2answers
34 views

How to control finely the glut inner loop

I would like to control the main loop in a glut program, I would like to better understand what is the order of execution of the following callbacks: glutDisplayFunc(drawGLScene); glutIdleFunc(idle); ...
3
votes
2answers
78 views

Timing Confusion In Java

For a project I worked on, I was tasked with timing the search times for two different search algorithms: binary search and sequential search. For each algorithm, I was supposed to record the time ...
3
votes
3answers
123 views

How to realise long-term high-resolution timing on windows using C++?

I need to get exact timestamps every couple of ms (20, 30, 40ms) over a long period of time (a couple of hours). The function in which the timestamp is taken is invoked as a callback by a 3rd-party ...
3
votes
1answer
106 views

How to apply a Python timings decorator to a method within a class

I am trying to apply the timing decorator described here to a method within a class instead of a standalone method. How should this be done? I am getting this error: TypeError: unbound method ...
3
votes
3answers
170 views

How can I calculate the execution time of some method theoretically?

Suppose I have, "Heap Sort" method which its complexity time is O(nlogn). When I measure the execution time of this method upon 1000000 inputs I got 0.375770669 seconds. How can I calculate the ...
3
votes
1answer
191 views

Android Simple Timing Question

I need to implement a millisecond-accurate timer for a small game. Which method would be the most appropriate for this? My current approach is to use System.currentTimeMillis(). It seems to work well ...
3
votes
4answers
725 views

QueryPerformanceCounter and overflows

I'm using QueryPerformanceCounter to do some timing in my application. However, after running it for a few days the application seems to stop functioning properly. If I simply restart the application ...
3
votes
3answers
438 views

What makes a robust RS232 serial communication scheme on an embedded device?

So I'm starting to have a reoccurring problem with writing serial communication schemes, and it seems to be due to timing. My embedded platform is the Rabbit Semiconductor BL2600, and in this case, ...

1 2 3 4 5 6