File: test_omp.c

package info (click to toggle)
libvidstab 1.1.0-2.1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 648 kB
  • sloc: ansic: 6,094; makefile: 19; sh: 14
file content (40 lines) | stat: -rw-r--r-- 997 bytes parent folder | download | duplicates (2)
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
35
36
37
38
39
40
#ifdef USE_OMP
int openmptest(){
  int start = timeOfDayinMS();
  long int sum=0;
  int i,j;

#pragma omp parallel for shared(sum) private(i,j)
  for (i=0; i<10;i++){
    printf("num theads: %i\n",omp_get_thread_num());
    long int k=0;
    for (j=0; j<4000000;j++){
      k+=sqrt(j);
    }
#pragma omp atomic
    sum+=k;
  }
  int end = timeOfDayinMS();
  fprintf(stderr, "Sum: %li\n",sum);
  return end-start;
}
int openmp(){
  fprintf(stderr, "Processors: %i, Max # theads: %i\n", omp_get_num_procs(), omp_get_max_threads());
  int num = omp_get_max_threads();

  int time, timeref;
  omp_set_dynamic( 0 );
  omp_set_num_threads( 1 );
  fprintf(stderr,"********** omp speedtest:\n");
  time = openmptest();
  fprintf(stderr,"***C    time: %i ms\n",  time);
  timeref=time;
  omp_set_dynamic( 1 );
  omp_set_num_threads( num);
  time = openmptest();
  fprintf(stderr,"***C (%i)time: %i ms, Speedup %f\n", num, time,
          (double)timeref/time);
  omp_set_dynamic( 1 );
  return 1;
}
#endif