Admin/mira.py
author krauss
Thu, 24 Mar 2011 16:39:37 +0100
changeset 42959 a8598661d5eb
parent 42913 1eda69f0b9a8
child 42973 f5950b976076
permissions -rw-r--r--
added more judgement day provers
haftmann@41790
     1
"""
haftmann@41790
     2
    Test configuration descriptions for mira.
haftmann@41790
     3
"""
haftmann@41790
     4
haftmann@41790
     5
import os
haftmann@41790
     6
from os import path
haftmann@41790
     7
from glob import glob
haftmann@41790
     8
import subprocess
haftmann@41790
     9
import re
haftmann@41790
    10
haftmann@41790
    11
import util
haftmann@41790
    12
haftmann@41790
    13
haftmann@41790
    14
# build and evaluation tools
haftmann@41790
    15
haftmann@41790
    16
def prepare_isabelle_repository(loc_isabelle, loc_contrib, loc_dependency_heaps, parallelism = True):
haftmann@41790
    17
haftmann@41790
    18
    loc_contrib = path.expanduser(loc_contrib)
haftmann@41790
    19
    if not path.exists(loc_contrib):
haftmann@41790
    20
        raise IOError('Bad file: %s' % loc_contrib)
haftmann@41790
    21
    subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle])
haftmann@41790
    22
haftmann@41790
    23
    contributed_components = path.join(loc_isabelle, 'Admin', 'contributed_components')
haftmann@41790
    24
    if path.exists(contributed_components):
haftmann@41790
    25
        components = []
haftmann@41790
    26
        for component in util.readfile_lines(contributed_components):
haftmann@41790
    27
            loc_component = path.join(loc_isabelle, component)
haftmann@41790
    28
            if path.exists(loc_component):
haftmann@41790
    29
                components.append(loc_component)
haftmann@41790
    30
        writer = open(path.join(loc_isabelle, 'etc', 'components'), 'a')
haftmann@41790
    31
        for component in components:
haftmann@41790
    32
            writer.write(component + '\n')
haftmann@41790
    33
        writer.close()
haftmann@41790
    34
haftmann@41790
    35
    if loc_dependency_heaps:
haftmann@41790
    36
        isabelle_path = loc_dependency_heaps + '/$ISABELLE_IDENTIFIER:$ISABELLE_OUTPUT'
haftmann@41790
    37
    else:
haftmann@41790
    38
        isabelle_path = '$ISABELLE_OUTPUT'
haftmann@41790
    39
haftmann@41790
    40
    if parallelism:
haftmann@41790
    41
        parallelism_options = '-M max'
haftmann@41790
    42
    else:
haftmann@41790
    43
        parallelism_options = '-M 1 -q 0'
haftmann@41790
    44
haftmann@41790
    45
    extra_settings = '''
haftmann@41790
    46
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user"
haftmann@41790
    47
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps"
haftmann@41790
    48
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info"
haftmann@41790
    49
ISABELLE_PATH="%s"
haftmann@41790
    50
haftmann@41790
    51
ISABELLE_USEDIR_OPTIONS="$ISABELLE_USEDIR_OPTIONS %s -t true -v true -d pdf -g true -i true"
haftmann@41790
    52
''' % (isabelle_path, parallelism_options)
haftmann@41790
    53
haftmann@41790
    54
    writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a')
haftmann@41790
    55
    writer.write(extra_settings)
haftmann@41790
    56
    writer.close()
haftmann@41790
    57
haftmann@41790
    58
haftmann@41790
    59
def extract_isabelle_run_timing(logdata):
haftmann@41790
    60
haftmann@41790
    61
    def to_secs(h, m, s):
haftmann@41790
    62
        return (int(h) * 60 + int(m)) * 60 + int(s)
haftmann@41790
    63
    pat = r'Finished (\S+) \((\d+):(\d+):(\d+) elapsed time, (\d+):(\d+):(\d+) cpu time'
haftmann@41790
    64
    pat2 = r'Timing (\S+) \((\d+) threads, (\d+\.\d+)s elapsed time, (\d+\.\d+)s cpu time, (\d+\.\d+)s GC time\)'
haftmann@41790
    65
    t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)})
haftmann@41790
    66
             for name, eh, em, es, ch, cm, cs in re.findall(pat, logdata))
haftmann@41790
    67
    for name, threads, elapsed, cpu, gc in re.findall(pat2, logdata):
haftmann@41790
    68
