From: Yuyang Du <yuyang.du@intel.com>
To: peterz@infradead.org, mingo@kernel.org, linux-kernel@vger.kernel.org
Cc: bsegall@google.com, pjt@google.com, morten.rasmussen@arm.com,
vincent.guittot@linaro.org, dietmar.eggemann@arm.com,
matt@codeblueprint.co.uk, umgwanakikbuti@gmail.com,
Yuyang Du <yuyang.du@intel.com>
Subject: [PATCH v1 02/10] documentation: Add scheduler/sched-avg.txt
Date: Wed, 10 Aug 2016 08:14:47 +0800 [thread overview]
Message-ID: <1470788095-2125-3-git-send-email-yuyang.du@intel.com> (raw)
In-Reply-To: <1470788095-2125-1-git-send-email-yuyang.du@intel.com>
This doc file has the program to generate the constants to compute
sched averages.
Signed-off-by: Yuyang Du <yuyang.du@intel.com>
---
Documentation/scheduler/sched-avg.txt | 94 +++++++++++++++++++++++++++++++++
1 file changed, 94 insertions(+)
create mode 100644 Documentation/scheduler/sched-avg.txt
diff --git a/Documentation/scheduler/sched-avg.txt b/Documentation/scheduler/sched-avg.txt
new file mode 100644
index 0000000..45be4bd
--- /dev/null
+++ b/Documentation/scheduler/sched-avg.txt
@@ -0,0 +1,94 @@
+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_decay_inv_multiply() {
+ int i;
+ unsigned int x;
+
+ printf("static const u32 __decay_inv_multiply_N[] = {");
+ for(i = 0; i < HALFLIFE; i++) {
+ x = ((1UL<<32)-1)*pow(y, i);
+
+ if (i % 6 == 0) printf("\n\t");
+ printf("0x%8x, ", x);
+ }
+ printf("\n};\n\n");
+}
+
+int sum = 1024;
+void calc_accumulated_sum() {
+ int i;
+
+ printf("static const u32 __accumulated_sum_N[] = {\n\t 0,");
+ for(i = 1; i <= HALFLIFE; i++) {
+ if (i == 1)
+ sum *= y;
+ else
+ sum = sum*y + 1024*y;
+
+ if (i % 11 == 0) printf("\n\t");
+ printf("%5d,", sum);
+ }
+ printf("\n};\n\n");
+}
+
+int n = 1;
+/* first period */
+long max = 1024;
+
+void calc_converged_max() {
+ 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 SCHED_AVG_HALFLIFE %d\n", HALFLIFE);
+ printf("#define SCHED_AVG_MAX %ld\n", max);
+ printf("#define SCHED_AVG_MAX_N %d\n\n", n);
+}
+
+void calc_accumulated_sum_32() {
+ int i, x = sum;
+
+ printf("static const u32 __accumulated_sum_N32[] = {\n\t 0,");
+ for(i = 1; i <= n/HALFLIFE+1; i++) {
+ if (i > 1)
+ x = x/2 + sum;
+
+ if (i % 6 == 0) printf("\n\t");
+ printf("%6d,", x);
+ }
+ printf("\n};\n\n");
+}
+
+void main() {
+ y = pow(0.5, 1/(double)HALFLIFE);
+
+ calc_decay_inv_multiply();
+ calc_accumulated_sum();
+ calc_converged_max();
+ calc_accumulated_sum_32();
+}
--
1.7.9.5
next prev parent reply other threads:[~2016-08-10 18:36 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-10 0:14 [PATCH v1 00/10] Optimize sched avgs computation and implement flat util hierarchy Yuyang Du
2016-08-10 0:14 ` [PATCH v1 01/10] sched/fair: Chance LOAD_AVG_MAX_N from 345 to 347 Yuyang Du
2016-08-24 16:01 ` Vincent Guittot
2016-08-29 0:07 ` Yuyang Du
2016-08-10 0:14 ` Yuyang Du [this message]
2016-08-22 16:48 ` [PATCH v1 02/10] documentation: Add scheduler/sched-avg.txt Randy Dunlap
2016-08-10 0:14 ` [PATCH v1 03/10] sched/fair: Add static to remove_entity_load_avg() Yuyang Du
2016-08-10 0:14 ` [PATCH v1 04/10] sched/fair: Rename variable names for sched averages Yuyang Du
2016-08-10 0:14 ` [PATCH v1 05/10] sched/fair: Add __always_inline compiler attribute to __accumulate_sum() Yuyang Du
2016-08-10 0:14 ` [PATCH v1 06/10] sched/fair: Optimize __update_sched_avg() Yuyang Du
2016-08-10 0:14 ` [PATCH v1 07/10] sched/fair: Remove useless 64-bit to 32-bit variable conversion Yuyang Du
2016-08-25 7:11 ` Vincent Guittot
2016-08-29 1:00 ` Yuyang Du
2016-08-10 0:14 ` [PATCH v1 08/10] sched/fair: Remove scale_load_down() for load_avg Yuyang Du
2016-08-10 0:14 ` [PATCH v1 09/10] sched/fair: Rename scale_load() and scale_load_down() Yuyang Du
2016-08-10 0:14 ` [PATCH v1 10/10] sched/fair: Implement flat hierarchical structure for util_avg Yuyang Du
2016-08-10 0:23 ` [PATCH v1 00/10] Optimize sched avgs computation and implement flat util hierarchy Yuyang Du
2016-08-22 23:26 ` Yuyang Du
2016-08-23 13:28 ` Vincent Guittot
2016-08-23 14:13 ` Peter Zijlstra
2016-08-23 14:45 ` Vincent Guittot
2016-08-23 15:39 ` Dietmar Eggemann
2016-08-29 1:37 ` Yuyang Du
2016-09-01 18:32 ` Dietmar Eggemann
2016-08-24 8:54 ` Morten Rasmussen
2016-08-24 9:48 ` Vincent Guittot
2016-08-29 19:00 ` Yuyang Du
2016-09-01 14:22 ` Morten Rasmussen
2016-08-23 19:09 ` Yuyang Du
2016-08-23 19:01 ` Yuyang Du
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1470788095-2125-3-git-send-email-yuyang.du@intel.com \
--to=yuyang.du@intel.com \
--cc=bsegall@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=matt@codeblueprint.co.uk \
--cc=mingo@kernel.org \
--cc=morten.rasmussen@arm.com \
--cc=peterz@infradead.org \
--cc=pjt@google.com \
--cc=umgwanakikbuti@gmail.com \
--cc=vincent.guittot@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®