Need Microseconds

Oct 5, 2012 at 12:15am
I cant figure out how to make this into microseconds. What I have just does seconds.
1
2
3
4
5
6
7
8
9
10
clock_t t1, t2;

t1=clock();

code...

t2=clock();
      float diff = ((float)t2-(float)t1)/1000000;
      float seconds = diff /  CLOCKS_PER_SEC;
      cout<<seconds<<" seconds"<<endl;


Thanks,
giszzmo
Last edited on Oct 5, 2012 at 12:15am
Oct 5, 2012 at 12:52am
Why not just remove a certain large number from line 8?

-Albatross
Oct 5, 2012 at 3:56am
I still don't get microseconds.
Oct 5, 2012 at 3:57am
Heres an example of clock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* clock example: frequency of primes */
#include <stdio.h>
#include <time.h>
#include <math.h>

int frequency_of_primes (int n) {
  int i,j;
  int freq=n-1;
  for (i=2; i<=n; ++i) for (j=sqrt(i);j>1;--j) if (i%j==0) {--freq; break;}
  return freq;
}

int main ()
{
  int f;
  int t;
  printf ("Calculating...\n");
  f = frequency_of_primes (99999);
  t = clock();
  printf ("The number of primes lower than 100,000 is: %d\n",f);
  printf ("It took me %d clicks (%f seconds).\n",t,((float)t)/CLOCKS_PER_SEC);
  return 0;
}
//cplusplus.com 
Oct 6, 2012 at 12:47am
What does this mean:
"The number of primes lower than 100,000 is: %d\n",f);"

Why 100,000? There are 1,000,000 microseconds in a second.

Thanks!
Oct 6, 2012 at 6:27am
Is the computers clock accurate for microseconds?
I'm sure it is, but can the program operate that?
Oct 6, 2012 at 9:04am
giszzmo, ignore the 100,000... that's how many numbers he was checking in his frequency of primes function. If you increase that number, it'll increase the computational time.

Computer clocks are generally not accurate to the micro-second. <time.h> or <ctime> doesn't have a high-resolution timer that can get this accurate.

To get something with a very high resolution, you need to use something directly from your operating system. The resolution that you will get will depend on your hardware (if your processor runs at 1 GHz (1 tick per microsecond) you will not have 1 micro-second resolution).

Here's an example of something high-res for windows with an output from my system. (It also demonstrates how inaccurate the Sleep() function is).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <iostream>
#include <windows.h>

void some_operation() // Some arbitrary function that takes time.
{
  Sleep(1000);
}

int main()
{
  LARGE_INTEGER start, end, freq;
  
  QueryPerformanceFrequency(&freq);
  QueryPerformanceCounter(&start); 
  
  some_operation();
  
  QueryPerformanceCounter(&end);
    
  std::cout << "The resolution of this timer is: " << freq.QuadPart << " Hz." << std::endl;
  std::cout << "Time to calculate some_operation(): " 
            << (end.QuadPart - start.QuadPart) * 1000000 / freq.QuadPart 
            << " microSeconds" << std::endl;
}
The resolution of this timer is: 3331250 Hz.
Time to calculate some_operation(): 1000559 microSeconds
Press any key to continue . . .


Edit: Machine is running at 3.33 MHz. The timer resolution here is 0.30 microseconds.
Last edited on Oct 6, 2012 at 9:17am
Oct 6, 2012 at 3:27pm
If your compiler has std::chrono, this adaptation of Angeljruiz's code may serve.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include <chrono>
#include <iostream>

int frequency_of_primes (int n) {
    int freq=n-1;

    for (int i=2; i<=n; ++i) 
        for (int j=sqrt(i);j>1;--j) 
            if (i%j==0) 
            {
                --freq; 
                break;
            }

    return freq;
}



int main ()
{
    using namespace std::chrono ;

    std::cout << "Calculating...\n" ;
    
    auto begin = high_resolution_clock::now() ;
    int f = frequency_of_primes (99999);
    auto end = high_resolution_clock::now() ;

    auto ticks = duration_cast<microseconds>(end-begin) ;

    std::cout << "The number of primes lower than 100,000 is: " << f << '\n' ;
    std::cout << "It took me " << ticks.count() << " microseconds.\n" ;
}


http://www.informit.com/articles/article.aspx?p=1881386&seqNum=2 may be found useful.
Oct 6, 2012 at 4:08pm
Would converting it to milliseconds be easier?
Oct 6, 2012 at 5:14pm
Not really. It just means that you'd go from this:
(end.QuadPart - start.QuadPart) * 1000000 / freq.QuadPart
to this
(end.QuadPart - start.QuadPart) * 1000 / freq.QuadPart

Unless you cast that division to a double, you'll still get integer division and you won't have the decimal points.

If you don't mind 1-second resolution, then you can use the <ctime> header/library.
Oct 6, 2012 at 7:54pm
> Computer clocks are generally not accurate to the micro-second.
They are.
> To get something with a very high resolution, you need to use something directly from your operating system.
¿And where will the OS get that info from?
> 1 GHz (1 tick per microsecond)
1GHz = 1e9 Hz. That means 1 tick every 1e-9 s (one nanosecond), so 1000 ticks per microsecond
However, clock() does not count ticks
> Machine is running at 3.33 MHz.
¿steam powered?

@OP: clock() measure the time that your program is executing, using `clocks' units
CLOCKS_PER_SEC tells you how many `clocks' are in 1 second
Last edited on Oct 6, 2012 at 7:56pm
Oct 6, 2012 at 8:16pm
C'mon ne555. stop being a jerk. So I mixed GHz with MHz. That also didn't change the fact that my 3.4Ghz i7 is running at 3.33MHz on electricity (not steam). It also doesn't make my code or output in any way-shape-or-form wrong.
Last edited on Oct 6, 2012 at 8:47pm
Oct 6, 2012 at 8:56pm
zo'o you may be running out of coal.

timer_resolution \neq cpu_speed
Topic archived. No new replies allowed.