haftmann@41790
    69
        if name not in t:
haftmann@41790
    70
            t[name] = {}
haftmann@41790
    71
haftmann@41790
    72
        t[name]['threads'] = int(threads)
haftmann@41790
    73
        t[name]['elapsed_inner'] = elapsed
haftmann@41790
    74
        t[name]['cpu_inner'] = cpu
haftmann@41790
    75
        t[name]['gc'] = gc
haftmann@41790
    76
haftmann@41790
    77
    return t
haftmann@41790
    78
haftmann@41790
    79
haftmann@41790
    80
def extract_isabelle_run_summary(logdata):
haftmann@41790
    81
krauss@42765
    82
    re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE)
haftmann@41790
    83
    summary = '\n'.join(re_error.findall(logdata))
haftmann@41790
    84
    if summary == '':
haftmann@41790
    85
        summary = 'ok'
haftmann@41790
    86
haftmann@41790
    87
    return summary
haftmann@41790
    88
haftmann@41790
    89
haftmann@41790
    90
def isabelle_usedir(env, isa_path, isabelle_usedir_opts, base_image, dir_name):
haftmann@41790
    91
haftmann@41790
    92
    return env.run_process('%s/bin/isabelle' % isa_path, 'usedir',
haftmann@41790
    93
        isabelle_usedir_opts, base_image, dir_name)
haftmann@41790
    94
haftmann@41790
    95
haftmann@41790
    96
def isabelle_dependency_only(env, case, paths, dep_paths, playground):
haftmann@41790
    97
haftmann@41790
    98
    p = paths[0]
haftmann@41790
    99
    result = path.join(p, 'heaps')
haftmann@41790
   100
    os.makedirs(result)
haftmann@41790
   101
    for dep_path in dep_paths:
haftmann@41790
   102
        subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result])
haftmann@41790
   103
haftmann@41790
   104
    return (True, 'ok', {}, {}, result)
haftmann@41790
   105
haftmann@41790
   106
haftmann@41790
   107
def build_isabelle_image(subdir, base, img, env, case, paths, dep_paths, playground):
haftmann@41790
   108
haftmann@41790
   109
    p = paths[0]
haftmann@41790
   110
    dep_path = dep_paths[0]
haftmann@41790
   111
    prepare_isabelle_repository(p, env.settings.contrib, dep_path)
haftmann@41790
   112
    os.chdir(path.join(p, 'src', subdir))
haftmann@41790
   113
haftmann@41790
   114
    (return_code, log) = isabelle_usedir(env, p, '-b', base, img)
haftmann@41790
   115
haftmann@41790
   116
    result = path.join(p, 'heaps')
haftmann@41790
   117
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   118
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
haftmann@41790
   119
haftmann@41790
   120
haftmann@41790
   121
def isabelle_makeall(env, case, paths, dep_paths, playground):
haftmann@41790
   122
haftmann@41790
   123
    p = paths[0]
haftmann@41790
   124
    dep_path = dep_paths[0]
haftmann@41790
   125
    prepare_isabelle_repository(p, env.settings.contrib, dep_path)
haftmann@41790
   126
    os.chdir(p)
haftmann@41790
   127
haftmann@41790
   128
    (return_code, log) = env.run_process('%s/bin/isabelle' % p, 'makeall', '-k', 'all')
haftmann@41790
   129
haftmann@41790
   130
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   131
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, None)
haftmann@41790
   132
haftmann@41790
   133
haftmann@41790
   134
# Isabelle configurations
haftmann@41790
   135
haftmann@41790
   136
@configuration(repos = [Isabelle], deps = [])
haftmann@41790
   137
def Pure(env, case, paths, dep_paths, playground):
haftmann@41790
   138
    """Pure image"""
haftmann@41790
   139
haftmann@41790
   140
    p = paths[0]
haftmann@41790
   141
    prepare_isabelle_repository(p, env.settings.contrib, '')
haftmann@41790
   142
    os.chdir(path.join(p, 'src', 'Pure'))
haftmann@41790
   143
haftmann@41790
   144
    (return_code, log) = env.run_process('%s/bin/isabelle' % p, 'make', 'Pure')
haftmann@41790
   145
haftmann@41790
   146
    result = path.join(p, 'heaps')
