Admin/mira.py
author hoelzl
Mon, 14 Nov 2011 11:50:52 +0100
changeset 45483 34d07cf7d207
parent 45164 13dddf30c792
child 46200 4a892432e8f1
permissions -rw-r--r--
add Code_Real_Approx_By_Float
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
     1
"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
     2
    Test configuration descriptions for mira.
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
     3
"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
     4
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
     5
import os
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
     6
from os import path
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
     7
from glob import glob
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
     8
import subprocess
42392
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
     9
from datetime import datetime
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    10
import re
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    11
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    12
import util
42392
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
    13
from util import Lazy
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    14
42392
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
    15
from mira.report import Report, Report_Content
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
    16
from mira.case import Case
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
    17
from mira.tools import tool
42823
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
    18
from mira import schedule, misc
42192
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
    19
from mira.environment import scheduler
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
    20
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    21
# build and evaluation tools
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    29
    loc_contrib = path.expanduser(loc_contrib)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    30
    if not path.exists(loc_contrib):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    31
        raise IOError('Bad file: %s' % loc_contrib)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    32
    subprocess.check_call(['ln', '-s', loc_contrib, '%s/contrib' % loc_isabelle])
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    33
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    34
    contributed_components = path.join(loc_isabelle, 'Admin', 'contributed_components')
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    35
    if path.exists(contributed_components):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    36
        components = []
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    37
        for component in util.readfile_lines(contributed_components):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    38
            loc_component = path.join(loc_isabelle, component)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    39
            if path.exists(loc_component):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    40
                components.append(loc_component)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    41
        writer = open(path.join(loc_isabelle, 'etc', 'components'), 'a')
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    42
        for component in components:
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    43
            writer.write(component + '\n')
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    44
        writer.close()
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    45
42821
4629cbaebc04 clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents: 42472
diff changeset
    46
    # provide existing dependencies
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    47
    if loc_dependency_heaps:
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    48
        isabelle_path = loc_dependency_heaps + '/$ISABELLE_IDENTIFIER:$ISABELLE_OUTPUT'
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    49
    else:
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    50
        isabelle_path = '$ISABELLE_OUTPUT'
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    51
42821
4629cbaebc04 clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents: 42472
diff changeset
    52
    # patch settings
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    53
    extra_settings = '''
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    54
ISABELLE_HOME_USER="$ISABELLE_HOME/home_user"
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    55
ISABELLE_OUTPUT="$ISABELLE_HOME/heaps"
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    56
ISABELLE_BROWSER_INFO="$ISABELLE_HOME/browser_info"
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    57
ISABELLE_PATH="%s"
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    58
42821
4629cbaebc04 clarified handling of ISABELLE_USEDIR_OPTIONS in mira
krauss
parents: 42472
diff changeset
    59
ISABELLE_USEDIR_OPTIONS="%s"
42109
f5950b976076 enable Z3 in the test configuration
krauss
parents: 42095
diff changeset
    60
Z3_NON_COMMERCIAL="yes"
42113
3c71630041c7 parameterize configurations by custom settings
krauss
parents: 42109
diff changeset
    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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    63
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    64
    writer = open(path.join(loc_isabelle, 'etc', 'settings'), 'a')
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    65
    writer.write(extra_settings)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    66
    writer.close()
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    67
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    68
45164
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
    69
def isabelle_getenv(isabelle_home, var):
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
    70
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
    71
    _, out = env.run_process('%s/bin/isabelle' % isabelle_home, 'getenv', var)
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
    72
    return out.split('=', 1)[1].strip()
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
    73
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
    74
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    75
def extract_isabelle_run_timing(logdata):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    76
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    77
    def to_secs(h, m, s):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    78
        return (int(h) * 60 + int(m)) * 60 + int(s)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    81
    t = dict((name, {'elapsed': to_secs(eh,em,es), 'cpu': to_secs(ch,cm,cs)})
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    84
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    85
        if name not in t:
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    86
            t[name] = {}
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    87
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    88
        t[name]['threads'] = int(threads)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    89
        t[name]['elapsed_inner'] = elapsed
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    90
        t[name]['cpu_inner'] = cpu
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    93
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    94
    return t
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    95
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    96
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    97
def extract_isabelle_run_summary(logdata):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
    98
41894
7c4a4b02dbdb produce helpful mira summary for more errors
krauss
parents: 41652
diff changeset
    99
    re_error = re.compile(r'^(?:make: )?\*\*\* (.*)$', re.MULTILINE)
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   100
    summary = '\n'.join(re_error.findall(logdata))
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   101
    if summary == '':
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   102
        summary = 'ok'
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   103
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   104
    return summary
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   105
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   106
45164
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   107
def extract_image_size(isabelle_home):
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   108
    
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   109
    isabelle_output = isabelle_getenv(isabelle_home, 'ISABELLE_OUTPUT')
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   110
    return dict((p, path.getsize(path.join(isabelle_output, p))) for p in os.listdir(isabelle_output) if p != "log")
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   111
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   112
def extract_report_data(isabelle_home, logdata):
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   113
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   114
    return {
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   115
        'timing': extract_isabelle_run_timing(logdata),
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   116
        'image_size': extract_image_size(isabelle_home) }
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   117
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   118
42392
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   119
@tool
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   120
def import_isatest_log(env, conf, logfile):
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   121
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   122
    """Imports isatest log file as a report."""
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   123
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   124
    def the_match(pat, text, name):
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   125
        match = re.search(pat, text)
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   126
        if not match: raise Exception('No match found for ' + name)
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   127
        return match.groups()
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   128
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   129
    def parse_date(d):
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   130
        return datetime.strptime(d, '%a %b %d %H:%M:%S %Z %Y')
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   131
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   132
    log = util.readfile(logfile)
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   133
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   134
    (begin_date, host) = the_match(r'-+ starting test -+ ([^-]*) -+ (\S*)', log, 'start tag')
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   135
    (isabelle_version,) = the_match(r'Isabelle version: ([a-f0-9]{12})', log, 'Isabelle version')
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   136
    (success, end_date) = the_match(r'-+ test (successful|FAILED) -+ ([^-]*) -', log, 'end tag')
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   137
    summary = extract_isabelle_run_summary(log)
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   138
    data = {'timing': extract_isabelle_run_timing(log)}
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   139
    atts = {'log': Lazy.simple(log)}
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   140
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   141
    content = Report_Content(summary, host, parse_date(begin_date),
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   142
      parse_date(end_date), Lazy.simple(data), atts)
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   143
    revision = ('Isabelle', env.repositories.get('Isabelle')[isabelle_version].hex())
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   144
    case = Case(conf, [revision])
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   145
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   146
    env.report_db.put(case, (success == 'successful'), content)
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   147
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   148
0045b85101c9 tool for importing nightly isatest logs
krauss
parents: 42197
diff changeset
   149
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   150
def isabelle_usedir(env, isa_path, isabelle_usedir_opts, base_image, dir_name):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   151
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   152
    return env.run_process('%s/bin/isabelle' % isa_path, 'usedir',
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   153
        isabelle_usedir_opts, base_image, dir_name)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   154
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   155
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   156
def isabelle_dependency_only(env, case, paths, dep_paths, playground):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   157
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   158
    isabelle_home = paths[0]
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   159
    result = path.join(isabelle_home, 'heaps')
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   160
    os.makedirs(result)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   161
    for dep_path in dep_paths:
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   162
        subprocess.check_call(['cp', '-R'] + glob(dep_path + '/*') + [result])
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   163
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   164
    return (True, 'ok', {}, {}, result)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   165
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   169
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   170
    isabelle_home = paths[0]
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   174
    os.chdir(path.join(isabelle_home, 'src', subdir))
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   175
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   176
    (return_code, log) = isabelle_usedir(env, isabelle_home, '-b', base, img)
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   177
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   178
    result = path.join(isabelle_home, 'heaps')
45164
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   179
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   180
    return (return_code == 0, extract_isabelle_run_summary(log),
45164
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   181
      extract_report_data(isabelle_home, log), {'log': log}, result)
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   182
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
3a60518900e4 keep smlnj HOL images around
krauss
parents: 42138
diff changeset
   195
    result = path.join(isabelle_home, 'heaps') if keep_results else None
45164
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   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
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   203
42823
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   204
    # FIXME!?
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   205
    if 'lxbroy10' in misc.hostnames():
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   206
        make_options += ('-j', '8')
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   207
        usedir_options += " -M 6 -q 2 -i false -d false"
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   208
        more_settings += '''
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   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
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   211
ML_SYSTEM="polyml-5.4.1"
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   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
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   215
'''
8a3b9dbc7406 mira hack for special settings on lxbroy10
krauss
parents: 42822
diff changeset
   216
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   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
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   221
    os.chdir(isabelle_home)
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   222
42121
bb8986475416 SML_makeall: run with -j 3
krauss
parents: 42120
diff changeset
   223
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'makeall', '-k', *(make_options + (target,)))
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   224
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   225
    return (return_code == 0, extract_isabelle_run_summary(log),
45164
13dddf30c792 mira: collect size of heap images
krauss
parents: 45157
diff changeset
   226
      extract_report_data(isabelle_home, log), {'log': log}, None)
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   227
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   228
43689
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   229
def make_pure(env, case, paths, dep_paths, playground, more_settings=''):
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   230
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   231
    isabelle_home = paths[0]
43689
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   232
    prepare_isabelle_repository(isabelle_home, env.settings.contrib, '',
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   233
      more_settings=more_settings)
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   234
    os.chdir(path.join(isabelle_home, 'src', 'Pure'))
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   235
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   236
    (return_code, log) = env.run_process('%s/bin/isabelle' % isabelle_home, 'make', 'Pure')
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   237
42114
1cdf54e845fa clarified
krauss
parents: 42113
diff changeset
   238
    result = path.join(isabelle_home, 'heaps')
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   239
    return (return_code == 0, extract_isabelle_run_summary(log),
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   240
      {'timing': extract_isabelle_run_timing(log)}, {'log': log}, result)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   241
43689
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   242
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   243
# Isabelle configurations
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   244
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   245
@configuration(repos = [Isabelle], deps = [])
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   246
def Pure(*args):
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   247
    """Pure image"""
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   248
    return make_pure(*args)
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   249
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   250
@configuration(repos = [Isabelle], deps = [])
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   251
def Pure_64(*args):
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   252
    """Pure image (64 bit)"""
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   253
    return make_pure(*args, more_settings='ML_PLATFORM=x86_64-linux')
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   254
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   255
@configuration(repos = [Isabelle], deps = [(Pure, [0])])
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   256
def HOL(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   257
    """HOL image"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   258
    return build_isabelle_image('HOL', 'Pure', 'HOL', *args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   259
43689
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   260
@configuration(repos = [Isabelle], deps = [(Pure_64, [0])])
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   261
def HOL_64(*args):
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   262
    """HOL image (64 bit)"""
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   263
    return build_isabelle_image('HOL', 'Pure', 'HOL', *args, more_settings='ML_PLATFORM=x86_64-linux')
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   264
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   265
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])])
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   266
def HOL_HOLCF_64(*args):
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   267
    """HOL-HOLCF image (64 bit)"""
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   268
    return build_isabelle_image('HOL/HOLCF', 'HOL', 'HOLCF', *args, more_settings='ML_PLATFORM=x86_64-linux')
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   269
43689
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   270
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])])
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   271
def HOL_Nominal_64(*args):
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   272
    """HOL-Nominal image (64 bit)"""
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   273
    return build_isabelle_image('HOL/Nominal', 'HOL', 'HOL-Nominal', *args, more_settings='ML_PLATFORM=x86_64-linux')
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   274
43689
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   275
@configuration(repos = [Isabelle], deps = [(HOL_64, [0])])
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   276
def HOL_Word_64(*args):
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   277
    """HOL-Word image (64 bit)"""
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   278
    return build_isabelle_image('HOL/Word', 'HOL', 'HOL-Word', *args, more_settings='ML_PLATFORM=x86_64-linux')
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   279
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   280
@configuration(repos = [Isabelle], deps = [
43689
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   281
    (HOL_64, [0]),
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   282
    (HOL_HOLCF_64, [0]),
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   283
    (HOL_Nominal_64, [0]),
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   284
    (HOL_Word_64, [0])
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   285
  ])
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   286
def AFP_images(*args):
43689
b8d79bd6029e 64bit versions of some mira configurations
krauss
parents: 43688
diff changeset
   287
    """Isabelle images needed for the AFP (64 bit)"""
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   288
    return isabelle_dependency_only(*args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   291
def Isabelle_makeall(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   292
    """Isabelle makeall"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   293
    return isabelle_makeall(*args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   294
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   295
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   296
# Mutabelle configurations
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   297
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   298
def invoke_mutabelle(theory, env, case, paths, dep_paths, playground):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   299
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   300
    """Mutant testing for counterexample generators in Isabelle"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   301
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   302
    (loc_isabelle,) = paths
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   309
    os.chdir(loc_isabelle)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   310
    
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   311
    (return_code, log) = env.run_process('bin/isabelle',
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   312
      'mutabelle', '-O', playground, theory)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   313
    
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   314
    try:
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   315
        mutabelle_log = util.readfile(path.join(playground, 'log'))
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   316
    except IOError:
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   317
        mutabelle_log = ''
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   318
42472
8a33a5596ba8 mutabelle reports: parse results out of log file
krauss
parents: 42393
diff changeset
   319
    mutabelle_data = dict(
8a33a5596ba8 mutabelle reports: parse results out of log file
krauss
parents: 42393
diff changeset
   320
        (tool, {'counterexample': c, 'no_counterexample': n, 'timeout': t, 'error': e})
8a33a5596ba8 mutabelle reports: parse results out of log file
krauss
parents: 42393
diff changeset
   321
        for tool, c, n, t, e in re.findall(r'(\S+)\s+: C: (\d+) N: (\d+) T: (\d+) E: (\d+)', log))
8a33a5596ba8 mutabelle reports: parse results out of log file
krauss
parents: 42393
diff changeset
   322
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   323
    return (return_code == 0 and mutabelle_log != '', extract_isabelle_run_summary(log),
42472
8a33a5596ba8 mutabelle reports: parse results out of log file
krauss
parents: 42393
diff changeset
   324
      {'mutabelle_results': {theory: mutabelle_data}},
41652
4f4336e730b9 report mutabelle log in mira configuration
haftmann
parents: 41554
diff changeset
   325
      {'log': log, 'mutabelle_log': mutabelle_log}, None)
41542
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   328
def Mutabelle_Relation(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   329
    """Mutabelle regression suite on Relation theory"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   330
    return invoke_mutabelle('Relation', *args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   333
def Mutabelle_List(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   334
    """Mutabelle regression suite on List theory"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   335
    return invoke_mutabelle('List', *args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   338
def Mutabelle_Set(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   339
    """Mutabelle regression suite on Set theory"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   340
    return invoke_mutabelle('Set', *args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   343
def Mutabelle_Map(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   344
    """Mutabelle regression suite on Map theory"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   345
    return invoke_mutabelle('Map', *args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   348
def Mutabelle_Divides(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   349
    """Mutabelle regression suite on Divides theory"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   350
    return invoke_mutabelle('Divides', *args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   353
def Mutabelle_MacLaurin(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   354
    """Mutabelle regression suite on MacLaurin theory"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   355
    return invoke_mutabelle('MacLaurin', *args)
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   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
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   358
def Mutabelle_Fun(*args):
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   359
    """Mutabelle regression suite on Fun theory"""
a5478b1c8b8a configuration file for mira
haftmann
parents:
diff changeset
   360
    return invoke_mutabelle('Fun', *args)
42040
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   361
42393
c9bf3f8a8930 scheduler for Mutabelle regression
krauss
parents: 42392
diff changeset
   362
mutabelle_confs = 'Mutabelle_Relation Mutabelle_List Mutabelle_Set Mutabelle_Map Mutabelle_Divides Mutabelle_MacLaurin Mutabelle_Fun'.split(' ')
c9bf3f8a8930 scheduler for Mutabelle regression
krauss
parents: 42392
diff changeset
   363
c9bf3f8a8930 scheduler for Mutabelle regression
krauss
parents: 42392
diff changeset
   364
@scheduler()
c9bf3f8a8930 scheduler for Mutabelle regression
krauss
parents: 42392
diff changeset
   365
def mutabelle_scheduler(env):
c9bf3f8a8930 scheduler for Mutabelle regression
krauss
parents: 42392
diff changeset
   366
    """Scheduler for Mutabelle."""
c9bf3f8a8930 scheduler for Mutabelle regression
krauss
parents: 42392
diff changeset
   367
    return schedule.age_scheduler(env, 'Isabelle', mutabelle_confs)
42040
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   368
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   369
# Judgement Day configurations
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   370
42095
a8598661d5eb added more judgement day provers
krauss
parents: 42058
diff changeset
   371
judgement_day_provers = ('e', 'spass', 'vampire', 'z3', 'cvc3', 'yices')
42040
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   372
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   373
def judgement_day(base_path, theory, opts, env, case, paths, dep_paths, playground):
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   374
    """Judgement Day regression suite"""
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   375
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   376
    isa = paths[0]
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   377
    dep_path = dep_paths[0]
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   378
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   379
    os.chdir(path.join(playground, '..', base_path)) # Mirabelle requires specific cwd
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   380
    prepare_isabelle_repository(isa, env.settings.contrib, dep_path)
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   381
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   382
    output = {}
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   383
    success_rates = {}
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   384
    some_success = False
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   385
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   386
    for atp in judgement_day_provers:
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   387
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   388
        log_dir = path.join(playground, 'mirabelle_log_' + atp)
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   389
        os.makedirs(log_dir)
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   390
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   391
        cmd = ('%s/bin/isabelle mirabelle -q -O %s sledgehammer[prover=%s,%s] %s.thy'
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   392
               % (isa, log_dir, atp, opts, theory))
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   393
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   394
        os.system(cmd)
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   395
        output[atp] = util.readfile(path.join(log_dir, theory + '.log'))
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   396
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   397
        percentages = list(re.findall(r'Success rate: (\d+)%', output[atp]))
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   398
        if len(percentages) == 2:
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   399
            success_rates[atp] = {
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   400
                'sledgehammer': int(percentages[0]),
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   401
                'metis': int(percentages[1])}
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   402
            if success_rates[atp]['sledgehammer'] > 0:
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   403
                some_success = True
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   404
        else:
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   405
            success_rates[atp] = {}
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   406
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   407
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   408
    data = {'success_rates': success_rates}
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   409
    raw_attachments = dict((atp + "_output", output[atp]) for atp in judgement_day_provers)
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   410
    # FIXME: summary?
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   411
    return (some_success, '', data, raw_attachments, None)
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   412
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   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
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   415
def JD_NS(*args):
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   416
    """Judgement Day regression suite NS"""
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   417
    return judgement_day('Isabelle/src/HOL/Auth', 'NS_Shared', 'prover_timeout=10', *args)
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   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
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   420
def JD_FTA(*args):
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   421
    """Judgement Day regression suite FTA"""
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   422
    return judgement_day('Isabelle/src/HOL/Library', 'Fundamental_Theorem_Algebra', 'prover_timeout=10', *args)
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   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
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   425
def JD_Hoare(*args):
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   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
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   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
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   430
def JD_SN(*args):
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   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
869df9b88deb added judgement day configurations
krauss
parents: 41894
diff changeset
   433
42116
b9ae421fbcc7 added configurations SML_HOL and SML_makeall (even though the latter is practically infeasible)
krauss
parents: 42115
diff changeset
   434
42192
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
   435
JD_confs = 'JD_NS JD_FTA JD_Hoare JD_SN JD_Arrow JD_FFT JD_Jinja JD_QE JD_S2S'.split(' ')
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
   436
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
   437
@scheduler()
42197
5f311600ba26 fixed accidental redefinition
krauss
parents: 42192
diff changeset
   438
def judgement_day_scheduler(env):
42192
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
   439
    """Scheduler for Judgement Day."""
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
   440
    return schedule.age_scheduler(env, 'Isabelle', JD_confs)
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
   441
906780d5138e scheduler for judgement day
krauss
parents: 42186
diff changeset
   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
3a60518900e4 keep smlnj HOL images around
krauss
parents: 42138
diff changeset
   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
b28745c3ddce forgotten qualifier
krauss
parents: 43894
diff changeset
   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
1e2aa420c660 the HOL4PROOFS setting is actually HOL4_PROOFS
krauss
parents: 43897
diff changeset
   493
      more_settings=('HOL4_PROOFS="%s"' % proofs_dir), target='HOL-Generate-HOLLight')