aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/sandbox/example.c
blob: 4fec922d77c988b0fae4ebc17034ccaf6180447a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>
#include "f.h"
#include "../cycles.h"

int main(void){
  cycle_count_config();

  int i;
  int S = 0;

  TIMESTOP(0)
  for (i = 0; i < 1000; i++){
    S += f(i, i*2);
  }
  TIMESTOP(1)

  printf("Final value: %d\n", S);
  TIMESTOP(2)

  TIMEPRINT(2)
  return 0;
}