haftmann@41790
   147
    return (return_code == 0, extract_isabelle_run_summary(log),
haftmann@41790
   148
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
haftmann@41790
   149
haftmann@41790
   150
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
haftmann@41790
   151
def FOL(*args):
haftmann@41790
   152
    """FOL image"""
haftmann@41790
   153
    return build_isabelle_image('FOL', 'Pure', 'FOL', *args)
haftmann@41790
   154
haftmann@41790
   155
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
haftmann@41790
   156
def HOL(*args):
haftmann@41790
   157
    """HOL image"""
haftmann@41790
   158
    return build_isabelle_image('HOL', 'Pure', 'HOL', *args)
haftmann@41790
   159
haftmann@41790
   160
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   161
def HOL_HOLCF(*args):
haftmann@41790
   162
    """HOL-HOLCF image"""
haftmann@41790
   163
    return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args)
haftmann@41790
   164
haftmann@41790
   165
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   166
def HOL_Nominal(*args):
haftmann@41790
   167
    """HOL-Nominal image"""
haftmann@41790
   168
    return build_isabelle_image('HOL/Nominal', 'HOL', 'HOL-Nominal', *args)
haftmann@41790
   169
haftmann@41790
   170
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   171
def HOL_Word(*args):
haftmann@41790
   172
    """HOL-Word image"""
haftmann@41790
   173
    return build_isabelle_image('HOL/Word', 'HOL', 'HOL-Word', *args)
haftmann@41790
   174
haftmann@41790
   175
@configuration(repos = [Isabelle], deps = [
haftmann@41790
   176
    (HOL, [0]),
haftmann@41790
   177
    (HOL_HOLCF, [0]),
haftmann@41790
   178
    (HOL_Nominal, [0]),
haftmann@41790
   179
    (HOL_Word, [0])
haftmann@41790
   180
  ])
haftmann@41790
   181
def AFP_images(*args):
haftmann@41790
   182
    """Isabelle images needed for the AFP"""
haftmann@41790
   183
    return isabelle_dependency_only(*args)
haftmann@41790
   184
haftmann@41790
   185
@configuration(repos = [Isabelle], deps = [
haftmann@41790
   186
    (AFP_images, [0])
haftmann@41790
   187
  ])
haftmann@41790
   188
def Isabelle_makeall(*args):
haftmann@41790
   189
    """Isabelle makeall"""
haftmann@41790
   190
    return isabelle_makeall(*args)
haftmann@41790
   191
haftmann@41790
   192
haftmann@41790
   193
# Mutabelle configurations
haftmann@41790
   194
haftmann@41790
   195
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground):
haftmann@41790
   196
haftmann@41790
   197
    """Mutant testing for counterexample generators in Isabelle"""
haftmann@41790
   198
haftmann@41790
   199
    (loc_isabelle,) = paths
haftmann@41790
   200
    (dep_isabelle,) = dep_paths
haftmann@41790
   201
    prepare_isabelle_repository(loc_isabelle, env.settings.contrib, dep_isabelle)
haftmann@41790
   202
    os.chdir(loc_isabelle)
haftmann@41790
   203
    
haftmann@41790
   204
    (return_code, log) = env.run_process('bin/isabelle',
haftmann@41790
   205
      'mutabelle', '-O', playground, theory)
haftmann@41790
   206
    
haftmann@41790
   207
    try:
haftmann@41790
   208
        mutabelle_log = util.readfile(path.join(playground, 'log'))
haftmann@41790
   209
    except IOError:
haftmann@41790
   210
        mutabelle_log = ''
haftmann@41790
   211
haftmann@41790
   212
    return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log),
haftmann@42521
   213
      {'timing': extract_isabelle_run_timing(log)},
haftmann@42521
   214
      {'log': log, 'mutabelle_log': mutabelle_log}, None)
haftmann@41790
   215
haftmann@41790
   216
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   217
def Mutabelle_Relation(*args):
haftmann@41790
   218
    """Mutabelle regression suite on Relation theory"""
haftmann@41790
   219
    return invoke_mutabelle('Relation', *args)
haftmann@41790
   220
haftmann@41790
   221
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   222
def Mutabelle_List(*args):
haftmann@41790
   223
    """Mutabelle regression suite on List theory"""
haftmann@41790
   224
    return invoke_mutabelle('List', *args)
haftmann@41790
   225
haftmann@41790
   226
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   227
def Mutabelle_Set(*args):
haftmann@41790
   228
    """Mutabelle regression suite on Set theory"""
haftmann@41790
   229
    return invoke_mutabelle('Set', *args)
haftmann@41790
   230
