aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/trace_profile/vtune/main.c
blob: 8c019d3b9c38b6a0a760801351197fe778d39c28 (plain) (blame)
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
#include <ittnotify.h>

void init();
void compute();
void shutdown();

int main() {
  init();

  __itt_resume();
  compute();
  __itt_pause();

  shutdown();
  return 0;
}

//

#include <unistd.h>

void init() {
  sleep(1);
}

void compute() {
  sleep(1);
}

void shutdown() {
  sleep(1);
}