Blame view

Documentation/scheduler/sched-pelt.c 1.95 KB
76d034edc   Yuyang Du   sched/Documentati...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  /*
   * The following program is used to generate the constants for
   * computing sched averages.
   *
   * ==============================================================
   *		C program (compile with -lm)
   * ==============================================================
   */
  
  #include <math.h>
  #include <stdio.h>
  
  #define HALFLIFE 32
  #define SHIFT 32
  
  double y;
  
  void calc_runnable_avg_yN_inv(void)
  {
  	int i;
  	unsigned int x;
509466b7d   Qian Cai   sched/fair: Fix "...
22
23
  	/* To silence -Wunused-but-set-variable warnings. */
  	printf("static const u32 runnable_avg_yN_inv[] __maybe_unused = {");
76d034edc   Yuyang Du   sched/Documentati...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
  	for (i = 0; i < HALFLIFE; i++) {
  		x = ((1UL<<32)-1)*pow(y, i);
  
  		if (i % 6 == 0) printf("
  \t");
  		printf("0x%8x, ", x);
  	}
  	printf("
  };
  
  ");
  }
  
  int sum = 1024;
  
  void calc_runnable_avg_yN_sum(void)
  {
  	int i;
  
  	printf("static const u32 runnable_avg_yN_sum[] = {
  \t    0,");
  	for (i = 1; i <= HALFLIFE; i++) {
  		if (i == 1)
  			sum *= y;
  		else
  			sum = sum*y + 1024*y;
  
  		if (i % 11 == 0)
  			printf("
  \t");
  
  		printf("%5d,", sum);
  	}
  	printf("
  };
  
  ");
  }
  
  int n = -1;
  /* first period */
  long max = 1024;
  
  void calc_converged_max(void)
  {
  	long last = 0, y_inv = ((1UL<<32)-1)*y;
  
  	for (; ; n++) {
  		if (n > -1)
  			max = ((max*y_inv)>>SHIFT) + 1024;
  			/*
  			 * This is the same as:
  			 * max = max*y + 1024;
  			 */
  
  		if (last == max)
  			break;
  
  		last = max;
  	}
  	n--;
  	printf("#define LOAD_AVG_PERIOD %d
  ", HALFLIFE);
  	printf("#define LOAD_AVG_MAX %ld
  ", max);
  //	printf("#define LOAD_AVG_MAX_N %d
  
  ", n);
  }
  
  void calc_accumulated_sum_32(void)
  {
  	int i, x = sum;
  
  	printf("static const u32 __accumulated_sum_N32[] = {
  \t     0,");
  	for (i = 1; i <= n/HALFLIFE+1; i++) {
  		if (i > 1)
  			x = x/2 + sum;
  
  		if (i % 6 == 0)
  			printf("
  \t");
  
  		printf("%6d,", x);
  	}
  	printf("
  };
  
  ");
  }
  
  void main(void)
  {
  	printf("/* Generated by Documentation/scheduler/sched-pelt; do not modify. */
  
  ");
  
  	y = pow(0.5, 1/(double)HALFLIFE);
  
  	calc_runnable_avg_yN_inv();
  //	calc_runnable_avg_yN_sum();
  	calc_converged_max();
  //	calc_accumulated_sum_32();
  }