author | wenzelm |
Sun, 12 Aug 2012 19:09:55 +0200 | |
changeset 48781 | 21af4b8103fa |
parent 48778 | fd50596bf78b |
child 48783 | de617c904131 |
permissions | -rw-r--r-- |
41542 | 1 |
""" |
2 |
Test configuration descriptions for mira. |
|
3 |
""" |
|
4 |
||
5 |
import os |
|
6 |
from os import path |
|
7 |
from glob import glob |
|
8 |
import subprocess |
|
42392 | 9 |
from datetime import datetime |
41542 | 10 |
import re |
11 |
||
12 |
import util |
|
42392 | 13 |
from util import Lazy |
41542 | 14 |
|
42392 | 15 |
from mira.report import Report, Report_Content |
16 |
from mira.case import Case |
|
17 |
from mira.tools import tool |
|
42823 | 18 |
from mira import schedule, misc |
42192 | 19 |
from mira.environment import scheduler |
46931 | 20 |
from mira import repositories |
42192 | 21 |
|
41542 | 22 |
# build and evaluation tools |
23 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
24 |
default_usedir_options = "$ISABELLE_USEDIR_OPTIONS -d pdf -g true -i true -t true" |
41542 | 25 |
|
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
26 |
def prepare_isabelle_repository(loc_isabelle, loc_contrib, loc_dependency_heaps, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
27 |
usedir_options=default_usedir_options, more_settings=''): |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
28 |
|
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
29 |
# prepare components |
41542 | 30 |
loc_contrib = path.expanduser(loc_contrib) |
31 |
if not path.exists(loc_contrib): |
|
32 |
raise IOError('Bad file: %s' % loc_contrib) |
|
33 |
subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle]) |
|
34 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
35 |
# patch settings |
41542 | 36 |
extra_settings = ''' |
37 |
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user" |
|
42109 | 38 |
Z3_NON_COMMERCIAL="yes" |
48182 | 39 |
source "${ISABELLE_HOME}/Admin/init_components" |
40 |
||
42113 | 41 |
%s |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
42 |
''' % (isabelle_path, usedir_options, more_settings) |
41542 | 43 |
|
44 |
writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a') |
|
45 |
writer.write(extra_settings) |
|
46 |
writer.close() |
|
47 |
||
48 |
||
45164 | 49 |
def isabelle_getenv(isabelle_home, var): |
50 |
||
51 |
_, out = env.run_process('%s/bin/isabelle' % isabelle_home, 'getenv', var) |
|
52 |
return out.split('=', 1)[1].strip() |
|
53 |
||
54 |
||
41542 | 55 |
def extract_isabelle_run_timing(logdata): |
56 |
||
57 |
def to_secs(h, m, s): |
|
58 |
return (int(h) * 60 + int(m)) * 60 + int(s) |
|
59 |
pat = r'Finished (\S+) \((\d+):(\d+):(\d+) elapsed time, (\d+):(\d+):(\d+) cpu time' |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
60 |
pat2 = r'Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time, factor (\d+\.\d+)\)' |
41542 | 61 |
t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)}) |
62 |
for name, eh, em, es, ch, cm, cs in re.findall(pat, logdata)) |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
63 |
for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata): |
41542 | 64 |
|
65 |
if name not in t: |
|
66 |
t[name] = {} |
|
67 |
||
68 |
t[name]['threads'] = int(threads) |
|
69 |
t[name]['elapsed_inner'] = elapsed |
|
70 |
t[name]['cpu_inner'] = cpu |
|
71 |
t[name]['gc'] = gc |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
72 |
t[name]['factor'] = factor |
41542 | 73 |
|
74 |
return t |
|
75 |
||
76 |
||
77 |
def extract_isabelle_run_summary(logdata): |
|
78 |
||
41894 | 79 |
re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE) |
41542 | 80 |
summary = '\n'.join(re_error.findall(logdata)) |
81 |
if summary == '': |
|
82 |
summary = 'ok' |
|
83 |
||
84 |
return summary |
|
85 |
||
86 |
||
45164 | 87 |
def extract_image_size(isabelle_home): |
88 |
||
89 |
isabelle_output = isabelle_getenv(isabelle_home, 'ISABELLE_OUTPUT') |
|
90 |
return dict((p, path.getsize(path.join(isabelle_output, p))) for p in os.listdir(isabelle_output) if p != "log") |
|
91 |
||
92 |
def extract_report_data(isabelle_home, logdata): |
|
93 |
||
94 |
return { |
|
95 |
'timing': extract_isabelle_run_timing(logdata), |
|
96 |
'image_size': extract_image_size(isabelle_home) } |
|
97 |
||
98 |
||
42392 | 99 |
@tool |
100 |
def import_isatest_log(env, conf, logfile): |
|
101 |
||
102 |
"""Imports isatest log file as a report.""" |
|
103 |
||
104 |
def the_match(pat, text, name): |
|
105 |
match = re.search(pat, text) |
|
106 |
if not match: raise Exception('No match found for ' + name) |
|
107 |
return match.groups() |
|
108 |
||
109 |
def parse_date(d): |
|
110 |
return datetime.strptime(d, '%a %b %d %H:%M:%S %Z %Y') |
|
111 |
||
112 |
log = util.readfile(logfile) |
|
113 |
||
114 |
(begin_date, host) = the_match(r'-+ starting test -+ ([^-]*) -+ (\S*)', log, 'start tag') |
|
115 |
(isabelle_version,) = the_match(r'Isabelle version: ([a-f0-9]{12})', log, 'Isabelle version') |
|
116 |
(success, end_date) = the_match(r'-+ test (successful|FAILED) -+ ([^-]*) -', log, 'end tag') |
|
117 |
summary = extract_isabelle_run_summary(log) |
|
118 |
data = {'timing': extract_isabelle_run_timing(log)} |
|
119 |
atts = {'log': Lazy.simple(log)} |
|
120 |
||
121 |
content = Report_Content(summary, host, parse_date(begin_date), |
|
122 |
parse_date(end_date), Lazy.simple(data), atts) |
|
123 |
revision = ('Isabelle', env.repositories.get('Isabelle')[isabelle_version].hex()) |
|
124 |
case = Case(conf, [revision]) |
|
125 |
||
126 |
env.report_db.put(case, (success == 'successful'), content) |
|
127 |
||
128 |
||
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
129 |
def isabelle_build(env, case, paths, dep_paths, playground, *cmdargs, **kwargs): |
41542 | 130 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
131 |
more_settings=kwargs.get('more_settings', '') |
41542 | 132 |
|
42114 | 133 |
isabelle_home = paths[0] |
41542 | 134 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
135 |
# copy over build results from dependencies |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
136 |
heap_dir = path.join(isabelle_home, 'heaps') |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
137 |
classes_dir = path.join(heap_dir, 'classes') |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
138 |
os.makedirs(classes_dir) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
139 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
140 |
for dep_path in dep_paths: |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
141 |
subprocess.check_call(['cp', '-a'] + glob(dep_path + '/*') + [heap_dir]) |
45164 | 142 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
143 |
subprocess.check_call(['ln', '-s', classes_dir, path.join(isabelle_home, 'lib', 'classes')]) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
144 |
jars = glob(path.join(classes_dir, 'ext', '*.jar')) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
145 |
if jars: |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
146 |
subprocess.check_call(['touch'] + jars) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
147 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
148 |
# misc preparations |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
149 |
if 'lxbroy10' in misc.hostnames(): # special settings for lxbroy10 |
42823 | 150 |
more_settings += ''' |
151 |
ML_PLATFORM="x86_64-linux" |
|
45157
efc2e2d80218
mira configuration: use official polyml 5.4.1 on lxbroy10
krauss
parents:
43903
diff
changeset
|
152 |
ML_HOME="/home/polyml/polyml-5.4.1/x86_64-linux" |
42823 | 153 |
ML_SYSTEM="polyml-5.4.1" |
46200
4a892432e8f1
more modest settings for lxbroy10 -- might actually perform better;
wenzelm
parents:
45164
diff
changeset
|
154 |
ML_OPTIONS="-H 4000 --gcthreads 4" |
43334
9970a4580d13
adding ISABELLE_GHC environment setting to mira configuration isabelle makeall all on lxbroy10
bulwahn
parents:
43153
diff
changeset
|
155 |
|
9970a4580d13
adding ISABELLE_GHC environment setting to mira configuration isabelle makeall all on lxbroy10
bulwahn
parents:
43153
diff
changeset
|
156 |
ISABELLE_GHC="/usr/bin/ghc" |
42823 | 157 |
''' |
158 |
||
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
159 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, None, |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
160 |
usedir_options="", more_settings=more_settings) |
42114 | 161 |
os.chdir(isabelle_home) |
41542 | 162 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
163 |
# invoke build tool |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
164 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'build', '-s', '-v', *cmdargs) |
41542 | 165 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
166 |
# collect report |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
167 |
return (return_code == 0, extract_isabelle_run_summary(log), |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
168 |
extract_report_data(isabelle_home, log), {'log': log}, heap_dir) |
41542 | 169 |
|
170 |
||
43689 | 171 |
|
172 |
# Isabelle configurations |
|
173 |
||
174 |
@configuration(repos = [Isabelle], deps = []) |
|
175 |
def Pure(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
176 |
"""Pure Image""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
177 |
return isabelle_build(*(args + ("-b", "Pure"))) |
43689 | 178 |
|
41542 | 179 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
180 |
def HOL(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
181 |
"""HOL Image""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
182 |
return isabelle_build(*(args + ("-b", "HOL"))) |
41542 | 183 |
|
46934 | 184 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
185 |
def HOL_Library(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
186 |
"""HOL Library""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
187 |
return isabelle_build(*(args + ("-b", "HOL-Library"))) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
188 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
189 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
48688 | 190 |
def HOLCF(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
191 |
"""HOLCF""" |
48688 | 192 |
return isabelle_build(*(args + ("-b", "HOLCF"))) |
46934 | 193 |
|
194 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
|
195 |
def ZF(*args): |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
196 |
"""HOLCF""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
197 |
return isabelle_build(*(args + ("-b", "ZF"))) |
46934 | 198 |
|
199 |
||
47895 | 200 |
settings64=''' |
201 |
ML_PLATFORM=x86_64-linux |
|
202 |
ML_HOME="/home/polyml/polyml-5.4.1/x86_64-linux" |
|
203 |
ML_SYSTEM="polyml-5.4.1" |
|
204 |
''' |
|
205 |
||
47897 | 206 |
@configuration(repos = [Isabelle], deps = []) |
41542 | 207 |
def Isabelle_makeall(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
208 |
"""Build all sessions""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
209 |
return isabelle_build(*(args + ("-j", "6", "-o", "threads=4", "-a")), more_settings=settings64) |
46934 | 210 |
|
46931 | 211 |
|
41542 | 212 |
# Mutabelle configurations |
213 |
||
214 |
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground): |
|
215 |
||
216 |
"""Mutant testing for counterexample generators in Isabelle""" |
|
217 |
||
218 |
(loc_isabelle,) = paths |
|
219 |
(dep_isabelle,) = dep_paths |
|
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
220 |
more_settings = ''' |
43153
cbb748ccf81b
changing the mira setting again for the mutabelle configuration
bulwahn
parents:
43152
diff
changeset
|
221 |
ISABELLE_GHC="/usr/bin/ghc" |
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
222 |
''' |
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
223 |
prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle, |
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
224 |
more_settings = more_settings) |
41542 | 225 |
os.chdir(loc_isabelle) |
226 |
||
227 |
(return_code, log) = env.run_process('bin/isabelle', |
|
228 |
'mutabelle', '-O', playground, theory) |
|
229 |
||
230 |
try: |
|
231 |
mutabelle_log = util.readfile(path.join(playground, 'log')) |
|
232 |
except IOError: |
|
233 |
mutabelle_log = '' |
|
234 |
||
42472 | 235 |
mutabelle_data = dict( |
236 |
(tool, {'counterexample': c, 'no_counterexample': n, 'timeout': t, 'error': e}) |
|
237 |
for tool, c, n, t, e in re.findall(r'(\S+)\s+: C: (\d+) N: (\d+) T: (\d+) E: (\d+)', log)) |
|
238 |
||
41542 | 239 |
return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log), |
42472 | 240 |
{'mutabelle_results': {theory: mutabelle_data}}, |
41652 | 241 |
{'log': log, 'mutabelle_log': mutabelle_log}, None) |
41542 | 242 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
243 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 244 |
def Mutabelle_Relation(*args): |
245 |
"""Mutabelle regression suite on Relation theory""" |
|
246 |
return invoke_mutabelle('Relation', *args) |
|
247 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
248 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 249 |
def Mutabelle_List(*args): |
250 |
"""Mutabelle regression suite on List theory""" |
|
251 |
return invoke_mutabelle('List', *args) |
|
252 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
253 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 254 |
def Mutabelle_Set(*args): |
255 |
"""Mutabelle regression suite on Set theory""" |
|
256 |
return invoke_mutabelle('Set', *args) |
|
257 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
258 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 259 |
def Mutabelle_Map(*args): |
260 |
"""Mutabelle regression suite on Map theory""" |
|
261 |
return invoke_mutabelle('Map', *args) |
|
262 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
263 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 264 |
def Mutabelle_Divides(*args): |
265 |
"""Mutabelle regression suite on Divides theory""" |
|
266 |
return invoke_mutabelle('Divides', *args) |
|
267 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
268 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 269 |
def Mutabelle_MacLaurin(*args): |
270 |
"""Mutabelle regression suite on MacLaurin theory""" |
|
271 |
return invoke_mutabelle('MacLaurin', *args) |
|
272 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
273 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 274 |
def Mutabelle_Fun(*args): |
275 |
"""Mutabelle regression suite on Fun theory""" |
|
276 |
return invoke_mutabelle('Fun', *args) |
|
42040 | 277 |
|
42393 | 278 |
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ') |
279 |
||
280 |
@scheduler() |
|
281 |
def mutabelle_scheduler(env): |
|
282 |
"""Scheduler for Mutabelle.""" |
|
283 |
return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs) |
|
42040 | 284 |
|
47896 | 285 |
|
42040 | 286 |
# Judgement Day configurations |
287 |
||
42095 | 288 |
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices') |
42040 | 289 |
|
290 |
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground): |
|
291 |
"""Judgement Day regression suite""" |
|
292 |
||
293 |
isa = paths[0] |
|
294 |
dep_path = dep_paths[0] |
|
295 |
||
296 |
os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd |
|
297 |
prepare_isabelle_repository(isa, env.settings.contrib, dep_path) |
|
298 |
||
299 |
output = {} |
|
300 |
success_rates = {} |
|
301 |
some_success = False |
|
302 |
||
303 |
for atp in judgement_day_provers: |
|
304 |
||
305 |
log_dir = path.join(playground, 'mirabelle_log_' + atp) |
|
306 |
os.makedirs(log_dir) |
|
307 |
||
308 |
cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy' |
|
309 |
% (isa, log_dir, atp, opts, theory)) |
|
310 |
||
311 |
os.system(cmd) |
|
312 |
output[atp] = util.readfile(path.join(log_dir, theory + '.log')) |
|
313 |
||
314 |
percentages = list(re.findall(r'Success rate: (\d+)%', output[atp])) |
|
315 |
if len(percentages) == 2: |
|
316 |
success_rates[atp] = { |
|
317 |
'sledgehammer': int(percentages[0]), |
|
318 |
'metis': int(percentages[1])} |
|
319 |
if success_rates[atp]['sledgehammer'] > 0: |
|
320 |
some_success = True |
|
321 |
else: |
|
322 |
success_rates[atp] = {} |
|
323 |
||
324 |
||
325 |
data = {'success_rates': success_rates} |
|
326 |
raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers) |
|
327 |
# FIXME: summary? |
|
328 |
return (some_success, '', data, raw_attachments, None) |
|
329 |
||
330 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
331 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 332 |
def JD_NS(*args): |
333 |
"""Judgement Day regression suite NS""" |
|
334 |
return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args) |
|
335 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
336 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 337 |
def JD_FTA(*args): |
338 |
"""Judgement Day regression suite FTA""" |
|
339 |
return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args) |
|
340 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
341 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 342 |
def JD_Hoare(*args): |
343 |
"""Judgement Day regression suite Hoare""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
344 |
return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args) |
42040 | 345 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
346 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 347 |
def JD_SN(*args): |
348 |
"""Judgement Day regression suite SN""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
349 |
return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args) |
42040 | 350 |
|
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
351 |
|
42192 | 352 |
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ') |
353 |
||
354 |
@scheduler() |
|
42197 | 355 |
def judgement_day_scheduler(env): |
42192 | 356 |
"""Scheduler for Judgement Day.""" |
357 |
return schedule.age_scheduler(env, 'Isabelle', JD_confs) |
|
358 |
||
359 |
||
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
360 |
# SML/NJ |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
361 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
362 |
smlnj_settings = ''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
363 |
ML_SYSTEM=smlnj |
48443 | 364 |
ML_HOME="/home/smlnj/110.74/bin" |
365 |
ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=1024" |
|
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
366 |
ML_PLATFORM=$(eval $("$ML_HOME/.arch-n-opsys" 2>/dev/null); echo "$HEAP_SUFFIX") |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
367 |
''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
368 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
369 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
370 |
def SML_HOL(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
371 |
"""HOL image built with SML/NJ""" |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
372 |
return isabelle_build(*(args + ("-b", "HOL")), more_settings=smlnj_settings) |
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
373 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
374 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
375 |
def SML_makeall(*args): |
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
376 |
"""SML/NJ build of all possible sessions""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
377 |
return isabelle_build(*(args + ("-j", "3", "-a")), more_settings=smlnj_settings) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
378 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
379 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
380 |
# Legacy Isabelle configurations |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
381 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
382 |
# distribution and documentation Build |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
383 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
384 |
@configuration(repos = [Isabelle], deps = []) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
385 |
def Distribution(env, case, paths, dep_paths, playground): |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
386 |
"""Build of distribution""" |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
387 |
## FIXME This is rudimentary; study Admin/CHECKLIST to complete this configuration accordingly |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
388 |
isabelle_home = paths[0] |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
389 |
(return_code, log) = env.run_process(path.join(isabelle_home, 'Admin', 'Release', 'makedist'), |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
390 |
REPOS = repositories.get(Isabelle).local_path, DISTPREFIX = os.getcwd()) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
391 |
return (return_code == 0, '', ## FIXME might add summary here |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
392 |
{}, {'log': log}, None) ## FIXME might add proper result here |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
393 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
394 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
395 |
def isabelle_dependency_only(env, case, paths, dep_paths, playground): |
43894
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
396 |
|
48686
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
397 |
isabelle_home = paths[0] |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
398 |
result = path.join(isabelle_home, 'heaps') |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
399 |
os.makedirs(result) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
400 |
for dep_path in dep_paths: |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
401 |
subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result]) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
402 |
|
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
403 |
return (True, 'ok', {}, {}, result) |
4cf09bc175d7
modernized mira configurations, making use of isabelle build
krauss
parents:
48685
diff
changeset
|
404 |