author | nipkow |
Sun, 23 Oct 2011 14:15:24 +0200 | |
changeset 45256 | 62b025f434e9 |
parent 45164 | 13dddf30c792 |
child 46200 | 4a892432e8f1 |
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 |
20 |
||
41542 | 21 |
# build and evaluation tools |
22 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
23 |
default_usedir_options = "$ISABELLE_USEDIR_OPTIONS -d pdf -g true -i true -t true" |
41542 | 24 |
|
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
25 |
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
|
26 |
usedir_options=default_usedir_options, more_settings=''): |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
27 |
|
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
28 |
# prepare components |
41542 | 29 |
loc_contrib = path.expanduser(loc_contrib) |
30 |
if not path.exists(loc_contrib): |
|
31 |
raise IOError('Bad file: %s' % loc_contrib) |
|
32 |
subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle]) |
|
33 |
||
34 |
contributed_components = path.join(loc_isabelle, 'Admin', 'contributed_components') |
|
35 |
if path.exists(contributed_components): |
|
36 |
components = [] |
|
37 |
for component in util.readfile_lines(contributed_components): |
|
38 |
loc_component = path.join(loc_isabelle, component) |
|
39 |
if path.exists(loc_component): |
|
40 |
components.append(loc_component) |
|
41 |
writer = open(path.join(loc_isabelle, 'etc', 'components'), 'a') |
|
42 |
for component in components: |
|
43 |
writer.write(component + '\n') |
|
44 |
writer.close() |
|
45 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
46 |
# provide existing dependencies |
41542 | 47 |
if loc_dependency_heaps: |
48 |
isabelle_path = loc_dependency_heaps + '/$ISABELLE_IDENTIFIER:$ISABELLE_OUTPUT' |
|
49 |
else: |
|
50 |
isabelle_path = '$ISABELLE_OUTPUT' |
|
51 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
52 |
# patch settings |
41542 | 53 |
extra_settings = ''' |
54 |
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user" |
|
55 |
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps" |
|
56 |
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info" |
|
57 |
ISABELLE_PATH="%s" |
|
58 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
59 |
ISABELLE_USEDIR_OPTIONS="%s" |
42109 | 60 |
Z3_NON_COMMERCIAL="yes" |
42113 | 61 |
%s |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
62 |
''' % (isabelle_path, usedir_options, more_settings) |
41542 | 63 |
|
64 |
writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a') |
|
65 |
writer.write(extra_settings) |
|
66 |
writer.close() |
|
67 |
||
68 |
||
45164 | 69 |
def isabelle_getenv(isabelle_home, var): |
70 |
||
71 |
_, out = env.run_process('%s/bin/isabelle' % isabelle_home, 'getenv', var) |
|
72 |
return out.split('=', 1)[1].strip() |
|
73 |
||
74 |
||
41542 | 75 |
def extract_isabelle_run_timing(logdata): |
76 |
||
77 |
def to_secs(h, m, s): |
|
78 |
return (int(h) * 60 + int(m)) * 60 + int(s) |
|
79 |
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
|
80 |
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 | 81 |
t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)}) |
82 |
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
|
83 |
for name, threads, elapsed, cpu, gc, factor in re.findall(pat2, logdata): |
41542 | 84 |
|
85 |
if name not in t: |
|
86 |
t[name] = {} |
|
87 |
||
88 |
t[name]['threads'] = int(threads) |
|
89 |
t[name]['elapsed_inner'] = elapsed |
|
90 |
t[name]['cpu_inner'] = cpu |
|
91 |
t[name]['gc'] = gc |
|
42186
bb688200b949
adapted parsing of session timing (cf. e86b10c68f0b)
krauss
parents:
42140
diff
changeset
|
92 |
t[name]['factor'] = factor |
41542 | 93 |
|
94 |
return t |
|
95 |
||
96 |
||
97 |
def extract_isabelle_run_summary(logdata): |
|
98 |
||
41894 | 99 |
re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE) |
41542 | 100 |
summary = '\n'.join(re_error.findall(logdata)) |
101 |
if summary == '': |
|
102 |
summary = 'ok' |
|
103 |
||
104 |
return summary |
|
105 |
||
106 |
||
45164 | 107 |
def extract_image_size(isabelle_home): |
108 |
||
109 |
isabelle_output = isabelle_getenv(isabelle_home, 'ISABELLE_OUTPUT') |
|
110 |
return dict((p, path.getsize(path.join(isabelle_output, p))) for p in os.listdir(isabelle_output) if p != "log") |
|
111 |
||
112 |
def extract_report_data(isabelle_home, logdata): |
|
113 |
||
114 |
return { |
|
115 |
'timing': extract_isabelle_run_timing(logdata), |
|
116 |
'image_size': extract_image_size(isabelle_home) } |
|
117 |
||
118 |
||
42392 | 119 |
@tool |
120 |
def import_isatest_log(env, conf, logfile): |
|
121 |
||
122 |
"""Imports isatest log file as a report.""" |
|
123 |
||
124 |
def the_match(pat, text, name): |
|
125 |
match = re.search(pat, text) |
|
126 |
if not match: raise Exception('No match found for ' + name) |
|
127 |
return match.groups() |
|
128 |
||
129 |
def parse_date(d): |
|
130 |
return datetime.strptime(d, '%a %b %d %H:%M:%S %Z %Y') |
|
131 |
||
132 |
log = util.readfile(logfile) |
|
133 |
||
134 |
(begin_date, host) = the_match(r'-+ starting test -+ ([^-]*) -+ (\S*)', log, 'start tag') |
|
135 |
(isabelle_version,) = the_match(r'Isabelle version: ([a-f0-9]{12})', log, 'Isabelle version') |
|
136 |
(success, end_date) = the_match(r'-+ test (successful|FAILED) -+ ([^-]*) -', log, 'end tag') |
|
137 |
summary = extract_isabelle_run_summary(log) |
|
138 |
data = {'timing': extract_isabelle_run_timing(log)} |
|
139 |
atts = {'log': Lazy.simple(log)} |
|
140 |
||
141 |
content = Report_Content(summary, host, parse_date(begin_date), |
|
142 |
parse_date(end_date), Lazy.simple(data), atts) |
|
143 |
revision = ('Isabelle', env.repositories.get('Isabelle')[isabelle_version].hex()) |
|
144 |
case = Case(conf, [revision]) |
|
145 |
||
146 |
env.report_db.put(case, (success == 'successful'), content) |
|
147 |
||
148 |
||
149 |
||
41542 | 150 |
def isabelle_usedir(env, isa_path, isabelle_usedir_opts, base_image, dir_name): |
151 |
||
152 |
return env.run_process('%s/bin/isabelle' % isa_path, 'usedir', |
|
153 |
isabelle_usedir_opts, base_image, dir_name) |
|
154 |
||
155 |
||
156 |
def isabelle_dependency_only(env, case, paths, dep_paths, playground): |
|
157 |
||
42114 | 158 |
isabelle_home = paths[0] |
159 |
result = path.join(isabelle_home, 'heaps') |
|
41542 | 160 |
os.makedirs(result) |
161 |
for dep_path in dep_paths: |
|
162 |
subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result]) |
|
163 |
||
164 |
return (True, 'ok', {}, {}, result) |
|
165 |
||
166 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
167 |
def build_isabelle_image(subdir, base, img, env, case, paths, dep_paths, playground, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
168 |
usedir_options=default_usedir_options, more_settings=''): |
41542 | 169 |
|
42114 | 170 |
isabelle_home = paths[0] |
41542 | 171 |
dep_path = dep_paths[0] |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
172 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
173 |
usedir_options=usedir_options, more_settings=more_settings) |
42114 | 174 |
os.chdir(path.join(isabelle_home, 'src', subdir)) |
41542 | 175 |
|
42114 | 176 |
(return_code, log) = isabelle_usedir(env, isabelle_home, '-b', base, img) |
41542 | 177 |
|
42114 | 178 |
result = path.join(isabelle_home, 'heaps') |
45164 | 179 |
|
41542 | 180 |
return (return_code == 0, extract_isabelle_run_summary(log), |
45164 | 181 |
extract_report_data(isabelle_home, log), {'log': log}, result) |
41542 | 182 |
|
183 |
||
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
184 |
def isabelle_make(subdir, env, case, paths, dep_paths, playground, usedir_options=default_usedir_options, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
185 |
more_settings='', target='all', keep_results=False): |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
186 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
187 |
isabelle_home = paths[0] |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
188 |
dep_path = dep_paths[0] if dep_paths else None |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
189 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
190 |
usedir_options=usedir_options, more_settings=more_settings) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
191 |
os.chdir(path.join(isabelle_home, subdir)) |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
192 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
193 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', '-k', target) |
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
194 |
|
42140 | 195 |
result = path.join(isabelle_home, 'heaps') if keep_results else None |
45164 | 196 |
|
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
197 |
return (return_code == 0, extract_isabelle_run_summary(log), |
45164 | 198 |
extract_report_data(isabelle_home, log), {'log': log}, result) |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
199 |
|
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
200 |
|
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
201 |
def isabelle_makeall(env, case, paths, dep_paths, playground, usedir_options=default_usedir_options, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
202 |
more_settings='', target='all', make_options=()): |
41542 | 203 |
|
42823 | 204 |
# FIXME!? |
205 |
if 'lxbroy10' in misc.hostnames(): |
|
206 |
make_options += ('-j', '8') |
|
207 |
usedir_options += " -M 6 -q 2 -i false -d false" |
|
208 |
more_settings += ''' |
|
209 |
ML_PLATFORM="x86_64-linux" |
|
45157
efc2e2d80218
mira configuration: use official polyml 5.4.1 on lxbroy10
krauss
parents:
43903
diff
changeset
|
210 |
ML_HOME="/home/polyml/polyml-5.4.1/x86_64-linux" |
42823 | 211 |
ML_SYSTEM="polyml-5.4.1" |
212 |
ML_OPTIONS="-H 8000 --gcthreads 6" |
|
43334
9970a4580d13
adding ISABELLE_GHC environment setting to mira configuration isabelle makeall all on lxbroy10
bulwahn
parents:
43153
diff
changeset
|
213 |
|
9970a4580d13
adding ISABELLE_GHC environment setting to mira configuration isabelle makeall all on lxbroy10
bulwahn
parents:
43153
diff
changeset
|
214 |
ISABELLE_GHC="/usr/bin/ghc" |
42823 | 215 |
''' |
216 |
||
42114 | 217 |
isabelle_home = paths[0] |
42115
e6a1dc0aa058
mira interface to 'isabelle make' in addition to usedir and makeall;
krauss
parents:
42114
diff
changeset
|
218 |
dep_path = dep_paths[0] if dep_paths else None |
42821
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
219 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, dep_path, |
4629cbaebc04
clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents:
42472
diff
changeset
|
220 |
usedir_options=usedir_options, more_settings=more_settings) |
42114 | 221 |
os.chdir(isabelle_home) |
41542 | 222 |
|
42121 | 223 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'makeall', '-k', *(make_options + (target,))) |
41542 | 224 |
|
225 |
return (return_code == 0, extract_isabelle_run_summary(log), |
|
45164 | 226 |
extract_report_data(isabelle_home, log), {'log': log}, None) |
41542 | 227 |
|
228 |
||
43689 | 229 |
def make_pure(env, case, paths, dep_paths, playground, more_settings=''): |
41542 | 230 |
|
42114 | 231 |
isabelle_home = paths[0] |
43689 | 232 |
prepare_isabelle_repository(isabelle_home, env.settings.contrib, '', |
233 |
more_settings=more_settings) |
|
42114 | 234 |
os.chdir(path.join(isabelle_home, 'src', 'Pure')) |
41542 | 235 |
|
42114 | 236 |
(return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', 'Pure') |
41542 | 237 |
|
42114 | 238 |
result = path.join(isabelle_home, 'heaps') |
41542 | 239 |
return (return_code == 0, extract_isabelle_run_summary(log), |
240 |
{'timing': extract_isabelle_run_timing(log)}, {'log': log}, result) |
|
241 |
||
43689 | 242 |
|
243 |
# Isabelle configurations |
|
244 |
||
245 |
@configuration(repos = [Isabelle], deps = []) |
|
246 |
def Pure(*args): |
|
247 |
"""Pure image""" |
|
248 |
return make_pure(*args) |
|
249 |
||
250 |
@configuration(repos = [Isabelle], deps = []) |
|
251 |
def Pure_64(*args): |
|
252 |
"""Pure image (64 bit)""" |
|
253 |
return make_pure(*args, more_settings='ML_PLATFORM=x86_64-linux') |
|
254 |
||
41542 | 255 |
@configuration(repos = [Isabelle], deps = [(Pure, [0])]) |
256 |
def HOL(*args): |
|
257 |
"""HOL image""" |
|
258 |
return build_isabelle_image('HOL', 'Pure', 'HOL', *args) |
|
259 |
||
43689 | 260 |
@configuration(repos = [Isabelle], deps = [(Pure_64, [0])]) |
261 |
def HOL_64(*args): |
|
262 |
"""HOL image (64 bit)""" |
|
263 |
return build_isabelle_image('HOL', 'Pure', 'HOL', *args, more_settings='ML_PLATFORM=x86_64-linux') |
|
264 |
||
265 |
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])]) |
|
266 |
def HOL_HOLCF_64(*args): |
|
267 |
"""HOL-HOLCF image (64 bit)""" |
|
268 |
return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args, more_settings='ML_PLATFORM=x86_64-linux') |
|
41542 | 269 |
|
43689 | 270 |
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])]) |
271 |
def HOL_Nominal_64(*args): |
|
272 |
"""HOL-Nominal image (64 bit)""" |
|
273 |
return build_isabelle_image('HOL/Nominal', 'HOL', 'HOL-Nominal', *args, more_settings='ML_PLATFORM=x86_64-linux') |
|
41542 | 274 |
|
43689 | 275 |
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])]) |
276 |
def HOL_Word_64(*args): |
|
277 |
"""HOL-Word image (64 bit)""" |
|
278 |
return build_isabelle_image('HOL/Word', 'HOL', 'HOL-Word', *args, more_settings='ML_PLATFORM=x86_64-linux') |
|
41542 | 279 |
|
280 |
@configuration(repos = [Isabelle], deps = [ |
|
43689 | 281 |
(HOL_64, [0]), |
282 |
(HOL_HOLCF_64, [0]), |
|
283 |
(HOL_Nominal_64, [0]), |
|
284 |
(HOL_Word_64, [0]) |
|
41542 | 285 |
]) |
286 |
def AFP_images(*args): |
|
43689 | 287 |
"""Isabelle images needed for the AFP (64 bit)""" |
41542 | 288 |
return isabelle_dependency_only(*args) |
289 |
||
42822
dc7232f0c303
no dependencies for Isabelle_makeall, which will be built in one go
krauss
parents:
42821
diff
changeset
|
290 |
@configuration(repos = [Isabelle], deps = []) |
41542 | 291 |
def Isabelle_makeall(*args): |
292 |
"""Isabelle makeall""" |
|
293 |
return isabelle_makeall(*args) |
|
294 |
||
295 |
||
296 |
# Mutabelle configurations |
|
297 |
||
298 |
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground): |
|
299 |
||
300 |
"""Mutant testing for counterexample generators in Isabelle""" |
|
301 |
||
302 |
(loc_isabelle,) = paths |
|
303 |
(dep_isabelle,) = dep_paths |
|
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
304 |
more_settings = ''' |
43153
cbb748ccf81b
changing the mira setting again for the mutabelle configuration
bulwahn
parents:
43152
diff
changeset
|
305 |
ISABELLE_GHC="/usr/bin/ghc" |
43152
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
306 |
''' |
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
307 |
prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle, |
6c4e021dec06
adding more settings to mira's mutabelle configuration
bulwahn
parents:
42948
diff
changeset
|
308 |
more_settings = more_settings) |
41542 | 309 |
os.chdir(loc_isabelle) |
310 |
||
311 |
(return_code, log) = env.run_process('bin/isabelle', |
|
312 |
'mutabelle', '-O', playground, theory) |
|
313 |
||
314 |
try: |
|
315 |
mutabelle_log = util.readfile(path.join(playground, 'log')) |
|
316 |
except IOError: |
|
317 |
mutabelle_log = '' |
|
318 |
||
42472 | 319 |
mutabelle_data = dict( |
320 |
(tool, {'counterexample': c, 'no_counterexample': n, 'timeout': t, 'error': e}) |
|
321 |
for tool, c, n, t, e in re.findall(r'(\S+)\s+: C: (\d+) N: (\d+) T: (\d+) E: (\d+)', log)) |
|
322 |
||
41542 | 323 |
return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log), |
42472 | 324 |
{'mutabelle_results': {theory: mutabelle_data}}, |
41652 | 325 |
{'log': log, 'mutabelle_log': mutabelle_log}, None) |
41542 | 326 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
327 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 328 |
def Mutabelle_Relation(*args): |
329 |
"""Mutabelle regression suite on Relation theory""" |
|
330 |
return invoke_mutabelle('Relation', *args) |
|
331 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
332 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 333 |
def Mutabelle_List(*args): |
334 |
"""Mutabelle regression suite on List theory""" |
|
335 |
return invoke_mutabelle('List', *args) |
|
336 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
337 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 338 |
def Mutabelle_Set(*args): |
339 |
"""Mutabelle regression suite on Set theory""" |
|
340 |
return invoke_mutabelle('Set', *args) |
|
341 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
342 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 343 |
def Mutabelle_Map(*args): |
344 |
"""Mutabelle regression suite on Map theory""" |
|
345 |
return invoke_mutabelle('Map', *args) |
|
346 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
347 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 348 |
def Mutabelle_Divides(*args): |
349 |
"""Mutabelle regression suite on Divides theory""" |
|
350 |
return invoke_mutabelle('Divides', *args) |
|
351 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
352 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 353 |
def Mutabelle_MacLaurin(*args): |
354 |
"""Mutabelle regression suite on MacLaurin theory""" |
|
355 |
return invoke_mutabelle('MacLaurin', *args) |
|
356 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
357 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
41542 | 358 |
def Mutabelle_Fun(*args): |
359 |
"""Mutabelle regression suite on Fun theory""" |
|
360 |
return invoke_mutabelle('Fun', *args) |
|
42040 | 361 |
|
42393 | 362 |
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ') |
363 |
||
364 |
@scheduler() |
|
365 |
def mutabelle_scheduler(env): |
|
366 |
"""Scheduler for Mutabelle.""" |
|
367 |
return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs) |
|
42040 | 368 |
|
369 |
# Judgement Day configurations |
|
370 |
||
42095 | 371 |
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices') |
42040 | 372 |
|
373 |
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground): |
|
374 |
"""Judgement Day regression suite""" |
|
375 |
||
376 |
isa = paths[0] |
|
377 |
dep_path = dep_paths[0] |
|
378 |
||
379 |
os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd |
|
380 |
prepare_isabelle_repository(isa, env.settings.contrib, dep_path) |
|
381 |
||
382 |
output = {} |
|
383 |
success_rates = {} |
|
384 |
some_success = False |
|
385 |
||
386 |
for atp in judgement_day_provers: |
|
387 |
||
388 |
log_dir = path.join(playground, 'mirabelle_log_' + atp) |
|
389 |
os.makedirs(log_dir) |
|
390 |
||
391 |
cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy' |
|
392 |
% (isa, log_dir, atp, opts, theory)) |
|
393 |
||
394 |
os.system(cmd) |
|
395 |
output[atp] = util.readfile(path.join(log_dir, theory + '.log')) |
|
396 |
||
397 |
percentages = list(re.findall(r'Success rate: (\d+)%', output[atp])) |
|
398 |
if len(percentages) == 2: |
|
399 |
success_rates[atp] = { |
|
400 |
'sledgehammer': int(percentages[0]), |
|
401 |
'metis': int(percentages[1])} |
|
402 |
if success_rates[atp]['sledgehammer'] > 0: |
|
403 |
some_success = True |
|
404 |
else: |
|
405 |
success_rates[atp] = {} |
|
406 |
||
407 |
||
408 |
data = {'success_rates': success_rates} |
|
409 |
raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers) |
|
410 |
# FIXME: summary? |
|
411 |
return (some_success, '', data, raw_attachments, None) |
|
412 |
||
413 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
414 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 415 |
def JD_NS(*args): |
416 |
"""Judgement Day regression suite NS""" |
|
417 |
return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args) |
|
418 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
419 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 420 |
def JD_FTA(*args): |
421 |
"""Judgement Day regression suite FTA""" |
|
422 |
return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args) |
|
423 |
||
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
424 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 425 |
def JD_Hoare(*args): |
426 |
"""Judgement Day regression suite Hoare""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
427 |
return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args) |
42040 | 428 |
|
42948
e6990acab6ff
reverted 7fdd8d4908dc -- keeping images from Isabelle_makeall would be too expensive
krauss
parents:
42824
diff
changeset
|
429 |
@configuration(repos = [Isabelle], deps = [(HOL, [0])]) |
42040 | 430 |
def JD_SN(*args): |
431 |
"""Judgement Day regression suite SN""" |
|
42058
1eda69f0b9a8
moved some configurations to AFP, and fixed others
krauss
parents:
42040
diff
changeset
|
432 |
return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args) |
42040 | 433 |
|
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
434 |
|
42192 | 435 |
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ') |
436 |
||
437 |
@scheduler() |
|
42197 | 438 |
def judgement_day_scheduler(env): |
42192 | 439 |
"""Scheduler for Judgement Day.""" |
440 |
return schedule.age_scheduler(env, 'Isabelle', JD_confs) |
|
441 |
||
442 |
||
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
443 |
# SML/NJ |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
444 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
445 |
smlnj_settings = ''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
446 |
ML_SYSTEM=smlnj |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
447 |
ML_HOME="/home/smlnj/110.72/bin" |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
448 |
ML_OPTIONS="@SMLdebug=/dev/null @SMLalloc=256" |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
449 |
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
|
450 |
''' |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
451 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
452 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
453 |
def SML_HOL(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
454 |
"""HOL image built with SML/NJ""" |
42140 | 455 |
return isabelle_make('src/HOL', *args, more_settings=smlnj_settings, target='HOL', keep_results=True) |
42116
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
456 |
|
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
457 |
@configuration(repos = [Isabelle], deps = []) |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
458 |
def SML_makeall(*args): |
b9ae421fbcc7
added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents:
42115
diff
changeset
|
459 |
"""Makeall built with SML/NJ""" |
42138
e54a985daa61
added make target 'smlnj' to refer to what can/should be tested using smlnj -- allows the use of "isabelle makeall smlnj";
krauss
parents:
42121
diff
changeset
|
460 |
return isabelle_makeall(*args, more_settings=smlnj_settings, target='smlnj', make_options=('-j', '3')) |
43894
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
461 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
462 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
463 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
464 |
# Importer |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
465 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
466 |
@configuration(repos = ['Hollight'], deps = []) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
467 |
def Hollight_proof_objects(env, case, paths, dep_paths, playground): |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
468 |
"""Build proof object bundle from HOL Light""" |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
469 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
470 |
hollight_home = paths[0] |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
471 |
os.chdir(os.path.join(hollight_home, 'Proofrecording', 'hol_light')) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
472 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
473 |
subprocess.check_call(['make']) |
43897 | 474 |
(return_code, _) = util.run_process.run_process( |
43894
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
475 |
'''echo -e '#use "hol.ml";;\n export_saved_proofs None;;' | ocaml''', |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
476 |
environment={'HOLPROOFEXPORTDIR': './proofs_extended', 'HOLPROOFOBJECTS': 'EXTENDED'}, |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
477 |
shell=True) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
478 |
subprocess.check_call('tar -czf proofs_extended.tar.gz proofs_extended'.split(' ')) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
479 |
subprocess.check_call(['mv', 'proofs_extended.tar.gz', playground]) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
480 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
481 |
return (return_code == 0, '', {}, {}, playground) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
482 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
483 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
484 |
@configuration(repos = [Isabelle, 'Hollight'], deps = [(Hollight_proof_objects, [1])]) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
485 |
def HOL_Generate_HOLLight(env, case, paths, dep_paths, playground): |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
486 |
"""Generated theories by HOL Light import""" |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
487 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
488 |
os.chdir(playground) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
489 |
subprocess.check_call(['tar', '-xzf', path.join(dep_paths[0], 'proofs_extended.tar.gz')]) |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
490 |
proofs_dir = path.join(playground, 'proofs_extended') |
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
491 |
|
182caf5cf0b6
added experimental mira configuration for HOL Light importer
krauss
parents:
43689
diff
changeset
|
492 |
return isabelle_make('src/HOL', env, case, paths, dep_paths, playground, |
43903 | 493 |
more_settings=('HOL4_PROOFS="%s"' % proofs_dir), target='HOL-Generate-HOLLight') |