haftmann@41790
   231
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   232
def Mutabelle_Map(*args):
haftmann@41790
   233
    """Mutabelle regression suite on Map theory"""
haftmann@41790
   234
    return invoke_mutabelle('Map', *args)
haftmann@41790
   235
haftmann@41790
   236
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   237
def Mutabelle_Divides(*args):
haftmann@41790
   238
    """Mutabelle regression suite on Divides theory"""
haftmann@41790
   239
    return invoke_mutabelle('Divides', *args)
haftmann@41790
   240
haftmann@41790
   241
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   242
def Mutabelle_MacLaurin(*args):
haftmann@41790
   243
    """Mutabelle regression suite on MacLaurin theory"""
haftmann@41790
   244
    return invoke_mutabelle('MacLaurin', *args)
haftmann@41790
   245
haftmann@41790
   246
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
haftmann@41790
   247
def Mutabelle_Fun(*args):
haftmann@41790
   248
    """Mutabelle regression suite on Fun theory"""
haftmann@41790
   249
    return invoke_mutabelle('Fun', *args)
krauss@42910
   250
krauss@42910
   251
krauss@42910
   252
# Judgement Day configurations
krauss@42910
   253
krauss@42959
   254
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices')
krauss@42910
   255
krauss@42910
   256
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground):
krauss@42910
   257
    """Judgement Day regression suite"""
krauss@42910
   258
krauss@42910
   259
    isa = paths[0]
krauss@42910
   260
    dep_path = dep_paths[0]
krauss@42910
   261
krauss@42910
   262
    os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd
krauss@42910
   263
    prepare_isabelle_repository(isa, env.settings.contrib, dep_path)
krauss@42910
   264
krauss@42910
   265
    output = {}
krauss@42910
   266
    success_rates = {}
krauss@42910
   267
    some_success = False
krauss@42910
   268
krauss@42910
   269
    for atp in judgement_day_provers:
krauss@42910
   270
krauss@42910
   271
        log_dir = path.join(playground, 'mirabelle_log_' + atp)
krauss@42910
   272
        os.makedirs(log_dir)
krauss@42910
   273
krauss@42910
   274
        cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy'
krauss@42910
   275
               % (isa, log_dir, atp, opts, theory))
krauss@42910
   276
krauss@42910
   277
        os.system(cmd)
krauss@42910
   278
        output[atp] = util.readfile(path.join(log_dir, theory + '.log'))
krauss@42910
   279
krauss@42910
   280
        percentages = list(re.findall(r'Success rate: (\d+)%', output[atp]))
krauss@42910
   281
        if len(percentages) == 2:
krauss@42910
   282
            success_rates[atp] = {
krauss@42910
   283
                'sledgehammer': int(percentages[0]),
krauss@42910
   284
                'metis': int(percentages[1])}
krauss@42910
   285
            if success_rates[atp]['sledgehammer'] > 0:
krauss@42910
   286
                some_success = True
krauss@42910
   287
        else:
krauss@42910
   288
            success_rates[atp] = {}
krauss@42910
   289
krauss@42910
   290
krauss@42910
   291
    data = {'success_rates': success_rates}
krauss@42910
   292
    raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers)
krauss@42910
   293
    # FIXME: summary?
krauss@42910
   294
    return (some_success, '', data, raw_attachments, None)
krauss@42910
   295
krauss@42910
   296
krauss@42910
   297
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   298
def JD_NS(*args):
krauss@42910
   299
    """Judgement Day regression suite NS"""
krauss@42910
   300
    return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args)
krauss@42910
   301
krauss@42910
   302
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   303
def JD_FTA(*args):
krauss@42910
   304
    """Judgement Day regression suite FTA"""
krauss@42910
   305
    return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args)
krauss@42910
   306
krauss@42910
   307
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   308
def JD_Hoare(*args):
krauss@42910
   309
    """Judgement Day regression suite Hoare"""
krauss@42913
   310
    return judgement_day('Isabelle/src/HOL/IMPP', 'Hoare', 'prover_timeout=10', *args)
krauss@42910
   311
krauss@42910
   312
@configuration(repos = [Isabelle], deps = [(HOL, [0])])
krauss@42910
   313
def JD_SN(*args):
krauss@42910
   314
    """Judgement Day regression suite SN"""
krauss@42913
   315
    return judgement_day('Isabelle/src/HOL/Proofs/Lambda', 'StrongNorm', 'prover_timeout=10', *args)
krauss@42910
   316