blob: f10b950ce458a759e81d8ffab9f17ee0429caff9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <stdio.h>
#include <omp.h>
/* Version info */
/**********************************************************/
#define OMPTS_VERSION "3.0a"
/* General */
/**********************************************************/
#define LOOPCOUNT 1000
#define REPETITIONS 20
/* following times are in seconds */
#define SLEEPTIME 0.01
#define SLEEPTIME_LONG 0.5
/* Definitions for tasks */
/**********************************************************/
#define NUM_TASKS 25
#define MAX_TASKS_PER_THREAD 5
|