The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
30 views

Strange results from tic / toc in MATLAB

I'm checking the running time of a function using tic/toc. I write the following in the command window (and execute it simultaneously): tic res = checkFunc('case2736sp',1:3000); toc Elapsed time is ...
1
vote
2answers
35 views

How can I time processing of chunk of code using MT template language?

Often when developing a Movable Type template, I come up with multiple ways to generate the same result, and am curious which is more efficient. Or, I simply want to know how long something took, such ...
1
vote
2answers
44 views

Timing Constructive and destructive reverses

I have a homework assignment where I must constructively and destructively reverse an array list and time it for varying lengths of the list. My Arraylist does update each time I run it but it doesn't ...
1
vote
2answers
176 views

Strategies for timing CUDA Kernels: Pros and Cons?

When timing CUDA kernels, the following doesn't work because the kernel doesn't block the CPU program execution while it executes: start timer kernel<<<g,b>>>(); end timer I've ...
1
vote
8answers
221 views

Timing the execution of statements - C++ [duplicate]

Possible Duplicate: How to Calculate Execution Time of a Code Snippet in C++ How i can get the time spent by a particular set of statements in some C++ code ? something like the time ...
2
votes
1answer
113 views

performance tuning a thrust application

I am running a small C++/thrust program (below) on my macbook pro w/ 9600M GT gpu and am interested in understanding where the time is spent in the function h, because the goal is to run this code as ...
0
votes
1answer
251 views

How to set a variable that represents a time in the future in absolute terms objective C

Motivation: I'm working on an app that makes several (client) phones read audio data from a (server) phone. The idea is that they must all play the song at the exact same time together. Premise: I ...
1
vote
1answer
470 views

Undefined symbols for architecture armv7 in xcode

I am stuck into errors when using codeTimestamp classes to checkout speed of my code. But these classes are working on any other project. I don't know what happen to this. Errors are: Undefined ...
0
votes
0answers
161 views

Measuring thread idle time with TBB

I have a threaded application with timing blocks around all the sections of code I believe are performance intensive. These sections are long enough that the timing code can remain active even in ...
0
votes
1answer
583 views

What does CPU Time for a Hadoop Job signify?

I am afraid I do not understand the timing results of a Map-Reduce job. For example, a job I am running gives me the following results from the job tracker. Finished in: 1mins, 39sec CPU time spent ...
0
votes
0answers
164 views

A weird Timinig issue with “clEnqueueNDRangeKernel” in OpenCL

I'm new to opencl and I'm experiencing a weird issue with it! I have a reduction kernel and I repeat it several times! The problem is that when I profile the execution of kernel the elapsed time ...
0
votes
2answers
118 views

iOS >> How to schedule timing based events that are not user action related

In my app I wish to have in a certain view a list of images that change on a UIImageView; something like an automated "presentation". I'm looking for a way to perform this "automation". The idea is ...
5
votes
1answer
109 views

OpenVMS timer precision, better than millisecond accuracy.

I'm wondering which function offers best precision/accuracy for timing on OpenVMS in C. We have an HP Integrity rx2660 server running OpenVMS V8.3-1H1. My search so far points to $GETTIM_PREC which ...
6
votes
3answers
1k views

Exit the loop after specific time in C#

I have a requirement in my project (C#, VS2010, .NET 4.0) that a particular for loop must finish within 200 milliseconds. If it doesn't then it has to terminate after this duration without executing ...
8
votes
1answer
515 views

Timing different sections in CUDA kernel

I have a CUDA kernel that calls out to a series of device functions. What is the best way to get the execution time for each of the device functions? What is the best way to get the execution time ...
0
votes
1answer
196 views

Timing of parallel actions using the Task Parallel Library in C#

I am running some experiments, timing them and comparing the times to find the best "algorithm". The question that came up was if running the tasks in parallel would make the relative runningtimes of ...
0
votes
3answers
113 views

Evaluate performance in Scheme

How can i evaluate the performance of a Scheme (R6RS) pieces of code? I need some procedure like:(time (oper args)) or (time oper args). I red the discussion here but it does not seems to work for ...
2
votes
2answers
233 views

html5 javascript math speed

I'm working on a html5 sound fader using the Soundmanager2 library, and I have a function that should be setting a variable to interpolate between 0-100 across 15 seconds, but instead it takes more ...
1
vote
1answer
222 views

How do I time my sml code?

Can anyone tell me how I can time my sml code? I have implemented several different versions of the same algorithm and would like to time them and perhaps even know the memoryusage?
1
vote
3answers
1k views

Timing CUDA operations

I need to time a CUDA kernel execution. The Best Practices Guide says that we can use either events or standard timing functions like clock() in Windows. My problem is that using these two functions ...
3
votes
3answers
153 views

What is an elegant way that a shell-script times **itself** (really)?

I have a bash script, call it Exp, which performs a computational experiment, and I want to have the result of time Exp within the script itself: First it needs to be always done (and relying on ...
2
votes
1answer
2k views

Apple Remote Notifications - Handle Token change

I need to use Notifications via APNS in my iPhone App. But as I read specification, I see the Token can be changed on APNS side and I have to update token on Provider side to receive notifications ...
2
votes
2answers
163 views

Python Profile Pitfalls

I am a beginner just starting to profile my code and was confused why the elapsed time given by cProfile was so off from the time given by using time.time(). # Python 2.7.2 import cProfile def ...
2
votes
1answer
372 views

Trouble tying a CCSprite deceleration to the ccTime dt

I've got a subclass of CCSprite that knows how to move itself based on two float properties, velX and velY. I call the subclass's - (void)update:(ccTime)dt method from the method of the same name in ...
9
votes
7answers
23k views

Execution time of C program

I have a C program that aims to be run in parallel on several processors. I need to be able to record the execution time (which could be anywhere from 1 second to several minutes). I have searched for ...
0
votes
2answers
434 views

Does the Intel RDTSC instruction (or equivalent) count clocks only in your task, or globally?

Related to earlier question: making mistake in inline assembler in gcc in the RDTSC or similar instruction, is the count only for your process, or is it a global count? If there is a context switch, ...
0
votes
3answers
685 views

Timing and Benchmarking

If I want to compare the speed of two algorithms, what's the best way? I am familiar with the mathematical way, and I know I don't full master it yet =/ I'm interested in knowing how to time two ...
0
votes
1answer
186 views

the time taken to read a file

I have a question. How long time does it takes to read a 2 mb file, which is fragmented in 2? If the rotational delay is 4300 rpm And the seektime is 10 ms the transfer time is 10 mb/s and the ...
0
votes
2answers
562 views

Timing accuracy in Flash

Does anyone know how accurate flash timing is and its ability to identify the client monitor's refresh rate? I need to be able to calculate time durations with up to 10 milliseconds accuracy of ...
1
vote
3answers
329 views

Problem with the timmings of a program that uses 1-8 threads on a server that has 4 Dual Core Cpu's?

I am runig a program on a server at my university that has 4 Dual-Core AMD Opteron(tm) Processor 2210 HE and the O.S. is Linux version 2.6.27.25-78.2.56.fc9.x86_64. My program implements Conways Game ...
0
votes
3answers
505 views

ASP.net VB Timers

I would like to be able to time a page load time in ASP.net (VBscript). Adding Trace="true" to the page directive is nice, but I need to actually time an event and store it in a variable. In ASP it ...
0
votes
3answers
112 views

Starting an http request, but dropping out if no response after a certain time

I'm trying to write a python script that does the following from within a minutely cronjob: tries to execute a url after 10 seconds if there is no response yet, abandon the response and immediately ...