author | Fabian Huch <huch@in.tum.de> |
Thu, 14 Mar 2024 17:19:01 +0100 | |
changeset 79896 | 2c9c5ae99a09 |
parent 79895 | 4ec26ed6f481 |
child 79897 | 661fb7db57ca |
permissions | -rw-r--r-- |
79502 | 1 |
/* Title: Pure/Build/build_schedule.scala |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
2 |
Author: Fabian Huch, TU Muenchen |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
3 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
4 |
Build schedule generated by Heuristic methods, allowing for more efficient builds. |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
5 |
*/ |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
6 |
package isabelle |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
7 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
8 |
|
78846 | 9 |
import Host.Node_Info |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
10 |
import scala.annotation.tailrec |
79182
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
11 |
import scala.collection.mutable |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
12 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
13 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
14 |
object Build_Schedule { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
15 |
/* organized historic timing information (extracted from build logs) */ |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
16 |
|
79593 | 17 |
case class Result(job_name: String, hostname: String, threads: Int, timing: Timing) { |
79085
cf51ccfd3e39
use full timing information in build schedule;
Fabian Huch <huch@in.tum.de>
parents:
79084
diff
changeset
|
18 |
def elapsed: Time = timing.elapsed |
79087
3620010c410a
use cpu time for approximation;
Fabian Huch <huch@in.tum.de>
parents:
79086
diff
changeset
|
19 |
def proper_cpu: Option[Time] = timing.cpu.proper_ms.map(Time.ms) |
79085
cf51ccfd3e39
use full timing information in build schedule;
Fabian Huch <huch@in.tum.de>
parents:
79084
diff
changeset
|
20 |
} |
79189 | 21 |
|
22 |
object Timing_Data { |
|
23 |
def median_timing(obs: List[Timing]): Timing = obs.sortBy(_.elapsed.ms).apply(obs.length / 2) |
|
24 |
||
25 |
def median_time(obs: List[Time]): Time = obs.sortBy(_.ms).apply(obs.length / 2) |
|
26 |
||
27 |
def mean_time(obs: Iterable[Time]): Time = Time.ms(obs.map(_.ms).sum / obs.size) |
|
28 |
||
29 |
private def dummy_entries(host: Host, host_factor: Double) = { |
|
30 |
val baseline = Time.minutes(5).scale(host_factor) |
|
31 |
val gc = Time.seconds(10).scale(host_factor) |
|
32 |
List( |
|
79593 | 33 |
Result("dummy", host.name, 1, Timing(baseline, baseline, gc)), |
34 |
Result("dummy", host.name, 8, Timing(baseline.scale(0.2), baseline, gc))) |
|
79189 | 35 |
} |
36 |
||
37 |
def make( |
|
38 |
host_infos: Host_Infos, |
|
39 |
build_history: List[(Build_Log.Meta_Info, Build_Log.Build_Info)], |
|
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
40 |
session_structure: Sessions.Structure, |
79189 | 41 |
): Timing_Data = { |
42 |
val hosts = host_infos.hosts |
|
43 |
val measurements = |
|
44 |
for { |
|
45 |
(meta_info, build_info) <- build_history |
|
79818
0c2a62a9f136
more operations for Build_Log.Meta_Info: prefer explicit types;
wenzelm
parents:
79805
diff
changeset
|
46 |
build_host = meta_info.get_build_host |
79189 | 47 |
(job_name, session_info) <- build_info.sessions.toList |
48 |
if build_info.finished_sessions.contains(job_name) |
|
49 |
hostname <- session_info.hostname.orElse(build_host).toList |
|
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
50 |
host <- hosts.find(_.name == hostname).toList |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
51 |
threads = session_info.threads.getOrElse(host.num_cpus) |
79189 | 52 |
} yield (job_name, hostname, threads) -> session_info.timing |
53 |
||
54 |
val entries = |
|
55 |
if (measurements.isEmpty) { |
|
56 |
val default_host = host_infos.hosts.sorted(host_infos.host_speeds).last |
|
57 |
host_infos.hosts.flatMap(host => |
|
58 |
dummy_entries(host, host_infos.host_factor(default_host, host))) |
|
59 |
} |
|
60 |
else |
|
61 |
measurements.groupMap(_._1)(_._2).toList.map { |
|
62 |
case ((job_name, hostname, threads), timings) => |
|
79593 | 63 |
Result(job_name, hostname, threads, median_timing(timings)) |
79189 | 64 |
} |
65 |
||
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
66 |
new Timing_Data(new Facet(entries), host_infos, session_structure) |
79189 | 67 |
} |
68 |
||
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
69 |
def load( |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
70 |
host_infos: Host_Infos, |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
71 |
log_database: SQL.Database, |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
72 |
sessions_structure: Sessions.Structure |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
73 |
): Timing_Data = { |
79189 | 74 |
val build_history = |
75 |
for { |
|
76 |
log_name <- log_database.execute_query_statement( |
|
77 |
Build_Log.private_data.meta_info_table.select(List(Build_Log.Column.log_name)), |
|
78 |
List.from[String], res => res.string(Build_Log.Column.log_name)) |
|
79 |
meta_info <- Build_Log.private_data.read_meta_info(log_database, log_name) |
|
80 |
build_info = Build_Log.private_data.read_build_info(log_database, log_name) |
|
81 |
} yield (meta_info, build_info) |
|
82 |
||
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
83 |
make(host_infos, build_history, sessions_structure) |
79189 | 84 |
} |
79593 | 85 |
|
86 |
||
87 |
/* data facets */ |
|
88 |
||
89 |
object Facet { |
|
90 |
def unapply(facet: Facet): Option[List[Result]] = Some(facet.results) |
|
91 |
} |
|
92 |
||
93 |
class Facet private[Timing_Data](val results: List[Result]) { |
|
94 |
require(results.nonEmpty) |
|
95 |
||
79649
981cd49a3f90
more explicit types --- fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79648
diff
changeset
|
96 |
def is_empty: Boolean = results.isEmpty |
79593 | 97 |
|
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
98 |
def size: Int = results.length |
79593 | 99 |
|
79649
981cd49a3f90
more explicit types --- fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79648
diff
changeset
|
100 |
lazy val by_job: Map[String, Facet] = results.groupBy(_.job_name).view.mapValues(new Facet(_)).toMap |
981cd49a3f90
more explicit types --- fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79648
diff
changeset
|
101 |
lazy val by_threads: Map[Int, Facet] = results.groupBy(_.threads).view.mapValues(new Facet(_)).toMap |
981cd49a3f90
more explicit types --- fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79648
diff
changeset
|
102 |
lazy val by_hostname: Map[String, Facet] = results.groupBy(_.hostname).view.mapValues(new Facet(_)).toMap |
79593 | 103 |
|
104 |
def mean_time: Time = Timing_Data.mean_time(results.map(_.elapsed)) |
|
105 |
||
106 |
def best_result: Result = results.minBy(_.elapsed.ms) |
|
107 |
} |
|
79189 | 108 |
} |
109 |
||
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
110 |
class Timing_Data private( |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
111 |
facet: Timing_Data.Facet, |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
112 |
val host_infos: Host_Infos, |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
113 |
val sessions_structure: Sessions.Structure |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
114 |
) { |
79025
f78ee2d48bf5
handle inflection point in interpolation with monotone prefix;
Fabian Huch <huch@in.tum.de>
parents:
79024
diff
changeset
|
115 |
private def inflection_point(last_mono: Int, next: Int): Int = |
f78ee2d48bf5
handle inflection point in interpolation with monotone prefix;
Fabian Huch <huch@in.tum.de>
parents:
79024
diff
changeset
|
116 |
last_mono + ((next - last_mono) / 2) |
f78ee2d48bf5
handle inflection point in interpolation with monotone prefix;
Fabian Huch <huch@in.tum.de>
parents:
79024
diff
changeset
|
117 |
|
79028
6bada416ba55
clarified timing data operations: proper estimation (instead of known points);
Fabian Huch <huch@in.tum.de>
parents:
79027
diff
changeset
|
118 |
def best_threads(job_name: String, max_threads: Int): Int = { |
6bada416ba55
clarified timing data operations: proper estimation (instead of known points);
Fabian Huch <huch@in.tum.de>
parents:
79027
diff
changeset
|
119 |
val worse_threads = |
79593 | 120 |
facet.by_job.get(job_name).toList.flatMap(_.by_hostname).flatMap { |
121 |
case (hostname, facet) => |
|
122 |
val best_threads = facet.best_result.threads |
|
123 |
facet.by_threads.keys.toList.sorted.find(_ > best_threads).map( |
|
79028
6bada416ba55
clarified timing data operations: proper estimation (instead of known points);
Fabian Huch <huch@in.tum.de>
parents:
79027
diff
changeset
|
124 |
inflection_point(best_threads, _)) |
6bada416ba55
clarified timing data operations: proper estimation (instead of known points);
Fabian Huch <huch@in.tum.de>
parents:
79027
diff
changeset
|
125 |
} |
6bada416ba55
clarified timing data operations: proper estimation (instead of known points);
Fabian Huch <huch@in.tum.de>
parents:
79027
diff
changeset
|
126 |
(max_threads :: worse_threads).min |
6bada416ba55
clarified timing data operations: proper estimation (instead of known points);
Fabian Huch <huch@in.tum.de>
parents:
79027
diff
changeset
|
127 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
128 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
129 |
private def hostname_factor(from: String, to: String): Double = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
130 |
host_infos.host_factor(host_infos.the_host(from), host_infos.the_host(to)) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
131 |
|
79041 | 132 |
private def approximate_threads(entries_unsorted: List[(Int, Time)], threads: Int): Time = { |
133 |
val entries = entries_unsorted.sortBy(_._1) |
|
134 |
||
79036
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
135 |
def sorted_prefix[A](xs: List[A], f: A => Long): List[A] = |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
136 |
xs match { |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
137 |
case x1 :: x2 :: xs => |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
138 |
if (f(x1) <= f(x2)) x1 :: sorted_prefix(x2 :: xs, f) else x1 :: Nil |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
139 |
case xs => xs |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
140 |
} |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
141 |
|
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
142 |
def linear(p0: (Int, Time), p1: (Int, Time)): Time = { |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
143 |
val a = (p1._2 - p0._2).scale(1.0 / (p1._1 - p0._1)) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
144 |
val b = p0._2 - a.scale(p0._1) |
79184 | 145 |
(a.scale(threads) + b) max Time.zero |
79036
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
146 |
} |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
147 |
|
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
148 |
val mono_prefix = sorted_prefix(entries, e => -e._2.ms) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
149 |
|
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
150 |
val is_mono = entries == mono_prefix |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
151 |
val in_prefix = mono_prefix.length > 1 && threads <= mono_prefix.last._1 |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
152 |
val in_inflection = |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
153 |
!is_mono && mono_prefix.length > 1 && threads < entries.drop(mono_prefix.length).head._1 |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
154 |
if (is_mono || in_prefix || in_inflection) { |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
155 |
// Model with Amdahl's law |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
156 |
val t_p = |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
157 |
Timing_Data.median_time(for { |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
158 |
(n, t0) <- mono_prefix |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
159 |
(m, t1) <- mono_prefix |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
160 |
if m != n |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
161 |
} yield (t0 - t1).scale(n.toDouble * m / (m - n))) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
162 |
val t_c = |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
163 |
Timing_Data.median_time(for ((n, t) <- mono_prefix) yield t - t_p.scale(1.0 / n)) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
164 |
|
79184 | 165 |
def model(threads: Int): Time = (t_c + t_p.scale(1.0 / threads)) max Time.zero |
79036
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
166 |
|
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
167 |
if (is_mono || in_prefix) model(threads) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
168 |
else { |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
169 |
val post_inflection = entries.drop(mono_prefix.length).head |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
170 |
val inflection_threads = inflection_point(mono_prefix.last._1, post_inflection._1) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
171 |
|
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
172 |
if (threads <= inflection_threads) model(threads) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
173 |
else linear((inflection_threads, model(inflection_threads)), post_inflection) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
174 |
} |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
175 |
} else { |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
176 |
// Piecewise linear |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
177 |
val (p0, p1) = |
79042 | 178 |
if (entries.head._1 < threads && threads < entries.last._1) { |
179 |
val split = entries.partition(_._1 < threads) |
|
79036
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
180 |
(split._1.last, split._2.head) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
181 |
} else { |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
182 |
val piece = if (threads < entries.head._1) entries.take(2) else entries.takeRight(2) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
183 |
(piece.head, piece.last) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
184 |
} |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
185 |
|
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
186 |
linear(p0, p1) |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
187 |
} |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
188 |
} |
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
189 |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
190 |
private def unify_hosts(job_name: String, on_host: String): List[(Int, Time)] = { |
79593 | 191 |
def unify(hostname: String, facet: Timing_Data.Facet) = |
192 |
facet.mean_time.scale(hostname_factor(hostname, on_host)) |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
193 |
|
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
194 |
for { |
79593 | 195 |
facet <- facet.by_job.get(job_name).toList |
196 |
(threads, facet) <- facet.by_threads |
|
197 |
entries = facet.by_hostname.toList.map(unify) |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
198 |
} yield threads -> Timing_Data.median_time(entries) |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
199 |
} |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
200 |
|
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
201 |
def estimate_threads(job_name: String, hostname: String, threads: Int): Option[Time] = { |
79593 | 202 |
def try_approximate(facet: Timing_Data.Facet): Option[Time] = { |
79087
3620010c410a
use cpu time for approximation;
Fabian Huch <huch@in.tum.de>
parents:
79086
diff
changeset
|
203 |
val entries = |
79593 | 204 |
facet.by_threads.toList match { |
205 |
case List((i, Timing_Data.Facet(List(result)))) if i != 1 => |
|
206 |
(i, facet.mean_time) :: result.proper_cpu.map(1 -> _).toList |
|
207 |
case entries => entries.map((threads, facet) => threads -> facet.mean_time) |
|
79087
3620010c410a
use cpu time for approximation;
Fabian Huch <huch@in.tum.de>
parents:
79086
diff
changeset
|
208 |
} |
3620010c410a
use cpu time for approximation;
Fabian Huch <huch@in.tum.de>
parents:
79086
diff
changeset
|
209 |
if (entries.size < 2) None else Some(approximate_threads(entries, threads)) |
3620010c410a
use cpu time for approximation;
Fabian Huch <huch@in.tum.de>
parents:
79086
diff
changeset
|
210 |
} |
3620010c410a
use cpu time for approximation;
Fabian Huch <huch@in.tum.de>
parents:
79086
diff
changeset
|
211 |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
212 |
for { |
79593 | 213 |
facet <- facet.by_job.get(job_name) |
214 |
facet <- facet.by_hostname.get(hostname) |
|
215 |
time <- facet.by_threads.get(threads).map(_.mean_time).orElse(try_approximate(facet)) |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
216 |
} yield time |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
217 |
} |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
218 |
|
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
219 |
def global_threads_factor(from: Int, to: Int): Double = { |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
220 |
def median(xs: Iterable[Double]): Double = xs.toList.sorted.apply(xs.size / 2) |
79036
be42ba4b4672
split actual approximation from data handling;
Fabian Huch <huch@in.tum.de>
parents:
79035
diff
changeset
|
221 |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
222 |
val estimates = |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
223 |
for { |
79593 | 224 |
(hostname, facet) <- facet.by_hostname |
225 |
job_name <- facet.by_job.keys |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
226 |
from_time <- estimate_threads(job_name, hostname, from) |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
227 |
to_time <- estimate_threads(job_name, hostname, to) |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
228 |
} yield from_time.ms.toDouble / to_time.ms |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
229 |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
230 |
if (estimates.nonEmpty) median(estimates) |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
231 |
else { |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
232 |
// unify hosts |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
233 |
val estimates = |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
234 |
for { |
79593 | 235 |
(job_name, facet) <- facet.by_job |
236 |
hostname = facet.by_hostname.keys.head |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
237 |
entries = unify_hosts(job_name, hostname) |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
238 |
if entries.length > 1 |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
239 |
} yield |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
240 |
approximate_threads(entries, from).ms.toDouble / approximate_threads(entries, to).ms |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
241 |
|
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
242 |
if (estimates.nonEmpty) median(estimates) |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
243 |
else from.toDouble / to.toDouble |
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
244 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
245 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
246 |
|
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
247 |
private var cache: Map[(String, String, Int), Time] = Map.empty |
79534
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
248 |
|
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
249 |
|
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
250 |
/* approximation factors -- penalize estimations with less information */ |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
251 |
|
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
252 |
val FACTOR_NO_THREADS_GLOBAL_CURVE = 2.5 |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
253 |
val FACTOR_NO_THREADS_UNIFY_MACHINES = 1.7 |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
254 |
val FACTOR_NO_THREADS_OTHER_MACHINE = 1.5 |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
255 |
val FACTOR_NO_THREADS_SAME_MACHINE = 1.4 |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
256 |
val FACTOR_THREADS_OTHER_MACHINE = 1.2 |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
257 |
|
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
258 |
def estimate(job_name: String, hostname: String, threads: Int): Time = { |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
259 |
def estimate: Time = |
79593 | 260 |
facet.by_job.get(job_name) match { |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
261 |
case None => |
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
262 |
// no data for job, use timeout as esimation for single-threaded job on worst host |
79895
4ec26ed6f481
proper check (amending 9aef1d1535ff);
Fabian Huch <huch@in.tum.de>
parents:
79892
diff
changeset
|
263 |
val default_time = sessions_structure.get(job_name).map(_.timeout).getOrElse(Time.zero) |
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
264 |
if (default_time > Time.zero) { |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
265 |
val default_host = host_infos.hosts.sorted(host_infos.host_speeds).head |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
266 |
default_time |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
267 |
.scale(global_threads_factor(1, threads)) |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
268 |
.scale(hostname_factor(default_host.name, hostname)) |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
269 |
} |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
270 |
else { |
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
271 |
// no timeout, take average of other jobs for given threads |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
272 |
val job_estimates = facet.by_job.keys.flatMap(estimate_threads(_, hostname, threads)) |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
273 |
if (job_estimates.nonEmpty) Timing_Data.mean_time(job_estimates) |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
274 |
else { |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
275 |
// no other job to estimate from, use global curve to approximate any other job |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
276 |
val (threads1, facet1) = facet.by_threads.head |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
277 |
facet1.mean_time.scale(global_threads_factor(threads1, threads)) |
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
278 |
} |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
279 |
} |
79038
cd7c1acc9cf2
better estimation for unknown jobs;
Fabian Huch <huch@in.tum.de>
parents:
79037
diff
changeset
|
280 |
|
79593 | 281 |
case Some(facet) => |
282 |
facet.by_threads.get(threads) match { |
|
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
283 |
case None => // interpolate threads |
79534
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
284 |
estimate_threads(job_name, hostname, threads).map(_.scale( |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
285 |
FACTOR_NO_THREADS_SAME_MACHINE)).getOrElse { |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
286 |
// per machine, try to approximate config for threads |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
287 |
val approximated = |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
288 |
for { |
79593 | 289 |
hostname1 <- facet.by_hostname.keys |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
290 |
estimate <- estimate_threads(job_name, hostname1, threads) |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
291 |
factor = hostname_factor(hostname1, hostname) |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
292 |
} yield estimate.scale(factor) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
293 |
|
79534
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
294 |
if (approximated.nonEmpty) |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
295 |
Timing_Data.mean_time(approximated).scale(FACTOR_NO_THREADS_OTHER_MACHINE) |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
296 |
else { |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
297 |
// no single machine where config can be approximated, unify data points |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
298 |
val unified_entries = unify_hosts(job_name, hostname) |
79037
1b3a6cc4a2bf
clarified and tuned timing estimation;
Fabian Huch <huch@in.tum.de>
parents:
79036
diff
changeset
|
299 |
|
79534
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
300 |
if (unified_entries.length > 1) |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
301 |
approximate_threads(unified_entries, threads).scale( |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
302 |
FACTOR_NO_THREADS_UNIFY_MACHINES) |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
303 |
else { |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
304 |
// only single data point, use global curve to approximate |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
305 |
val (job_threads, job_time) = unified_entries.head |
79534
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
306 |
job_time.scale(global_threads_factor(job_threads, threads)).scale( |
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
307 |
FACTOR_NO_THREADS_GLOBAL_CURVE) |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
308 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
309 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
310 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
311 |
|
79593 | 312 |
case Some(facet) => // time for job/thread exists, interpolate machine if necessary |
313 |
facet.by_hostname.get(hostname).map(_.mean_time).getOrElse { |
|
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
314 |
Timing_Data.median_time( |
79593 | 315 |
facet.by_hostname.toList.map((hostname1, facet) => |
316 |
facet.mean_time.scale(hostname_factor(hostname1, hostname)))).scale( |
|
79534
1dcc97227442
add approximation factors in build schedule to estimate build times more conservatively;
Fabian Huch <huch@in.tum.de>
parents:
79527
diff
changeset
|
317 |
FACTOR_THREADS_OTHER_MACHINE) |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
318 |
} |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
319 |
} |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
320 |
} |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
321 |
|
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
322 |
cache.get(job_name, hostname, threads) match { |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
323 |
case Some(time) => time |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
324 |
case None => |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
325 |
val time = estimate |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
326 |
cache = cache + ((job_name, hostname, threads) -> time) |
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
327 |
time |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
328 |
} |
79178
96e5d12c82fd
performance tuning: cache estimates;
Fabian Huch <huch@in.tum.de>
parents:
79110
diff
changeset
|
329 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
330 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
331 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
332 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
333 |
/* host information */ |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
334 |
|
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
335 |
case class Host( |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
336 |
name: String, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
337 |
num_cpus: Int, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
338 |
max_jobs: Int, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
339 |
benchmark_score: Double, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
340 |
numa: Boolean = false, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
341 |
numa_nodes: List[Int] = Nil, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
342 |
options: List[Options.Spec] = Nil |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
343 |
) { |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
344 |
def max_threads(options: Options): Int = (options ++ this.options).threads(default = num_cpus) |
79103
883f61f0beda
clarified build schedule host: more operations;
Fabian Huch <huch@in.tum.de>
parents:
79102
diff
changeset
|
345 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
346 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
347 |
object Host_Infos { |
79090
20be5b925720
clarified load vs. apply vs. make;
Fabian Huch <huch@in.tum.de>
parents:
79089
diff
changeset
|
348 |
def load(build_hosts: List[Build_Cluster.Host], db: SQL.Database): Host_Infos = { |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
349 |
def get_host(build_host: Build_Cluster.Host): Host = { |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
350 |
val name = build_host.name |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
351 |
val info = |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
352 |
isabelle.Host.read_info(db, name).getOrElse(error("No info for host " + quote(name))) |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
353 |
val score = info.benchmark_score.getOrElse(error("No benchmark for " + quote(name))) |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
354 |
|
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
355 |
Host( |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
356 |
name = name, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
357 |
num_cpus = info.num_cpus, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
358 |
max_jobs = build_host.jobs, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
359 |
numa = build_host.numa, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
360 |
numa_nodes = info.numa_nodes, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
361 |
benchmark_score = score, |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
362 |
options = build_host.options) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
363 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
364 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
365 |
new Host_Infos(build_hosts.map(get_host)) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
366 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
367 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
368 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
369 |
class Host_Infos private(val hosts: List[Host]) { |
79040 | 370 |
require(hosts.nonEmpty) |
371 |
||
79103
883f61f0beda
clarified build schedule host: more operations;
Fabian Huch <huch@in.tum.de>
parents:
79102
diff
changeset
|
372 |
private val by_hostname = hosts.map(host => host.name -> host).toMap |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
373 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
374 |
def host_factor(from: Host, to: Host): Double = |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
375 |
from.benchmark_score / to.benchmark_score |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
376 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
377 |
val host_speeds: Ordering[Host] = |
79084 | 378 |
Ordering.fromLessThan((host1, host2) => host_factor(host1, host2) < 1) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
379 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
380 |
def the_host(hostname: String): Host = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
381 |
by_hostname.getOrElse(hostname, error("Unknown host " + quote(hostname))) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
382 |
def the_host(node_info: Node_Info): Host = the_host(node_info.hostname) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
383 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
384 |
def num_threads(node_info: Node_Info): Int = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
385 |
if (node_info.rel_cpus.nonEmpty) node_info.rel_cpus.length |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
386 |
else the_host(node_info).num_cpus |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
387 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
388 |
def available(state: Build_Process.State): Resources = { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
389 |
val allocated = |
79594 | 390 |
state.running.values.map(_.node_info).groupMapReduce(_.hostname)(List(_))(_ ::: _) |
391 |
new Resources(this, allocated) |
|
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
392 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
393 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
394 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
395 |
|
79029 | 396 |
/* offline tracking of job configurations and resource allocations */ |
397 |
||
398 |
case class Config(job_name: String, node_info: Node_Info) { |
|
399 |
def job_of(start_time: Time): Build_Process.Job = |
|
400 |
Build_Process.Job(job_name, "", "", node_info, Date(start_time), None) |
|
401 |
} |
|
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
402 |
|
79594 | 403 |
class Resources( |
404 |
val host_infos: Host_Infos, |
|
405 |
allocated_nodes: Map[String, List[Node_Info]] |
|
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
406 |
) { |
79106 | 407 |
def unused_nodes(host: Host, threads: Int): List[Node_Info] = |
408 |
if (!available(host, threads)) Nil |
|
409 |
else { |
|
410 |
val node = next_node(host, threads) |
|
411 |
node :: allocate(node).unused_nodes(host, threads) |
|
412 |
} |
|
413 |
||
414 |
def unused_nodes(threads: Int): List[Node_Info] = |
|
415 |
host_infos.hosts.flatMap(unused_nodes(_, threads)) |
|
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
416 |
|
79594 | 417 |
def allocated(host: Host): List[Node_Info] = allocated_nodes.getOrElse(host.name, Nil) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
418 |
|
79593 | 419 |
def allocate(node_info: Node_Info): Resources = { |
420 |
val host = host_infos.the_host(node_info) |
|
79594 | 421 |
new Resources(host_infos, allocated_nodes + (host.name -> (node_info :: allocated(host)))) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
422 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
423 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
424 |
def try_allocate_tasks( |
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
425 |
hosts: List[(Host, Int)], |
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
426 |
tasks: List[(Build_Process.Task, Int, Int)], |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
427 |
): (List[Config], Resources) = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
428 |
tasks match { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
429 |
case Nil => (Nil, this) |
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
430 |
case (task, min_threads, max_threads) :: tasks => |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
431 |
val (config, resources) = |
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
432 |
hosts.find((host, _) => available(host, min_threads)) match { |
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
433 |
case Some((host, host_max_threads)) => |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
434 |
val free_threads = host.num_cpus - ((host.max_jobs - 1) * host_max_threads) |
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
435 |
val node_info = next_node(host, (min_threads max free_threads) min max_threads) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
436 |
(Some(Config(task.name, node_info)), allocate(node_info)) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
437 |
case None => (None, this) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
438 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
439 |
val (configs, resources1) = resources.try_allocate_tasks(hosts, tasks) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
440 |
(configs ++ config, resources1) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
441 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
442 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
443 |
def next_node(host: Host, threads: Int): Node_Info = { |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
444 |
val numa_node_num_cpus = host.num_cpus / (host.numa_nodes.length max 1) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
445 |
def explicit_cpus(node_info: Node_Info): List[Int] = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
446 |
if (node_info.rel_cpus.nonEmpty) node_info.rel_cpus else (0 until numa_node_num_cpus).toList |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
447 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
448 |
val used_nodes = allocated(host).groupMapReduce(_.numa_node)(explicit_cpus)(_ ::: _) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
449 |
|
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
450 |
val available_nodes = host.numa_nodes |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
451 |
val numa_node = |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
452 |
if (!host.numa) None |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
453 |
else available_nodes.sortBy(n => used_nodes.getOrElse(Some(n), Nil).length).headOption |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
454 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
455 |
val used_cpus = used_nodes.getOrElse(numa_node, Nil).toSet |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
456 |
val available_cpus = (0 until numa_node_num_cpus).filterNot(used_cpus.contains).toList |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
457 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
458 |
val rel_cpus = if (available_cpus.length >= threads) available_cpus.take(threads) else Nil |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
459 |
|
79103
883f61f0beda
clarified build schedule host: more operations;
Fabian Huch <huch@in.tum.de>
parents:
79102
diff
changeset
|
460 |
Node_Info(host.name, numa_node, rel_cpus) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
461 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
462 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
463 |
def available(host: Host, threads: Int): Boolean = { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
464 |
val used = allocated(host) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
465 |
|
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
466 |
if (used.length >= host.max_jobs) false |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
467 |
else { |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
468 |
if (host.numa_nodes.length <= 1) |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
469 |
used.map(host_infos.num_threads).sum + threads <= host.num_cpus |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
470 |
else { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
471 |
def node_threads(n: Int): Int = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
472 |
used.filter(_.numa_node.contains(n)).map(host_infos.num_threads).sum |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
473 |
|
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
474 |
host.numa_nodes.exists( |
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
475 |
node_threads(_) + threads <= host.num_cpus / host.numa_nodes.length) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
476 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
477 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
478 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
479 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
480 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
481 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
482 |
/* schedule generation */ |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
483 |
|
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
484 |
object Schedule { |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
485 |
case class Node(job_name: String, node_info: Node_Info, start: Date, duration: Time) { |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
486 |
def end: Date = Date(start.time + duration) |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
487 |
} |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
488 |
|
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
489 |
type Graph = isabelle.Graph[String, Node] |
79183
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
490 |
|
79185 | 491 |
def init(build_uuid: String): Schedule = Schedule(build_uuid, "none", Date.now(), Graph.empty) |
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
492 |
} |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
493 |
|
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
494 |
case class Schedule( |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
495 |
build_uuid: String, |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
496 |
generator: String, |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
497 |
start: Date, |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
498 |
graph: Schedule.Graph, |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
499 |
serial: Long = 0, |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
500 |
) { |
79835 | 501 |
def next_serial: Long = Build_Process.State.inc_serial(serial) |
502 |
||
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
503 |
def end: Date = |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
504 |
if (graph.is_empty) start |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
505 |
else graph.maximals.map(graph.get_node).map(_.end).maxBy(_.unix_epoch) |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
506 |
|
79819 | 507 |
def duration: Time = end - start |
79109
c1255d9870f6
clarified heuristics toString;
Fabian Huch <huch@in.tum.de>
parents:
79108
diff
changeset
|
508 |
def message: String = "Estimated " + duration.message_hms + " build time with " + generator |
79183
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
509 |
|
79819 | 510 |
def deviation(other: Schedule): Time = Time.ms((end - other.end).ms.abs) |
79192
5db03f9276e2
clarified: build schedules may be outdated when empty, after some time, or due to build progress;
Fabian Huch <huch@in.tum.de>
parents:
79191
diff
changeset
|
511 |
|
5db03f9276e2
clarified: build schedules may be outdated when empty, after some time, or due to build progress;
Fabian Huch <huch@in.tum.de>
parents:
79191
diff
changeset
|
512 |
def num_built(state: Build_Process.State): Int = graph.keys.count(state.results.contains) |
5db03f9276e2
clarified: build schedules may be outdated when empty, after some time, or due to build progress;
Fabian Huch <huch@in.tum.de>
parents:
79191
diff
changeset
|
513 |
def elapsed(): Time = Time.now() - start.time |
79293 | 514 |
def is_empty: Boolean = graph.is_empty |
79289
7c1faa16554b
add delay and limit options for when schedule is considered outdated;
Fabian Huch <huch@in.tum.de>
parents:
79288
diff
changeset
|
515 |
def is_outdated(options: Options, state: Build_Process.State): Boolean = |
79293 | 516 |
if (is_empty) true |
79289
7c1faa16554b
add delay and limit options for when schedule is considered outdated;
Fabian Huch <huch@in.tum.de>
parents:
79288
diff
changeset
|
517 |
else { |
7c1faa16554b
add delay and limit options for when schedule is considered outdated;
Fabian Huch <huch@in.tum.de>
parents:
79288
diff
changeset
|
518 |
num_built(state) > options.int("build_schedule_outdated_limit") && |
7c1faa16554b
add delay and limit options for when schedule is considered outdated;
Fabian Huch <huch@in.tum.de>
parents:
79288
diff
changeset
|
519 |
elapsed() > options.seconds("build_schedule_outdated_delay") |
7c1faa16554b
add delay and limit options for when schedule is considered outdated;
Fabian Huch <huch@in.tum.de>
parents:
79288
diff
changeset
|
520 |
} |
79183
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
521 |
|
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
522 |
def next(hostname: String, state: Build_Process.State): List[String] = |
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
523 |
for { |
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
524 |
task <- state.next_ready |
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
525 |
node = graph.get_node(task.name) |
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
526 |
if hostname == node.node_info.hostname |
79191
ee405c40db72
store previous build jobs in graph so schedules can be used later in the build process;
Fabian Huch <huch@in.tum.de>
parents:
79190
diff
changeset
|
527 |
if graph.imm_preds(node.job_name).subsetOf(state.results.keySet) |
79183
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
528 |
} yield task.name |
79193
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
529 |
|
79896
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
530 |
def exists_next(hostname: String, state: Build_Process.State): Boolean = |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
531 |
next(hostname, state).nonEmpty |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
532 |
|
79193
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
533 |
def update(state: Build_Process.State): Schedule = { |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
534 |
val start1 = Date.now() |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
535 |
|
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
536 |
def shift_elapsed(graph: Schedule.Graph, name: String): Schedule.Graph = |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
537 |
graph.map_node(name, { node => |
79819 | 538 |
val elapsed = start1 - state.running(name).start_date |
79193
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
539 |
node.copy(duration = node.duration - elapsed) |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
540 |
}) |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
541 |
|
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
542 |
def shift_starts(graph: Schedule.Graph, name: String): Schedule.Graph = |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
543 |
graph.map_node(name, { node => |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
544 |
val starts = start1 :: graph.imm_preds(node.job_name).toList.map(graph.get_node(_).end) |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
545 |
node.copy(start = starts.max(Date.Ordering)) |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
546 |
}) |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
547 |
|
79828
5969ead9f900
clarified data representation: more uniform treatment of State.Pending vs. State.Running;
wenzelm
parents:
79819
diff
changeset
|
548 |
val graph0 = |
5969ead9f900
clarified data representation: more uniform treatment of State.Pending vs. State.Running;
wenzelm
parents:
79819
diff
changeset
|
549 |
state.running.keys.foldLeft(graph.restrict(state.pending.isDefinedAt))(shift_elapsed) |
79193
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
550 |
val graph1 = graph0.topological_order.foldLeft(graph0)(shift_starts) |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
551 |
|
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
552 |
copy(start = start1, graph = graph1) |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
553 |
} |
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
554 |
} |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
555 |
|
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
556 |
case class State(build_state: Build_Process.State, current_time: Time, finished: Schedule) { |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
557 |
def start(config: Config): State = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
558 |
copy(build_state = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
559 |
build_state.copy(running = build_state.running + |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
560 |
(config.job_name -> config.job_of(current_time)))) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
561 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
562 |
def step(timing_data: Timing_Data): State = { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
563 |
val remaining = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
564 |
build_state.running.values.toList.map { job => |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
565 |
val elapsed = current_time - job.start_date.time |
79026
6585acdd6505
clarified time estimation: does not use config;
Fabian Huch <huch@in.tum.de>
parents:
79025
diff
changeset
|
566 |
val threads = timing_data.host_infos.num_threads(job.node_info) |
6585acdd6505
clarified time estimation: does not use config;
Fabian Huch <huch@in.tum.de>
parents:
79025
diff
changeset
|
567 |
val predicted = timing_data.estimate(job.name, job.node_info.hostname, threads) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
568 |
val remaining = if (elapsed > predicted) Time.zero else predicted - elapsed |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
569 |
job -> remaining |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
570 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
571 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
572 |
if (remaining.isEmpty) error("Schedule step without running sessions") |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
573 |
else { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
574 |
val (job, elapsed) = remaining.minBy(_._2.ms) |
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
575 |
val now = current_time + elapsed |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
576 |
val node = Schedule.Node(job.name, job.node_info, job.start_date, now - job.start_date.time) |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
577 |
|
79191
ee405c40db72
store previous build jobs in graph so schedules can be used later in the build process;
Fabian Huch <huch@in.tum.de>
parents:
79190
diff
changeset
|
578 |
val host_preds = |
ee405c40db72
store previous build jobs in graph so schedules can be used later in the build process;
Fabian Huch <huch@in.tum.de>
parents:
79190
diff
changeset
|
579 |
for { |
79594 | 580 |
name <- finished.graph.keys |
581 |
pred_node = finished.graph.get_node(name) |
|
79236
6dc4fd89987f
filter predecessors properly (amending ee405c40db72);
Fabian Huch <huch@in.tum.de>
parents:
79235
diff
changeset
|
582 |
if pred_node.node_info.hostname == job.node_info.hostname |
6dc4fd89987f
filter predecessors properly (amending ee405c40db72);
Fabian Huch <huch@in.tum.de>
parents:
79235
diff
changeset
|
583 |
if pred_node.end.time <= node.start.time |
79191
ee405c40db72
store previous build jobs in graph so schedules can be used later in the build process;
Fabian Huch <huch@in.tum.de>
parents:
79190
diff
changeset
|
584 |
} yield name |
ee405c40db72
store previous build jobs in graph so schedules can be used later in the build process;
Fabian Huch <huch@in.tum.de>
parents:
79190
diff
changeset
|
585 |
val build_preds = |
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
586 |
build_state.sessions.graph.imm_preds(job.name).filter(finished.graph.defined) |
79191
ee405c40db72
store previous build jobs in graph so schedules can be used later in the build process;
Fabian Huch <huch@in.tum.de>
parents:
79190
diff
changeset
|
587 |
val preds = build_preds ++ host_preds |
ee405c40db72
store previous build jobs in graph so schedules can be used later in the build process;
Fabian Huch <huch@in.tum.de>
parents:
79190
diff
changeset
|
588 |
|
ee405c40db72
store previous build jobs in graph so schedules can be used later in the build process;
Fabian Huch <huch@in.tum.de>
parents:
79190
diff
changeset
|
589 |
val graph = preds.foldLeft(finished.graph.new_node(job.name, node))(_.add_edge(_, job.name)) |
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
590 |
|
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
591 |
val build_state1 = build_state.remove_running(job.name).remove_pending(job.name) |
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
592 |
State(build_state1, now, finished.copy(graph = graph)) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
593 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
594 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
595 |
|
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
596 |
def is_finished: Boolean = build_state.pending.isEmpty && build_state.running.isEmpty |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
597 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
598 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
599 |
trait Scheduler { def schedule(build_state: Build_Process.State): Schedule } |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
600 |
|
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
601 |
trait Priority_Rule { def select_next(state: Build_Process.State): List[Config] } |
78931
26841d3c568c
performance tuning for build schedule: explicit schedule generation, without mixing heuristics;
Fabian Huch <huch@in.tum.de>
parents:
78930
diff
changeset
|
602 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
603 |
case class Generation_Scheme( |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
604 |
priority_rule: Priority_Rule, |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
605 |
timing_data: Timing_Data, |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
606 |
build_uuid: String |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
607 |
) extends Scheduler { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
608 |
def schedule(build_state: Build_Process.State): Schedule = { |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
609 |
@tailrec |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
610 |
def simulate(state: State): State = |
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
611 |
if (state.is_finished) state |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
612 |
else { |
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
613 |
val state1 = |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
614 |
priority_rule |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
615 |
.select_next(state.build_state) |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
616 |
.foldLeft(state)(_.start(_)) |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
617 |
.step(timing_data) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
618 |
simulate(state1) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
619 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
620 |
|
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
621 |
val start = Date.now() |
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
622 |
val name = "generation scheme (" + priority_rule + ")" |
79109
c1255d9870f6
clarified heuristics toString;
Fabian Huch <huch@in.tum.de>
parents:
79108
diff
changeset
|
623 |
val end_state = |
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
624 |
simulate(State(build_state, start.time, Schedule(build_uuid, name, start, Graph.empty))) |
79073
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
625 |
|
b3fee0dafd72
generated build schedule explicitly (e.g., for further analysis);
Fabian Huch <huch@in.tum.de>
parents:
79064
diff
changeset
|
626 |
end_state.finished |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
627 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
628 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
629 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
630 |
case class Optimizer(schedulers: List[Scheduler]) extends Scheduler { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
631 |
require(schedulers.nonEmpty) |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
632 |
|
79805
45198ea3f0b3
parallelize schedule optimization;
Fabian Huch <huch@in.tum.de>
parents:
79785
diff
changeset
|
633 |
def schedule(state: Build_Process.State): Schedule = { |
45198ea3f0b3
parallelize schedule optimization;
Fabian Huch <huch@in.tum.de>
parents:
79785
diff
changeset
|
634 |
def main(scheduler: Scheduler): Schedule = scheduler.schedule(state) |
45198ea3f0b3
parallelize schedule optimization;
Fabian Huch <huch@in.tum.de>
parents:
79785
diff
changeset
|
635 |
Par_List.map(main, schedulers).minBy(_.duration.ms) |
45198ea3f0b3
parallelize schedule optimization;
Fabian Huch <huch@in.tum.de>
parents:
79785
diff
changeset
|
636 |
} |
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
637 |
} |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
638 |
|
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
639 |
|
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
640 |
/* priority rules */ |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
641 |
|
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
642 |
class Default_Heuristic(host_infos: Host_Infos, options: Options) extends Priority_Rule { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
643 |
override def toString: String = "default heuristic" |
79107
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
644 |
|
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
645 |
def next_jobs(resources: Resources, sorted_jobs: List[String], host: Host): List[Config] = |
79650 | 646 |
sorted_jobs.zip(resources.unused_nodes(host, host.max_threads(options))).map(Config(_, _)) |
79107
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
647 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
648 |
def select_next(state: Build_Process.State): List[Config] = { |
79107
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
649 |
val sorted_jobs = state.next_ready.sortBy(_.name)(state.sessions.ordering).map(_.name) |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
650 |
val resources = host_infos.available(state) |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
651 |
|
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
652 |
host_infos.hosts.foldLeft((sorted_jobs, List.empty[Config])) { |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
653 |
case ((jobs, res), host) => |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
654 |
val configs = next_jobs(resources, jobs, host) |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
655 |
val config_jobs = configs.map(_.job_name).toSet |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
656 |
(jobs.filterNot(config_jobs.contains), configs ::: res) |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
657 |
}._2 |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
658 |
} |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
659 |
} |
f5a2f956b531
add heuristic for non-scheduled (standard) build behaviour;
Fabian Huch <huch@in.tum.de>
parents:
79106
diff
changeset
|
660 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
661 |
object Path_Time_Heuristic { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
662 |
sealed trait Critical_Criterion |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
663 |
case class Absolute_Time(time: Time) extends Critical_Criterion { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
664 |
override def toString: String = "absolute time (" + time.message_hms + ")" |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
665 |
} |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
666 |
case class Relative_Time(factor: Double) extends Critical_Criterion { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
667 |
override def toString: String = "relative time (" + factor + ")" |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
668 |
} |
78931
26841d3c568c
performance tuning for build schedule: explicit schedule generation, without mixing heuristics;
Fabian Huch <huch@in.tum.de>
parents:
78930
diff
changeset
|
669 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
670 |
sealed trait Parallel_Strategy |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
671 |
case class Fixed_Thread(threads: Int) extends Parallel_Strategy { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
672 |
override def toString: String = "fixed threads (" + threads + ")" |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
673 |
} |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
674 |
case class Time_Based_Threads(f: Time => Int) extends Parallel_Strategy { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
675 |
override def toString: String = "time based threads" |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
676 |
} |
78931
26841d3c568c
performance tuning for build schedule: explicit schedule generation, without mixing heuristics;
Fabian Huch <huch@in.tum.de>
parents:
78930
diff
changeset
|
677 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
678 |
sealed trait Host_Criterion |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
679 |
case object Critical_Nodes extends Host_Criterion { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
680 |
override def toString: String = "per critical node" |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
681 |
} |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
682 |
case class Fixed_Fraction(fraction: Double) extends Host_Criterion { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
683 |
override def toString: String = "fixed fraction (" + fraction + ")" |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
684 |
} |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
685 |
case class Host_Speed(min_factor: Double) extends Host_Criterion { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
686 |
override def toString: String = "host speed (" + min_factor + ")" |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
687 |
} |
78931
26841d3c568c
performance tuning for build schedule: explicit schedule generation, without mixing heuristics;
Fabian Huch <huch@in.tum.de>
parents:
78930
diff
changeset
|
688 |
} |
26841d3c568c
performance tuning for build schedule: explicit schedule generation, without mixing heuristics;
Fabian Huch <huch@in.tum.de>
parents:
78930
diff
changeset
|
689 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
690 |
class Path_Time_Heuristic( |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
691 |
is_critical: Path_Time_Heuristic.Critical_Criterion, |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
692 |
parallel_threads: Path_Time_Heuristic.Parallel_Strategy, |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
693 |
host_criterion: Path_Time_Heuristic.Host_Criterion, |
79027
d08fb157e300
use proper max threads (limited by available hardware) in heuristics;
Fabian Huch <huch@in.tum.de>
parents:
79026
diff
changeset
|
694 |
timing_data: Timing_Data, |
d08fb157e300
use proper max threads (limited by available hardware) in heuristics;
Fabian Huch <huch@in.tum.de>
parents:
79026
diff
changeset
|
695 |
sessions_structure: Sessions.Structure, |
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
696 |
max_threads_limit: Int = 8 |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
697 |
) extends Priority_Rule { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
698 |
import Path_Time_Heuristic.* |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
699 |
|
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
700 |
override def toString: Node = { |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
701 |
val params = |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
702 |
List( |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
703 |
"critical: " + is_critical, |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
704 |
"parallel: " + parallel_threads, |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
705 |
"fast hosts: " + host_criterion) |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
706 |
"path time heuristic (" + params.mkString(", ") + ")" |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
707 |
} |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
708 |
|
78929
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
709 |
/* pre-computed properties for efficient heuristic */ |
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
710 |
val host_infos: Host_Infos = timing_data.host_infos |
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
711 |
val ordered_hosts: List[Host] = host_infos.hosts.sorted(host_infos.host_speeds) |
78929
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
712 |
|
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
713 |
val max_threads: Int = host_infos.hosts.map(_.num_cpus).max min max_threads_limit |
79102 | 714 |
|
78929
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
715 |
type Node = String |
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
716 |
val build_graph: Graph[Node, Sessions.Info] = sessions_structure.build_graph |
79101
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
717 |
|
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
718 |
val minimals: List[Node] = build_graph.minimals |
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
719 |
val maximals: List[Node] = build_graph.maximals |
79101
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
720 |
|
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
721 |
def all_preds(node: Node): Set[Node] = build_graph.all_preds(List(node)).toSet |
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
722 |
val maximals_all_preds: Map[Node, Set[Node]] = |
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
723 |
maximals.map(node => node -> all_preds(node)).toMap |
78929
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
724 |
|
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
725 |
val best_threads: Map[Node, Int] = |
79594 | 726 |
build_graph.keys.map(node => node -> timing_data.best_threads(node, max_threads)).toMap |
727 |
||
79102 | 728 |
def best_time(node: Node): Time = { |
729 |
val host = ordered_hosts.last |
|
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
730 |
val threads = best_threads(node) min host.num_cpus |
79103
883f61f0beda
clarified build schedule host: more operations;
Fabian Huch <huch@in.tum.de>
parents:
79102
diff
changeset
|
731 |
timing_data.estimate(node, host.name, threads) |
79102 | 732 |
} |
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
733 |
val best_times: Map[Node, Time] = build_graph.keys.map(node => node -> best_time(node)).toMap |
78929
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
734 |
|
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
735 |
val succs_max_time_ms: Map[Node, Long] = build_graph.node_height(best_times(_).ms) |
79101
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
736 |
def max_time(node: Node): Time = Time.ms(succs_max_time_ms(node)) + best_times(node) |
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
737 |
def max_time(task: Build_Process.Task): Time = max_time(task.name) |
78929
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
738 |
|
79101
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
739 |
def path_times(minimals: List[Node]): Map[Node, Time] = { |
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
740 |
def time_ms(node: Node): Long = best_times(node).ms |
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
741 |
val path_times_ms = build_graph.reachable_length(time_ms, build_graph.imm_succs, minimals) |
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
742 |
path_times_ms.view.mapValues(Time.ms).toMap |
78929
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
743 |
} |
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
744 |
|
79101
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
745 |
def path_max_times(minimals: List[Node]): Map[Node, Time] = |
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
746 |
path_times(minimals).toList.map((node, time) => node -> (time + max_time(node))).toMap |
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
747 |
|
79713
d3a26436e679
tuned signature: more types, fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79703
diff
changeset
|
748 |
val node_degrees: Map[Node, Int] = |
79594 | 749 |
build_graph.keys.map(node => node -> build_graph.imm_succs(node).size).toMap |
78972
7a39f151e9a7
proper parallel paths for timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
78971
diff
changeset
|
750 |
|
79594 | 751 |
def parallel_paths( |
752 |
running: List[(Node, Time)], |
|
753 |
nodes: Set[Node] = build_graph.keys.toSet, |
|
754 |
max: Int = Int.MaxValue |
|
755 |
): Int = |
|
756 |
if (nodes.nonEmpty && nodes.map(node_degrees.apply).max > max) max |
|
757 |
else { |
|
758 |
def start(node: Node): (Node, Time) = node -> best_times(node) |
|
759 |
||
760 |
def pass_time(elapsed: Time)(node: Node, time: Time): (Node, Time) = |
|
761 |
node -> (time - elapsed) |
|
78972
7a39f151e9a7
proper parallel paths for timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
78971
diff
changeset
|
762 |
|
79594 | 763 |
def parallel_paths(running: Map[Node, Time]): (Int, Map[Node, Time]) = |
764 |
if (running.size >= max) (max, running) |
|
765 |
else if (running.isEmpty) (0, running) |
|
766 |
else { |
|
767 |
def get_next(node: Node): List[Node] = |
|
768 |
build_graph.imm_succs(node).intersect(nodes).filter( |
|
769 |
build_graph.imm_preds(_).intersect(running.keySet) == Set(node)).toList |
|
78972
7a39f151e9a7
proper parallel paths for timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
78971
diff
changeset
|
770 |
|
79594 | 771 |
val (next, elapsed) = running.minBy(_._2.ms) |
772 |
val (remaining, finished) = |
|
773 |
running.toList.map(pass_time(elapsed)).partition(_._2 > Time.zero) |
|
78972
7a39f151e9a7
proper parallel paths for timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
78971
diff
changeset
|
774 |
|
79594 | 775 |
val running1 = |
776 |
remaining.map(pass_time(elapsed)).toMap ++ |
|
777 |
finished.map(_._1).flatMap(get_next).map(start) |
|
778 |
val (res, running2) = parallel_paths(running1) |
|
779 |
(res max running.size, running2) |
|
780 |
} |
|
781 |
||
782 |
parallel_paths(running.toMap)._1 |
|
783 |
} |
|
78929
df323f23dfde
performance tuning for timing heuristic: pre-calculate graph operations;
Fabian Huch <huch@in.tum.de>
parents:
78928
diff
changeset
|
784 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
785 |
def select_next(state: Build_Process.State): List[Config] = { |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
786 |
val resources = host_infos.available(state) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
787 |
|
79594 | 788 |
def best_threads(task: Build_Process.Task): Int = this.best_threads(task.name) |
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
789 |
|
79028
6bada416ba55
clarified timing data operations: proper estimation (instead of known points);
Fabian Huch <huch@in.tum.de>
parents:
79027
diff
changeset
|
790 |
val rev_ordered_hosts = ordered_hosts.reverse.map(_ -> max_threads) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
791 |
|
79180
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
792 |
val available_nodes = |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
793 |
host_infos.available(state.copy(running = Map.empty)) |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
794 |
.unused_nodes(max_threads) |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
795 |
.sortBy(node => host_infos.the_host(node))(host_infos.host_speeds).reverse |
79179
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
796 |
|
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
797 |
def remaining_time(node: Node): (Node, Time) = |
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
798 |
state.running.get(node) match { |
79594 | 799 |
case None => node -> best_times(node) |
79179
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
800 |
case Some(job) => |
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
801 |
val estimate = |
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
802 |
timing_data.estimate(job.name, job.node_info.hostname, |
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
803 |
host_infos.num_threads(job.node_info)) |
79184 | 804 |
node -> ((Time.now() - job.start_date.time + estimate) max Time.zero) |
79179
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
805 |
} |
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
806 |
|
79101
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
807 |
val next_sorted = state.next_ready.sortBy(max_time(_).ms).reverse |
79594 | 808 |
val is_parallelizable = |
809 |
available_nodes.length >= parallel_paths( |
|
810 |
state.ready.map(_.name).map(remaining_time), |
|
811 |
max = available_nodes.length + 1) |
|
79088 | 812 |
|
79594 | 813 |
if (is_parallelizable) { |
79101
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
814 |
val all_tasks = next_sorted.map(task => (task, best_threads(task), best_threads(task))) |
79028
6bada416ba55
clarified timing data operations: proper estimation (instead of known points);
Fabian Huch <huch@in.tum.de>
parents:
79027
diff
changeset
|
815 |
resources.try_allocate_tasks(rev_ordered_hosts, all_tasks)._1 |
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
816 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
817 |
else { |
79110
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
818 |
def is_critical(time: Time): Boolean = |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
819 |
this.is_critical match { |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
820 |
case Absolute_Time(threshold) => time > threshold |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
821 |
case Relative_Time(factor) => time > minimals.map(max_time).maxBy(_.ms).scale(factor) |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
822 |
} |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
823 |
|
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
824 |
val critical_minimals = state.ready.filter(task => is_critical(max_time(task))).map(_.name) |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
825 |
val critical_nodes = |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
826 |
path_max_times(critical_minimals).filter((_, time) => is_critical(time)).keySet |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
827 |
|
79101
4e47b34fbb8e
clarified graph operations in timing heuristic;
Fabian Huch <huch@in.tum.de>
parents:
79091
diff
changeset
|
828 |
val (critical, other) = next_sorted.partition(task => critical_nodes.contains(task.name)) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
829 |
|
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
830 |
val critical_tasks = critical.map(task => (task, best_threads(task), best_threads(task))) |
79110
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
831 |
|
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
832 |
def parallel_threads(task: Build_Process.Task): Int = |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
833 |
this.parallel_threads match { |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
834 |
case Fixed_Thread(threads) => threads |
79594 | 835 |
case Time_Based_Threads(f) => f(best_times(task.name)) |
79110
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
836 |
} |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
837 |
|
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
838 |
val other_tasks = other.map(task => (task, parallel_threads(task), best_threads(task))) |
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
839 |
|
79179
7ed43417770f
proper parallel paths: factor in elapsed time;
Fabian Huch <huch@in.tum.de>
parents:
79178
diff
changeset
|
840 |
val max_critical_parallel = |
79594 | 841 |
parallel_paths(critical_minimals.map(remaining_time), critical_nodes) |
79180
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
842 |
val max_critical_hosts = |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
843 |
available_nodes.take(max_critical_parallel).map(_.hostname).distinct.length |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
844 |
|
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
845 |
val split = |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
846 |
this.host_criterion match { |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
847 |
case Critical_Nodes => max_critical_hosts |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
848 |
case Fixed_Fraction(fraction) => |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
849 |
((rev_ordered_hosts.length * fraction).ceil.toInt max 1) min max_critical_hosts |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
850 |
case Host_Speed(min_factor) => |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
851 |
val best = rev_ordered_hosts.head._1.benchmark_score |
79180
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
852 |
val num_fast = |
79880
a3d53f2bc41d
clarified build schedule host: proper module;
Fabian Huch <huch@in.tum.de>
parents:
79879
diff
changeset
|
853 |
rev_ordered_hosts.count(_._1.benchmark_score >= best * min_factor) |
79180
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
854 |
num_fast min max_critical_hosts |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
855 |
} |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
856 |
|
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
857 |
val (critical_hosts, other_hosts) = rev_ordered_hosts.splitAt(split) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
858 |
|
78971
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
859 |
val (configs1, resources1) = resources.try_allocate_tasks(critical_hosts, critical_tasks) |
f930d24f1548
scheduled build: allocate cpus more aggressively, to avoid idle threads;
Fabian Huch <huch@in.tum.de>
parents:
78970
diff
changeset
|
860 |
val (configs2, _) = resources1.try_allocate_tasks(other_hosts, other_tasks) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
861 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
862 |
configs1 ::: configs2 |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
863 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
864 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
865 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
866 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
867 |
|
79290
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
868 |
/* master and slave processes for scheduled build */ |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
869 |
|
79290
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
870 |
class Scheduled_Build_Process( |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
871 |
build_context: Build.Context, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
872 |
build_progress: Progress, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
873 |
server: SSH.Server, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
874 |
) extends Build_Process(build_context, build_progress, server) { |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
875 |
/* global state: internal var vs. external database */ |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
876 |
|
79649
981cd49a3f90
more explicit types --- fewer warnings in IntelliJ IDEA;
wenzelm
parents:
79648
diff
changeset
|
877 |
protected var _schedule: Schedule = Schedule.init(build_uuid) |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
878 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
879 |
override protected def synchronized_database[A](label: String)(body: => A): A = |
79527
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
880 |
synchronized { |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
881 |
_build_database match { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
882 |
case None => body |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
883 |
case Some(db) => |
79761 | 884 |
db.transaction_lock(Build_Schedule.private_data.all_tables, label = label) { |
79871
630a82f87310
database performance tuning: pull changed entries only, based on recorded updates (see 98d65411bfdb);
wenzelm
parents:
79867
diff
changeset
|
885 |
val old_state = |
630a82f87310
database performance tuning: pull changed entries only, based on recorded updates (see 98d65411bfdb);
wenzelm
parents:
79867
diff
changeset
|
886 |
Build_Process.private_data.pull_database(db, build_id, worker_uuid, _state) |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
887 |
val old_schedule = Build_Schedule.private_data.pull_schedule(db, _schedule) |
79527
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
888 |
_state = old_state |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
889 |
_schedule = old_schedule |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
890 |
val res = body |
79527
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
891 |
_state = |
79850
8ffcaf563745
maintain short build_id vs. build_uuid, similar to Database_Progress context/context_uuid;
wenzelm
parents:
79844
diff
changeset
|
892 |
Build_Process.private_data.update_database( |
8ffcaf563745
maintain short build_id vs. build_uuid, similar to Database_Progress context/context_uuid;
wenzelm
parents:
79844
diff
changeset
|
893 |
db, build_id, worker_uuid, _state, old_state) |
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
894 |
_schedule = Build_Schedule.private_data.update_schedule(db, _schedule, old_schedule) |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
895 |
res |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
896 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
897 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
898 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
899 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
900 |
|
79290
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
901 |
/* build process */ |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
902 |
|
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
903 |
override def next_node_info(state: Build_Process.State, session_name: String): Node_Info = |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
904 |
_schedule.graph.get_node(session_name).node_info |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
905 |
|
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
906 |
override def next_jobs(state: Build_Process.State): List[String] = |
79294
ae0a2cb42b05
continue build while waiting for updated schedule;
Fabian Huch <huch@in.tum.de>
parents:
79293
diff
changeset
|
907 |
if (progress.stopped || _schedule.is_empty) Nil else _schedule.next(hostname, state) |
79896
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
908 |
|
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
909 |
private var _build_tick: Long = 0L |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
910 |
|
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
911 |
protected override def build_action(): Boolean = |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
912 |
Isabelle_Thread.interrupt_handler(_ => progress.stop()) { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
913 |
val received = build_receive(n => n.channel == Build_Process.private_data.channel) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
914 |
val ready = received.contains(Build_Schedule.private_data.channel_ready(hostname)) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
915 |
|
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
916 |
val finished = synchronized { _state.finished_running() } |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
917 |
|
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
918 |
def sleep: Boolean = { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
919 |
build_delay.sleep() |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
920 |
val expired = synchronized { _build_tick += 1; _build_tick % build_expire == 0 } |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
921 |
expired || ready || progress.stopped |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
922 |
} |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
923 |
|
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
924 |
finished || sleep |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
925 |
} |
79290
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
926 |
} |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
927 |
|
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
928 |
abstract class Scheduler_Build_Process( |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
929 |
build_context: Build.Context, |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
930 |
build_progress: Progress, |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
931 |
server: SSH.Server, |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
932 |
) extends Scheduled_Build_Process(build_context, build_progress, server) { |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
933 |
require(build_context.master) |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
934 |
|
79527
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
935 |
for (db <- _build_database) { |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
936 |
Build_Schedule.private_data.transaction_lock( |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
937 |
db, |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
938 |
create = true, |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
939 |
label = "Scheduler_Build_Process.create" |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
940 |
) { Build_Schedule.private_data.clean_build_schedules(db) } |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
941 |
db.vacuum(Build_Schedule.private_data.tables.list) |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
942 |
} |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
943 |
|
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
944 |
|
79290
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
945 |
def init_scheduler(timing_data: Timing_Data): Scheduler |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
946 |
|
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
947 |
|
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
948 |
/* global resources with common close() operation */ |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
949 |
|
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
950 |
private final lazy val _log_store: Build_Log.Store = Build_Log.store(build_options) |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
951 |
private final lazy val _log_database: SQL.Database = |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
952 |
try { |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
953 |
val db = _log_store.open_database(server = this.server) |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
954 |
_log_store.init_database(db) |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
955 |
db |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
956 |
} |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
957 |
catch { case exn: Throwable => close(); throw exn } |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
958 |
|
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
959 |
override def close(): Unit = { |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
960 |
Option(_log_database).foreach(_.close()) |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
961 |
super.close() |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
962 |
} |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
963 |
|
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
964 |
|
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
965 |
/* previous results via build log */ |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
966 |
|
79765
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
967 |
override def open_build_cluster(): Build_Cluster = { |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
968 |
val build_cluster = super.open_build_cluster() |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
969 |
build_cluster.init() |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
970 |
|
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
971 |
Build_Benchmark.benchmark_requirements(build_options) |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
972 |
|
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
973 |
if (build_context.worker) { |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
974 |
val benchmark_options = build_options.string("build_hostname") = hostname |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
975 |
Build_Benchmark.benchmark(benchmark_options, progress) |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
976 |
} |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
977 |
|
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
978 |
build_cluster.benchmark() |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
979 |
} |
a478fc5cd5bd
partially revert f1f08ca40d96: benchmark data needs to be present before timing data is loaded;
Fabian Huch <huch@in.tum.de>
parents:
79761
diff
changeset
|
980 |
|
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
981 |
private val timing_data: Timing_Data = { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
982 |
val cluster_hosts: List[Build_Cluster.Host] = |
79878 | 983 |
if (!build_context.worker) build_context.build_hosts |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
984 |
else { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
985 |
val local_build_host = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
986 |
Build_Cluster.Host( |
79616 | 987 |
hostname, jobs = build_context.jobs, numa = build_context.numa_shuffling) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
988 |
local_build_host :: build_context.build_hosts |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
989 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
990 |
|
79090
20be5b925720
clarified load vs. apply vs. make;
Fabian Huch <huch@in.tum.de>
parents:
79089
diff
changeset
|
991 |
val host_infos = Host_Infos.load(cluster_hosts, _host_database) |
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
992 |
Timing_Data.load(host_infos, _log_database, build_context.sessions_structure) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
993 |
} |
78928
6c2c60b852e0
move timing data into scheduler for more efficient heuristics (e.g., with pre-calculated values);
Fabian Huch <huch@in.tum.de>
parents:
78888
diff
changeset
|
994 |
private val scheduler = init_scheduler(timing_data) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
995 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
996 |
def write_build_log(results: Build.Results, state: Build_Process.State.Results): Unit = { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
997 |
val sessions = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
998 |
for { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
999 |
(session_name, result) <- state.toList |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1000 |
if !result.current |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1001 |
} yield { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1002 |
val info = build_context.sessions_structure(session_name) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1003 |
val entry = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1004 |
if (!results.cancelled(session_name)) { |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1005 |
val status = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1006 |
if (result.ok) Build_Log.Session_Status.finished |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1007 |
else Build_Log.Session_Status.failed |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1008 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1009 |
Build_Log.Session_Entry( |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1010 |
chapter = info.chapter, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1011 |
groups = info.groups, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1012 |
hostname = Some(result.node_info.hostname), |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1013 |
threads = Some(timing_data.host_infos.num_threads(result.node_info)), |
79892
c793de82db34
track start in build job results (following 9d484c5d3a63), so it can directly be written to build log database;
Fabian Huch <huch@in.tum.de>
parents:
79891
diff
changeset
|
1014 |
start = Some(result.start_date - build_start), |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1015 |
timing = result.process_result.timing, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1016 |
sources = Some(result.output_shasum.digest.toString), |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1017 |
status = Some(status)) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1018 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1019 |
else |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1020 |
Build_Log.Session_Entry( |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1021 |
chapter = info.chapter, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1022 |
groups = info.groups, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1023 |
status = Some(Build_Log.Session_Status.cancelled)) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1024 |
session_name -> entry |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1025 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1026 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1027 |
val settings = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1028 |
Build_Log.Settings.all_settings.map(_.name).map(name => |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1029 |
name -> Isabelle_System.getenv(name)) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1030 |
val props = |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1031 |
List( |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1032 |
Build_Log.Prop.build_id.name -> build_context.build_uuid, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1033 |
Build_Log.Prop.build_engine.name -> build_context.engine.name, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1034 |
Build_Log.Prop.build_host.name -> hostname, |
79891
d8b4bfe82bb5
use inherited build_start, following d9fc2cc37694;
Fabian Huch <huch@in.tum.de>
parents:
79880
diff
changeset
|
1035 |
Build_Log.Prop.build_start.name -> Build_Log.print_date(build_start)) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1036 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1037 |
val meta_info = Build_Log.Meta_Info(props, settings) |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1038 |
val build_info = Build_Log.Build_Info(sessions.toMap) |
79891
d8b4bfe82bb5
use inherited build_start, following d9fc2cc37694;
Fabian Huch <huch@in.tum.de>
parents:
79880
diff
changeset
|
1039 |
val log_name = Build_Log.log_filename(engine = build_context.engine.name, date = build_start) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1040 |
|
79062
6977fb0153fb
clarified modules: Build_Log.private_data provides raw data access without transaction_lock;
wenzelm
parents:
79042
diff
changeset
|
1041 |
Build_Log.private_data.update_sessions( |
6977fb0153fb
clarified modules: Build_Log.private_data provides raw data access without transaction_lock;
wenzelm
parents:
79042
diff
changeset
|
1042 |
_log_database, _log_store.cache.compress, log_name.file_name, build_info) |
6977fb0153fb
clarified modules: Build_Log.private_data provides raw data access without transaction_lock;
wenzelm
parents:
79042
diff
changeset
|
1043 |
Build_Log.private_data.update_meta_info(_log_database, log_name.file_name, meta_info) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1044 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1045 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1046 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1047 |
/* build process */ |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1048 |
|
78969
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1049 |
def is_current(state: Build_Process.State, session_name: String): Boolean = |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1050 |
state.ancestor_results(session_name) match { |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1051 |
case Some(ancestor_results) if ancestor_results.forall(_.current) => |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1052 |
val sources_shasum = state.sessions(session_name).sources_shasum |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1053 |
|
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1054 |
val input_shasum = |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1055 |
if (ancestor_results.isEmpty) ML_Process.bootstrap_shasum() |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1056 |
else SHA1.flat_shasum(ancestor_results.map(_.output_shasum)) |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1057 |
|
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1058 |
val store_heap = |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1059 |
build_context.build_heap || Sessions.is_pure(session_name) || |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1060 |
state.sessions.iterator.exists(_.ancestors.contains(session_name)) |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1061 |
|
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1062 |
store.check_output( |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1063 |
_database_server, session_name, |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1064 |
session_options = build_context.sessions_structure(session_name).options, |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1065 |
sources_shasum = sources_shasum, |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1066 |
input_shasum = input_shasum, |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1067 |
fresh_build = build_context.fresh_build, |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1068 |
store_heap = store_heap)._1 |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1069 |
case _ => false |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1070 |
} |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1071 |
|
79192
5db03f9276e2
clarified: build schedules may be outdated when empty, after some time, or due to build progress;
Fabian Huch <huch@in.tum.de>
parents:
79191
diff
changeset
|
1072 |
override def next_jobs(state: Build_Process.State): List[String] = |
79290
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
1073 |
if (progress.stopped) state.next_ready.map(_.name) |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
1074 |
else if (!_schedule.is_outdated(build_options, state)) _schedule.next(hostname, state) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1075 |
else { |
79020
ef76705bf402
clarified ready vs. next ready;
Fabian Huch <huch@in.tum.de>
parents:
79019
diff
changeset
|
1076 |
val current = state.next_ready.filter(task => is_current(state, task.name)) |
79187 | 1077 |
if (current.nonEmpty) current.map(_.name) |
78969
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1078 |
else { |
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1079 |
val start = Time.now() |
79193
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
1080 |
|
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
1081 |
val new_schedule = scheduler.schedule(state).update(state) |
79193
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
1082 |
val schedule = |
79293 | 1083 |
if (_schedule.is_empty) new_schedule |
79193
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
1084 |
else List(_schedule.update(state), new_schedule).minBy(_.end)(Date.Ordering) |
d1d6dbab2901
compare previous build schedule with new one, to prevent regressions;
Fabian Huch <huch@in.tum.de>
parents:
79192
diff
changeset
|
1085 |
|
78969
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1086 |
val elapsed = Time.now() - start |
78884 | 1087 |
|
78976 | 1088 |
val timing_msg = if (elapsed.is_relevant) " (took " + elapsed.message + ")" else "" |
79192
5db03f9276e2
clarified: build schedules may be outdated when empty, after some time, or due to build progress;
Fabian Huch <huch@in.tum.de>
parents:
79191
diff
changeset
|
1089 |
progress.echo_if(_schedule.deviation(schedule).minutes > 1, schedule.message + timing_msg) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1090 |
|
79183
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
1091 |
_schedule = schedule |
32d00ec387f4
use schedule directly instead of extra cache;
Fabian Huch <huch@in.tum.de>
parents:
79182
diff
changeset
|
1092 |
_schedule.next(hostname, state) |
78969
1b05c2b10c9f
finalize current sessions before generating schedule;
Fabian Huch <huch@in.tum.de>
parents:
78968
diff
changeset
|
1093 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1094 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1095 |
|
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1096 |
override def run(): Build.Results = { |
79896
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1097 |
val vacuous = |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1098 |
synchronized_database("Scheduler_Build_Process.init") { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1099 |
for (db <- _build_database) Build_Process.private_data.clean_build(db) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1100 |
init_unsynchronized() |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1101 |
_state.pending.isEmpty |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1102 |
} |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1103 |
if (vacuous) { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1104 |
progress.echo_warning("Nothing to build") |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1105 |
stop_build() |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1106 |
Build.Results(build_context) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1107 |
} |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1108 |
else { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1109 |
start_worker() |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1110 |
_build_cluster.start() |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1111 |
|
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1112 |
try { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1113 |
while (!finished()) { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1114 |
synchronized_database("Scheduler_Build_Process.main") { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1115 |
if (progress.stopped) _state.build_running.foreach(_.cancel()) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1116 |
main_unsynchronized() |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1117 |
for { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1118 |
host <- build_context.build_hosts |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1119 |
if _schedule.exists_next(host.name, _state) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1120 |
} build_send(Build_Schedule.private_data.channel_ready(host.name)) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1121 |
} |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1122 |
while(!build_action()) {} |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1123 |
} |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1124 |
} |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1125 |
finally { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1126 |
_build_cluster.stop() |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1127 |
stop_worker() |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1128 |
stop_build() |
79527
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
1129 |
} |
f1f08ca40d96
make build process state protected to avoid copying in subclasses (e.g. for database connections);
Fabian Huch <huch@in.tum.de>
parents:
79502
diff
changeset
|
1130 |
|
79896
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1131 |
val results = synchronized_database("Scheduler_Build_Process.result") { |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1132 |
val results = for ((name, result) <- _state.results) yield name -> result.process_result |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1133 |
Build.Results(build_context, results = results, other_rc = _build_cluster.rc) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1134 |
} |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1135 |
write_build_log(results, _state.results) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1136 |
results |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1137 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1138 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1139 |
} |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1140 |
|
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1141 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1142 |
/** SQL data model of build schedule, extending isabelle_build database */ |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1143 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1144 |
object private_data extends SQL.Data("isabelle_build") { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1145 |
import Build_Process.private_data.{Base, Generic} |
79896
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1146 |
/* tables */ |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1147 |
|
79844
ac40138234ce
tuned signature: more uniform SQL.Data instances;
wenzelm
parents:
79835
diff
changeset
|
1148 |
override lazy val tables: SQL.Tables = |
ac40138234ce
tuned signature: more uniform SQL.Data instances;
wenzelm
parents:
79835
diff
changeset
|
1149 |
SQL.Tables(Schedules.table, Nodes.table) |
ac40138234ce
tuned signature: more uniform SQL.Data instances;
wenzelm
parents:
79835
diff
changeset
|
1150 |
|
ac40138234ce
tuned signature: more uniform SQL.Data instances;
wenzelm
parents:
79835
diff
changeset
|
1151 |
lazy val all_tables: SQL.Tables = |
ac40138234ce
tuned signature: more uniform SQL.Data instances;
wenzelm
parents:
79835
diff
changeset
|
1152 |
SQL.Tables.list(Build_Process.private_data.tables.list ::: tables.list) |
ac40138234ce
tuned signature: more uniform SQL.Data instances;
wenzelm
parents:
79835
diff
changeset
|
1153 |
|
79896
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1154 |
/* notifications */ |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1155 |
|
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1156 |
def channel_ready(hostname: String): SQL.Notification = |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1157 |
SQL.Notification(Build_Process.private_data.channel, payload = hostname) |
2c9c5ae99a09
proper IPC for scheduled builds, following 7ae25372ab04;
Fabian Huch <huch@in.tum.de>
parents:
79895
diff
changeset
|
1158 |
|
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1159 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1160 |
/* schedule */ |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1161 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1162 |
object Schedules { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1163 |
val build_uuid = Generic.build_uuid.make_primary_key |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1164 |
val generator = SQL.Column.string("generator") |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1165 |
val start = SQL.Column.date("start") |
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1166 |
val serial = SQL.Column.long("serial") |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1167 |
|
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1168 |
val table = make_table(List(build_uuid, generator, start, serial), name = "schedules") |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1169 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1170 |
|
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1171 |
def read_serial(db: SQL.Database, build_uuid: String = ""): Long = |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1172 |
db.execute_query_statementO[Long]( |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1173 |
Schedules.table.select(List(Schedules.serial.max), sql = |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1174 |
SQL.where(if_proper(build_uuid, Schedules.build_uuid.equal(build_uuid)))), |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1175 |
_.long(Schedules.serial)).getOrElse(0L) |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1176 |
|
79832
2a3c0a68221c
misc tuning: prefer Build_Process.Update operations;
wenzelm
parents:
79829
diff
changeset
|
1177 |
def read_scheduled_builds_domain(db: SQL.Database): Map[String, Unit] = |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1178 |
db.execute_query_statement( |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1179 |
Schedules.table.select(List(Schedules.build_uuid)), |
79832
2a3c0a68221c
misc tuning: prefer Build_Process.Update operations;
wenzelm
parents:
79829
diff
changeset
|
1180 |
Map.from[String, Unit], res => res.string(Schedules.build_uuid) -> ()) |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1181 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1182 |
def read_schedules(db: SQL.Database, build_uuid: String = ""): List[Schedule] = { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1183 |
val schedules = |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1184 |
db.execute_query_statement(Schedules.table.select(sql = |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1185 |
SQL.where(if_proper(build_uuid, Schedules.build_uuid.equal(build_uuid)))), |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1186 |
List.from[Schedule], |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1187 |
{ res => |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1188 |
val build_uuid = res.string(Schedules.build_uuid) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1189 |
val generator = res.string(Schedules.generator) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1190 |
val start = res.date(Schedules.start) |
79287
b88b6ed06334
read serial for schedules (amending 2039f360);
Fabian Huch <huch@in.tum.de>
parents:
79236
diff
changeset
|
1191 |
val serial = res.long(Schedules.serial) |
b88b6ed06334
read serial for schedules (amending 2039f360);
Fabian Huch <huch@in.tum.de>
parents:
79236
diff
changeset
|
1192 |
Schedule(build_uuid, generator, start, Graph.empty, serial) |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1193 |
}) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1194 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1195 |
for (schedule <- schedules.sortBy(_.start)(Date.Ordering)) yield { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1196 |
val nodes = private_data.read_nodes(db, build_uuid = schedule.build_uuid) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1197 |
schedule.copy(graph = Graph.make(nodes)) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1198 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1199 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1200 |
|
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1201 |
def write_schedule(db: SQL.Database, schedule: Schedule): Unit = { |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1202 |
db.execute_statement( |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1203 |
Schedules.table.delete(Schedules.build_uuid.where_equal(schedule.build_uuid))) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1204 |
db.execute_statement(Schedules.table.insert(), { stmt => |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1205 |
stmt.string(1) = schedule.build_uuid |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1206 |
stmt.string(2) = schedule.generator |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1207 |
stmt.date(3) = schedule.start |
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1208 |
stmt.long(4) = schedule.serial |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1209 |
}) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1210 |
update_nodes(db, schedule.build_uuid, schedule.graph.dest) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1211 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1212 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1213 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1214 |
/* nodes */ |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1215 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1216 |
object Nodes { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1217 |
val build_uuid = Generic.build_uuid.make_primary_key |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1218 |
val name = Generic.name.make_primary_key |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1219 |
val succs = SQL.Column.string("succs") |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1220 |
val hostname = SQL.Column.string("hostname") |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1221 |
val numa_node = SQL.Column.int("numa_node") |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1222 |
val rel_cpus = SQL.Column.string("rel_cpus") |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1223 |
val start = SQL.Column.date("start") |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1224 |
val duration = SQL.Column.long("duration") |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1225 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1226 |
val table = |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1227 |
make_table( |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1228 |
List(build_uuid, name, succs, hostname, numa_node, rel_cpus, start, duration), |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1229 |
name = "schedule_nodes") |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1230 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1231 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1232 |
type Nodes = List[((String, Schedule.Node), List[String])] |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1233 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1234 |
def read_nodes(db: SQL.Database, build_uuid: String = ""): Nodes = { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1235 |
db.execute_query_statement( |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1236 |
Nodes.table.select(sql = |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1237 |
SQL.where(if_proper(build_uuid, Nodes.build_uuid.equal(build_uuid)))), |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1238 |
List.from[((String, Schedule.Node), List[String])], |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1239 |
{ res => |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1240 |
val name = res.string(Nodes.name) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1241 |
val succs = split_lines(res.string(Nodes.succs)) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1242 |
val hostname = res.string(Nodes.hostname) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1243 |
val numa_node = res.get_int(Nodes.numa_node) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1244 |
val rel_cpus = res.string(Nodes.rel_cpus) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1245 |
val start = res.date(Nodes.start) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1246 |
val duration = Time.ms(res.long(Nodes.duration)) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1247 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1248 |
val node_info = Node_Info(hostname, numa_node, isabelle.Host.Range.from(rel_cpus)) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1249 |
((name, Schedule.Node(name, node_info, start, duration)), succs) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1250 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1251 |
) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1252 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1253 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1254 |
def update_nodes(db: SQL.Database, build_uuid: String, nodes: Nodes): Unit = { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1255 |
db.execute_statement(Nodes.table.delete(Nodes.build_uuid.where_equal(build_uuid))) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1256 |
db.execute_batch_statement(Nodes.table.insert(), batch = |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1257 |
for (((name, node), succs) <- nodes) yield { (stmt: SQL.Statement) => |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1258 |
stmt.string(1) = build_uuid |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1259 |
stmt.string(2) = name |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1260 |
stmt.string(3) = cat_lines(succs) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1261 |
stmt.string(4) = node.node_info.hostname |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1262 |
stmt.int(5) = node.node_info.numa_node |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1263 |
stmt.string(6) = isabelle.Host.Range(node.node_info.rel_cpus) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1264 |
stmt.date(7) = node.start |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1265 |
stmt.long(8) = node.duration.ms |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1266 |
}) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1267 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1268 |
|
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1269 |
def pull_schedule(db: SQL.Database, old_schedule: Schedule): Build_Schedule.Schedule = { |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1270 |
val serial_db = read_serial(db) |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1271 |
if (serial_db == old_schedule.serial) old_schedule |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1272 |
else { |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1273 |
read_schedules(db, old_schedule.build_uuid) match { |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1274 |
case Nil => old_schedule |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1275 |
case schedules => Library.the_single(schedules) |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1276 |
} |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1277 |
} |
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1278 |
} |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1279 |
|
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1280 |
def update_schedule(db: SQL.Database, schedule: Schedule, old_schedule: Schedule): Schedule = { |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1281 |
val changed = |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1282 |
schedule.generator != old_schedule.generator || |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1283 |
schedule.start != old_schedule.start || |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1284 |
schedule.graph != old_schedule.graph |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1285 |
|
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1286 |
val schedule1 = |
79835 | 1287 |
if (changed) schedule.copy(serial = old_schedule.next_serial) else schedule |
79190
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1288 |
if (schedule1.serial != schedule.serial) write_schedule(db, schedule1) |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1289 |
|
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1290 |
schedule1 |
2039f3609884
add serial for build schedule to avoid unnecessary db read/writes;
Fabian Huch <huch@in.tum.de>
parents:
79189
diff
changeset
|
1291 |
} |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1292 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1293 |
def remove_schedules(db: SQL.Database, remove: List[String]): Unit = |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1294 |
if (remove.nonEmpty) { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1295 |
val sql = Generic.build_uuid.where_member(remove) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1296 |
db.execute_statement(SQL.MULTI(tables.map(_.delete(sql = sql)))) |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1297 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1298 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1299 |
def clean_build_schedules(db: SQL.Database): Unit = { |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1300 |
val running_builds_domain = |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1301 |
db.execute_query_statement( |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1302 |
Base.table.select(List(Base.build_uuid), sql = SQL.where(Base.stop.undefined)), |
79832
2a3c0a68221c
misc tuning: prefer Build_Process.Update operations;
wenzelm
parents:
79829
diff
changeset
|
1303 |
Map.from[String, Unit], res => res.string(Base.build_uuid) -> ()) |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1304 |
|
79834 | 1305 |
val update = Library.Update.make(read_scheduled_builds_domain(db), running_builds_domain) |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1306 |
|
79832
2a3c0a68221c
misc tuning: prefer Build_Process.Update operations;
wenzelm
parents:
79829
diff
changeset
|
1307 |
remove_schedules(db, update.delete) |
79186
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1308 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1309 |
} |
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1310 |
|
a22440b9cb70
use build database to synchronize build schedule computed on master node (e.g., such that view on cluster is consistent);
Fabian Huch <huch@in.tum.de>
parents:
79185
diff
changeset
|
1311 |
|
79640
7a2b86a48be0
prefer static object, while class is required for "services";
wenzelm
parents:
79639
diff
changeset
|
1312 |
class Build_Engine extends Build.Engine("build_schedule") { |
79699
b88d73810b50
recover "build_database_server" from 1fa1b32b0379: still required, e.g. in build_benchmark;
wenzelm
parents:
79655
diff
changeset
|
1313 |
override def build_options(options: Options, build_cluster: Boolean = false): Options = { |
b88d73810b50
recover "build_database_server" from 1fa1b32b0379: still required, e.g. in build_benchmark;
wenzelm
parents:
79655
diff
changeset
|
1314 |
val options1 = super.build_options(options, build_cluster = build_cluster) |
b88d73810b50
recover "build_database_server" from 1fa1b32b0379: still required, e.g. in build_benchmark;
wenzelm
parents:
79655
diff
changeset
|
1315 |
if (build_cluster) options1 + "build_database_server" else options1 |
b88d73810b50
recover "build_database_server" from 1fa1b32b0379: still required, e.g. in build_benchmark;
wenzelm
parents:
79655
diff
changeset
|
1316 |
} |
b88d73810b50
recover "build_database_server" from 1fa1b32b0379: still required, e.g. in build_benchmark;
wenzelm
parents:
79655
diff
changeset
|
1317 |
|
79108 | 1318 |
def scheduler(timing_data: Timing_Data, context: Build.Context): Scheduler = { |
1319 |
val sessions_structure = context.sessions_structure |
|
79110
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1320 |
|
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1321 |
val is_criticals = |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1322 |
List( |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1323 |
Path_Time_Heuristic.Absolute_Time(Time.minutes(5)), |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1324 |
Path_Time_Heuristic.Absolute_Time(Time.minutes(10)), |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1325 |
Path_Time_Heuristic.Absolute_Time(Time.minutes(20)), |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1326 |
Path_Time_Heuristic.Relative_Time(0.5)) |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1327 |
val parallel_threads = |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1328 |
List( |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1329 |
Path_Time_Heuristic.Fixed_Thread(1), |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1330 |
Path_Time_Heuristic.Time_Based_Threads({ |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1331 |
case time if time < Time.minutes(1) => 1 |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1332 |
case time if time < Time.minutes(5) => 4 |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1333 |
case _ => 8 |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1334 |
})) |
79180
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
1335 |
val machine_splits = |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
1336 |
List( |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
1337 |
Path_Time_Heuristic.Critical_Nodes, |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
1338 |
Path_Time_Heuristic.Fixed_Fraction(0.3), |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
1339 |
Path_Time_Heuristic.Host_Speed(0.9)) |
79110
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1340 |
|
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1341 |
val path_time_heuristics = |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1342 |
for { |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1343 |
is_critical <- is_criticals |
ff68cbfa3550
clarified path time heuristic: configurable parameters for larger search space;
Fabian Huch <huch@in.tum.de>
parents:
79109
diff
changeset
|
1344 |
parallel <- parallel_threads |
79180
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
1345 |
machine_split <- machine_splits |
229f49204603
clarified build heuristics parameters;
Fabian Huch <huch@in.tum.de>
parents:
79179
diff
changeset
|
1346 |
} yield |
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
1347 |
Path_Time_Heuristic(is_critical, parallel, machine_split, timing_data, sessions_structure) |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
1348 |
val default_heuristic = Default_Heuristic(timing_data.host_infos, context.build_options) |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
1349 |
val heuristics = default_heuristic :: path_time_heuristics |
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
1350 |
Optimizer(heuristics.map(Generation_Scheme(_, timing_data, context.build_uuid))) |
79089 | 1351 |
} |
1352 |
||
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1353 |
override def open_build_process( |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1354 |
context: Build.Context, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1355 |
progress: Progress, |
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1356 |
server: SSH.Server |
78928
6c2c60b852e0
move timing data into scheduler for more efficient heuristics (e.g., with pre-calculated values);
Fabian Huch <huch@in.tum.de>
parents:
78888
diff
changeset
|
1357 |
): Build_Process = |
79290
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
1358 |
if (!context.master) new Scheduled_Build_Process(context, progress, server) |
9deadc9d8872
separate build processes for scheduler and scheduled;
Fabian Huch <huch@in.tum.de>
parents:
79289
diff
changeset
|
1359 |
else new Scheduler_Build_Process(context, progress, server) { |
79108 | 1360 |
def init_scheduler(timing_data: Timing_Data): Scheduler = scheduler(timing_data, context) |
78928
6c2c60b852e0
move timing data into scheduler for more efficient heuristics (e.g., with pre-calculated values);
Fabian Huch <huch@in.tum.de>
parents:
78888
diff
changeset
|
1361 |
} |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1362 |
} |
79640
7a2b86a48be0
prefer static object, while class is required for "services";
wenzelm
parents:
79639
diff
changeset
|
1363 |
object Build_Engine extends Build_Engine |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1364 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1365 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1366 |
/* build schedule */ |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1367 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1368 |
def build_schedule( |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1369 |
options: Options, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1370 |
build_hosts: List[Build_Cluster.Host] = Nil, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1371 |
selection: Sessions.Selection = Sessions.Selection.empty, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1372 |
progress: Progress = new Progress, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1373 |
afp_root: Option[Path] = None, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1374 |
dirs: List[Path] = Nil, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1375 |
select_dirs: List[Path] = Nil, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1376 |
infos: List[Sessions.Info] = Nil, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1377 |
numa_shuffling: Boolean = false, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1378 |
augment_options: String => List[Options.Spec] = _ => Nil, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1379 |
session_setup: (String, Session) => Unit = (_, _) => (), |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1380 |
cache: Term.Cache = Term.Cache.make() |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1381 |
): Schedule = { |
79614 | 1382 |
val store = |
79640
7a2b86a48be0
prefer static object, while class is required for "services";
wenzelm
parents:
79639
diff
changeset
|
1383 |
Build_Engine.build_store(options, build_cluster = build_hosts.nonEmpty, cache = cache) |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1384 |
val log_store = Build_Log.store(options, cache = cache) |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1385 |
val build_options = store.options |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1386 |
|
79648 | 1387 |
def main( |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1388 |
server: SSH.Server, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1389 |
database_server: Option[SQL.Database], |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1390 |
log_database: PostgreSQL.Database, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1391 |
host_database: SQL.Database |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1392 |
): Schedule = { |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1393 |
val full_sessions = |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1394 |
Sessions.load_structure(build_options, dirs = AFP.make_dirs(afp_root) ::: dirs, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1395 |
select_dirs = select_dirs, infos = infos, augment_options = augment_options) |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1396 |
val full_sessions_selection = full_sessions.imports_selection(selection) |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1397 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1398 |
val build_deps = |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1399 |
Sessions.deps(full_sessions.selection(selection), progress = progress, |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1400 |
inlined_files = true).check_errors |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1401 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1402 |
val build_context = |
79640
7a2b86a48be0
prefer static object, while class is required for "services";
wenzelm
parents:
79639
diff
changeset
|
1403 |
Build.Context(store, build_deps, engine = Build_Engine, afp_root = afp_root, |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1404 |
build_hosts = build_hosts, hostname = Build.hostname(build_options), |
79644 | 1405 |
numa_shuffling = numa_shuffling, session_setup = session_setup, master = true) |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1406 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1407 |
val cluster_hosts = build_context.build_hosts |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1408 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1409 |
val hosts_current = |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1410 |
cluster_hosts.forall(host => isabelle.Host.read_info(host_database, host.name).isDefined) |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1411 |
if (!hosts_current) { |
79628 | 1412 |
using(Build_Cluster.make(build_context, progress = progress).open())(_.init().benchmark()) |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1413 |
} |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1414 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1415 |
val host_infos = Host_Infos.load(cluster_hosts, host_database) |
79877
9aef1d1535ff
use timeout as default build time predictor if no data is available;
Fabian Huch <huch@in.tum.de>
parents:
79871
diff
changeset
|
1416 |
val timing_data = Timing_Data.load(host_infos, log_database, full_sessions) |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1417 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1418 |
val sessions = Build_Process.Sessions.empty.init(build_context, database_server, progress) |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1419 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1420 |
val build_state = |
79828
5969ead9f900
clarified data representation: more uniform treatment of State.Pending vs. State.Running;
wenzelm
parents:
79819
diff
changeset
|
1421 |
Build_Process.State(sessions = sessions, |
79829 | 1422 |
pending = Map.from(sessions.iterator.map(Build_Process.Task.entry(_, build_context)))) |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1423 |
|
79640
7a2b86a48be0
prefer static object, while class is required for "services";
wenzelm
parents:
79639
diff
changeset
|
1424 |
val scheduler = Build_Engine.scheduler(timing_data, build_context) |
79105 | 1425 |
def schedule_msg(res: Exn.Result[Schedule]): String = |
1426 |
res match { case Exn.Res(schedule) => schedule.message case _ => "" } |
|
1427 |
||
79594 | 1428 |
progress.echo("Building schedule...") |
79592
7db599be70cc
clarified scheduler: proper split into scheduler, generator, and priority rules (following 32d00ec387f4);
Fabian Huch <huch@in.tum.de>
parents:
79534
diff
changeset
|
1429 |
Timing.timeit(scheduler.schedule(build_state), schedule_msg, output = progress.echo(_)) |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1430 |
} |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1431 |
|
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1432 |
using(store.open_server()) { server => |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1433 |
using_optional(store.maybe_open_database_server(server = server)) { database_server => |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1434 |
using(log_store.open_database(server = server)) { log_database => |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1435 |
using(store.open_build_database( |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1436 |
path = isabelle.Host.private_data.database, server = server)) { host_database => |
79648 | 1437 |
main(server, database_server, log_database, host_database) |
79091
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1438 |
} |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1439 |
} |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1440 |
} |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1441 |
} |
06f380099b2e
added method to generate build schedules directly;
Fabian Huch <huch@in.tum.de>
parents:
79090
diff
changeset
|
1442 |
} |
79181
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1443 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1444 |
def write_schedule_graphic(schedule: Schedule, output: Path): Unit = { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1445 |
import java.awt.geom.{GeneralPath, Rectangle2D} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1446 |
import java.awt.{BasicStroke, Color, Graphics2D} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1447 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1448 |
val line_height = isabelle.graphview.Metrics.default.height |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1449 |
val char_width = isabelle.graphview.Metrics.default.char_width |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1450 |
val padding = isabelle.graphview.Metrics.default.space_width |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1451 |
val gap = isabelle.graphview.Metrics.default.gap |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1452 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1453 |
val graph = schedule.graph |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1454 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1455 |
def text_width(text: String): Double = text.length * char_width |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1456 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1457 |
val generator_height = line_height + padding |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1458 |
val hostname_height = generator_height + line_height + padding |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1459 |
def time_height(time: Time): Double = time.seconds |
79819 | 1460 |
def date_height(date: Date): Double = time_height(date - schedule.start) |
79181
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1461 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1462 |
val hosts = graph.iterator.map(_._2._1).toList.groupBy(_.node_info.hostname) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1463 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1464 |
def node_width(node: Schedule.Node): Double = 2 * padding + text_width(node.job_name) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1465 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1466 |
case class Range(start: Double, stop: Double) { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1467 |
def proper: List[Range] = if (start < stop) List(this) else Nil |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1468 |
def width: Double = stop - start |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1469 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1470 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1471 |
val rel_node_ranges = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1472 |
hosts.toList.flatMap { (hostname, nodes) => |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1473 |
val sorted = nodes.sortBy(node => (node.start.time.ms, node.end.time.ms, node.job_name)) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1474 |
sorted.foldLeft((List.empty[Schedule.Node], Map.empty[Schedule.Node, Range])) { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1475 |
case ((nodes, allocated), node) => |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1476 |
val width = node_width(node) + padding |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1477 |
val parallel = nodes.filter(_.end.time > node.start.time) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1478 |
val (last, slots) = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1479 |
parallel.sortBy(allocated(_).start).foldLeft((0D, List.empty[Range])) { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1480 |
case ((start, ranges), node1) => |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1481 |
val node_range = allocated(node1) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1482 |
(node_range.stop, ranges ::: Range(start, node_range.start).proper) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1483 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1484 |
val start = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1485 |
(Range(last, Double.MaxValue) :: slots.filter(_.width >= width)).minBy(_.width).start |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1486 |
(node :: parallel, allocated + (node -> Range(start, start + width))) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1487 |
}._2 |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1488 |
}.toMap |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1489 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1490 |
def host_width(hostname: String) = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1491 |
2 * padding + (hosts(hostname).map(rel_node_ranges(_).stop).max max text_width(hostname)) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1492 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1493 |
def graph_height(graph: Graph[String, Schedule.Node]): Double = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1494 |
date_height(graph.maximals.map(graph.get_node(_).end).maxBy(_.unix_epoch)) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1495 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1496 |
val height = (hostname_height + 2 * padding + graph_height(graph)).ceil.toInt |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1497 |
val (last, host_starts) = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1498 |
hosts.keys.foldLeft((0D, Map.empty[String, Double])) { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1499 |
case ((previous, starts), hostname) => |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1500 |
(previous + gap + host_width(hostname), starts + (hostname -> previous)) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1501 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1502 |
val width = (last - gap).ceil.toInt |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1503 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1504 |
def node_start(node: Schedule.Node): Double = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1505 |
host_starts(node.node_info.hostname) + padding + rel_node_ranges(node).start |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1506 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1507 |
def paint(gfx: Graphics2D): Unit = { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1508 |
gfx.setColor(Color.LIGHT_GRAY) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1509 |
gfx.fillRect(0, 0, width, height) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1510 |
gfx.setRenderingHints(isabelle.graphview.Metrics.rendering_hints) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1511 |
gfx.setFont(isabelle.graphview.Metrics.default.font) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1512 |
gfx.setStroke(new BasicStroke(1, BasicStroke.CAP_BUTT, BasicStroke.JOIN_ROUND)) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1513 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1514 |
draw_string(schedule.generator + ", build time: " + schedule.duration.message_hms, padding, 0) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1515 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1516 |
def draw_host(x: Double, hostname: String): Double = { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1517 |
val nodes = hosts(hostname).map(_.job_name).toSet |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1518 |
val width = host_width(hostname) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1519 |
val height = 2 * padding + graph_height(graph.restrict(nodes.contains)) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1520 |
val padding1 = ((width - text_width(hostname)) / 2) max 0 |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1521 |
val rect = new Rectangle2D.Double(x, hostname_height, width, height) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1522 |
gfx.setColor(Color.BLACK) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1523 |
gfx.draw(rect) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1524 |
gfx.setColor(Color.GRAY) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1525 |
gfx.fill(rect) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1526 |
draw_string(hostname, x + padding1, generator_height) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1527 |
x + gap + width |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1528 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1529 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1530 |
def draw_string(str: String, x: Double, y: Double): Unit = { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1531 |
gfx.setColor(Color.BLACK) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1532 |
gfx.drawString(str, x.toInt, (y + line_height).toInt) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1533 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1534 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1535 |
def node_rect(node: Schedule.Node): Rectangle2D.Double = { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1536 |
val x = node_start(node) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1537 |
val y = hostname_height + padding + date_height(node.start) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1538 |
val width = node_width(node) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1539 |
val height = time_height(node.duration) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1540 |
new Rectangle2D.Double(x, y, width, height) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1541 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1542 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1543 |
def draw_node(node: Schedule.Node): Rectangle2D.Double = { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1544 |
val rect = node_rect(node) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1545 |
gfx.setColor(Color.BLACK) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1546 |
gfx.draw(rect) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1547 |
gfx.setColor(Color.WHITE) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1548 |
gfx.fill(rect) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1549 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1550 |
def add_text(y: Double, text: String): Double = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1551 |
if (line_height > rect.height - y || text_width(text) + 2 * padding > rect.width) y |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1552 |
else { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1553 |
val padding1 = padding min ((rect.height - (y + line_height)) / 2) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1554 |
draw_string(text, rect.x + padding, rect.y + y + padding1) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1555 |
y + padding1 + line_height |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1556 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1557 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1558 |
val node_info = node.node_info |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1559 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1560 |
val duration_str = "(" + node.duration.message_hms + ")" |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1561 |
val node_str = |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1562 |
"on " + proper_string(node_info.toString.stripPrefix(node_info.hostname)).getOrElse("all") |
79819 | 1563 |
val start_str = "Start: " + (node.start - schedule.start).message_hms |
79181
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1564 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1565 |
List(node.job_name, duration_str, node_str, start_str).foldLeft(0D)(add_text) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1566 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1567 |
rect |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1568 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1569 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1570 |
def draw_arrow(from: Schedule.Node, to: Rectangle2D.Double, curve: Double = 10): Unit = { |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1571 |
val from_rect = node_rect(from) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1572 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1573 |
val path = new GeneralPath() |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1574 |
path.moveTo(from_rect.getCenterX, from_rect.getMaxY) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1575 |
path.lineTo(to.getCenterX, to.getMinY) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1576 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1577 |
gfx.setColor(Color.BLUE) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1578 |
gfx.draw(path) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1579 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1580 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1581 |
hosts.keys.foldLeft(0D)(draw_host) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1582 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1583 |
graph.topological_order.foreach { job_name => |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1584 |
val node = graph.get_node(job_name) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1585 |
val rect = draw_node(node) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1586 |
|
79235
d9f0eb441d74
improve graphical clarity by omitting intra-host dependencies (following ee405c40db72);
Fabian Huch <huch@in.tum.de>
parents:
79194
diff
changeset
|
1587 |
for { |
d9f0eb441d74
improve graphical clarity by omitting intra-host dependencies (following ee405c40db72);
Fabian Huch <huch@in.tum.de>
parents:
79194
diff
changeset
|
1588 |
pred <- graph.imm_preds(job_name).iterator |
d9f0eb441d74
improve graphical clarity by omitting intra-host dependencies (following ee405c40db72);
Fabian Huch <huch@in.tum.de>
parents:
79194
diff
changeset
|
1589 |
pred_node = graph.get_node(pred) |
d9f0eb441d74
improve graphical clarity by omitting intra-host dependencies (following ee405c40db72);
Fabian Huch <huch@in.tum.de>
parents:
79194
diff
changeset
|
1590 |
if node.node_info.hostname != pred_node.node_info.hostname |
d9f0eb441d74
improve graphical clarity by omitting intra-host dependencies (following ee405c40db72);
Fabian Huch <huch@in.tum.de>
parents:
79194
diff
changeset
|
1591 |
} draw_arrow(pred_node, rect) |
79181
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1592 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1593 |
} |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1594 |
|
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1595 |
val name = output.file_name |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1596 |
if (File.is_png(name)) Graphics_File.write_png(output.file, paint, width, height) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1597 |
else if (File.is_pdf(name)) Graphics_File.write_pdf(output.file, paint, width, height) |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1598 |
else error("Bad type of file: " + quote(name) + " (.png or .pdf expected)") |
9d6d559c9fde
added graphical representation of build schedules;
Fabian Huch <huch@in.tum.de>
parents:
79180
diff
changeset
|
1599 |
} |
79182
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1600 |
|
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1601 |
|
79629 | 1602 |
/* Isabelle tool wrapper */ |
79182
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1603 |
|
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1604 |
val isabelle_tool = Isabelle_Tool("build_schedule", "generate build schedule", Scala_Project.here, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1605 |
{ args => |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1606 |
var afp_root: Option[Path] = None |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1607 |
val base_sessions = new mutable.ListBuffer[String] |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1608 |
val select_dirs = new mutable.ListBuffer[Path] |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1609 |
val build_hosts = new mutable.ListBuffer[Build_Cluster.Host] |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1610 |
var numa_shuffling = false |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1611 |
var output_file: Option[Path] = None |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1612 |
var requirements = false |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1613 |
val exclude_session_groups = new mutable.ListBuffer[String] |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1614 |
var all_sessions = false |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1615 |
val dirs = new mutable.ListBuffer[Path] |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1616 |
val session_groups = new mutable.ListBuffer[String] |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1617 |
var options = Options.init(specs = Options.Spec.ISABELLE_BUILD_OPTIONS) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1618 |
var verbose = false |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1619 |
val exclude_sessions = new mutable.ListBuffer[String] |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1620 |
|
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1621 |
val getopts = Getopts(""" |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1622 |
Usage: isabelle build_schedule [OPTIONS] [SESSIONS ...] |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1623 |
|
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1624 |
Options are: |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1625 |
-A ROOT include AFP with given root directory (":" for """ + AFP.BASE.implode + """) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1626 |
-B NAME include session NAME and all descendants |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1627 |
-D DIR include session directory and select its sessions |
79615 | 1628 |
-H HOSTS additional cluster host specifications of the form |
1629 |
NAMES:PARAMETERS (separated by commas) |
|
79182
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1630 |
-N cyclic shuffling of NUMA CPU nodes (performance tuning) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1631 |
-O FILE output file |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1632 |
-R refer to requirements of selected sessions |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1633 |
-X NAME exclude sessions from group NAME and all descendants |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1634 |
-a select all sessions |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1635 |
-d DIR include session directory |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1636 |
-g NAME select session group NAME |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1637 |
-o OPTION override Isabelle system OPTION (via NAME=VAL or NAME) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1638 |
-v verbose |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1639 |
-x NAME exclude session NAME and all descendants |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1640 |
|
79615 | 1641 |
Generate build graph for scheduling. |
79182
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1642 |
""", |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1643 |
"A:" -> (arg => afp_root = Some(if (arg == ":") AFP.BASE else Path.explode(arg))), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1644 |
"B:" -> (arg => base_sessions += arg), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1645 |
"D:" -> (arg => select_dirs += Path.explode(arg)), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1646 |
"H:" -> (arg => build_hosts ++= Build_Cluster.Host.parse(Registry.global, arg)), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1647 |
"N" -> (_ => numa_shuffling = true), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1648 |
"O:" -> (arg => output_file = Some(Path.explode(arg))), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1649 |
"R" -> (_ => requirements = true), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1650 |
"X:" -> (arg => exclude_session_groups += arg), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1651 |
"a" -> (_ => all_sessions = true), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1652 |
"d:" -> (arg => dirs += Path.explode(arg)), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1653 |
"g:" -> (arg => session_groups += arg), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1654 |
"o:" -> (arg => options = options + arg), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1655 |
"v" -> (_ => verbose = true), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1656 |
"x:" -> (arg => exclude_sessions += arg)) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1657 |
|
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1658 |
val sessions = getopts(args) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1659 |
|
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1660 |
val progress = new Console_Progress(verbose = verbose) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1661 |
|
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1662 |
val schedule = |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1663 |
build_schedule(options, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1664 |
selection = Sessions.Selection( |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1665 |
requirements = requirements, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1666 |
all_sessions = all_sessions, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1667 |
base_sessions = base_sessions.toList, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1668 |
exclude_session_groups = exclude_session_groups.toList, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1669 |
exclude_sessions = exclude_sessions.toList, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1670 |
session_groups = session_groups.toList, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1671 |
sessions = sessions), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1672 |
progress = progress, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1673 |
afp_root = afp_root, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1674 |
dirs = dirs.toList, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1675 |
select_dirs = select_dirs.toList, |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1676 |
numa_shuffling = isabelle.Host.numa_check(progress, numa_shuffling), |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1677 |
build_hosts = build_hosts.toList) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1678 |
|
79293 | 1679 |
if (!schedule.is_empty && output_file.nonEmpty) |
79182
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1680 |
write_schedule_graphic(schedule, output_file.get) |
6202d0ff36b4
added build schedule command-line wrapper;
Fabian Huch <huch@in.tum.de>
parents:
79181
diff
changeset
|
1681 |
}) |
78845
ff96d94957cb
add module for faster scheduled builds;
Fabian Huch <huch@in.tum.de>
parents:
diff
changeset
|
1682 |
} |