vote up 1 vote down star
1

Hello everyone,

Is there a quick and easy way of timing a section of a program (or the entire thing) without having to setup a timer class, functions, and variables inside my program itself?

I'm specifically referring to Visual C++ (Professional 2008).

Thanks,

-Faken

Edit: none of these answers do what i ask for, i would like to be able to time a program inside visual c++ WITHOUT having to write extra bits of code inside it. Similar to how people do it with BASH in Linux.

flag

1  
You excluded specifically " .. having to setup a timer class, functions, and variables inside my program itself? " in your question then you accepted an answer which use QueryPerformanceCounter. A little weird... (euphemism) – MaD70 Nov 2 at 8:20
Yea, bounty was ending in 2 hours and no one has posted an answer that was exactly what i wanted (which is likely visual studio's fault, it probably just doesn't have that feature). I've already forfeited some points for the bounty, which only gets half awarded to the highest voted answer even if I don't like the answer. So I mark the answer that i do like and award the points to that person. Better option than just letting points go to waste! – Faken Nov 4 at 0:44

5 Answers

vote up 3 vote down check

In the Intel and AMD CPUs there is a high speed counter. The Windows API includes function calls to read the value of this counter and also the frequency of the counter - i.e. how many times per second it is counting.

Here's an example how to time your time in microseconds:


#include <iostream>
#include <windows.h>

int main()
{
        __int64 ctr1 = 0, ctr2 = 0, freq = 0;

        // Start timing the code.

        if (QueryPerformanceCounter((LARGE_INTEGER *) &ctr1) != 0) {
                // Do what ever you do, what ever you need to time...
                //
                //
                //

                // Finish timing the code.

                QueryPerformanceCounter((LARGE_INTEGER *) &ctr2);
                QueryPerformanceFrequency((LARGE_INTEGER *) &freq);

                // Print the time spent in microseconds to the console.

                std::cout << ((ctr2 - ctr1) * 1.0 / freq) << std::endl;
        }
}

link|flag
This one is excellent for detailed timing. – Marcus Lindblom Oct 31 at 20:48
Question: why do i need to check if the counter is currently not at zero? Other than that, this is the most simple and accurate solution (even though it technically doesn't fully answer my question). – Faken Nov 1 at 23:27
If the function succeeds, the return value is non-zero. Otherwise you can get the error information with GetLastError(). – nhaa123 Nov 2 at 1:33
vote up 1 vote down

If you want to time sections of your program without changing the code then you need to get hold of a profiler.

Visual Studio Team System (or Premium in VS2010) has a profiler but it's not available in Professional. Other well regarded options are AQTime (which has 30 day trial) and Redgate's ANTS profiler (which has a two week trial).

You may also want to look at the suggestions in this question for free options, which recommends Sleepy and AMD's CodeAnalyst for Windows.

link|flag
vote up 2 vote down

This answer at superuser.com suggests Timethis.exe from Windows 2000 Resource Kit Tool (just like time for Unix systems). Example usage:

...

The programs were run with these commands:

timethis "perf.exe    tt > NUL"
timethis "perfgcc.exe tt > NUL"

The timings (with a file having 100 lines, each line containing 250000 integers more or less randomly distributed between 1 and 250000) were:

VS compiler:

  • 7.359
  • 7.359
  • 7.296

GCC:

  • 1.906
  • 1.906
  • 1.937

...

So Visual Studio is not involved at all.

Another such little utility is ptime.

link|flag
vote up 2 vote down

Visual Studio has a profiler, but you might need a higher SKU than Pro to access it (e.g., Team System Development Edition). I'm not sure if the profiler does actual timings. From the linked article, it looks as though it might just do sampling, which can tell you which functions are taking the most time.

Back in the VC6 days, there were command line tools for profiling (PREP, PROFILE, and PREPORT). Those could do timing as well as sampling. Building a better profiler is great, but restricting it to the multi-thousand dollar SKUs keeps smaller ISVs and hobbyists out of the game.

link|flag
vote up 3 vote down

timeGetTime gives you number of milliseconds passed since the machine was turned on. By calculating the difference between the results of this function before and after your operation, you get the number of milliseconds it took. Don't forget to link with winmm.lib

EDIT:

DWORD msBegin = timeGetTime();
// do your stuff here
DWORD msDuration = timeGetTime() - msBegin;
// at this moment msDuration contains number of milliseconds it took for your stuff to execute

Caveats:

  1. the resolution of this timer is usually 10msec. There are ways to change it, but it's accurate enough for most of the scenarios
  2. if you have several processors, the results returned by this function, executed on different processors may be inconsistent
link|flag
Um...how do i use it? Unfortunately I've only really learned what I needed to know to do what I needed to do...other than that, I know nothing... – Faken Oct 22 at 1:55
DWORD msBegin = timeGetTime(); /* do your stuff */ DWORD msDuration = timeGetTime() - msBegin; // at this moment msDuration contains number of milliseconds it took for your stuff to execute – Rom Oct 22 at 1:57
Ahh...it doesn't like that...I'm getting this error: 1>main.obj : error LNK2019: unresolved external symbol __imp__timeGetTime@0 referenced in function _main, will i have to put this into a class for it to work? If I do, that kind of defeats the purpose of this question... – Faken Oct 22 at 2:01
well, that means that you need to link your application with winmm.lib, as the article which I linked to, says – Rom Oct 22 at 2:14
2  
@Greg Newgill: it's unstable, see for example blogs.msdn.com/larryosterman/archive/… – Rom Oct 22 at 2:24
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.