diff --git a/configuration/tesseract_settings.py b/configuration/tesseract_settings.py deleted file mode 100644 index eec7282..0000000 --- a/configuration/tesseract_settings.py +++ /dev/null @@ -1,130 +0,0 @@ -# -# ReFrame generic settings: for Cirrus -# - - -class ReframeSettings: - reframe_module = None - job_poll_intervals = [1, 2, 3] - job_submit_timeout = 60 - checks_path = ['checks/'] - checks_path_recurse = True - - site_configuration = { - 'systems': { - 'tesseract': { - 'descr': 'Tesseract', - 'hostnames': ['login'], - 'modules_system': 'tmod', - 'partitions': { - 'login_ser': { - 'scheduler': 'local', - 'modules': [], - 'access': [], - 'environs': ['PrgEnv-intel18', 'PrgEnv-gcc7'], - 'descr': 'Login nodes: serial tests', - 'max_jobs': 4 - }, - - 'compute_impi': { - 'scheduler': 'pbs+impi', - 'modules': [], - 'access': ['-A z01','-l place=scatter:excl'], - 'environs': ['PrgEnv-intel18-impi', 'PrgEnv-gcc7-impi'], - 'descr': 'Compute nodes: Intel MPI parallel jobs', - 'max_jobs': 10 - } - } - } - }, - - 'environments': { - '*': { - 'PrgEnv-intel18': { - 'type': 'ProgEnvironment', - 'modules': ['intel-tools-18/18.0.5.274'], - 'cc': 'icc', - 'cxx': 'icpc', - 'ftn': 'ifort', - }, - - 'PrgEnv-gcc7': { - 'type': 'ProgEnvironment', - 'modules': ['gcc/7.3.0'], - 'cc': 'gcc', - 'cxx': 'g++', - 'ftn': 'gfortran', - }, - - 'PrgEnv-intel18-impi': { - 'type': 'ProgEnvironment', - 'modules': ['intel-tools-18/18.0.5.274', 'intel-mpi-18'], - 'cc': 'mpiicc', - 'cxx': 'mpiicpc', - 'ftn': 'mpiifort', - }, - - 'PrgEnv-gcc7-impi': { - 'type': 'ProgEnvironment', - 'modules': ['gcc/7.3.0', 'intel-mpi-18'], - 'cc': 'mpicc', - 'cxx': 'mpicxx', - 'ftn': 'mpif90', - } - } - } - } - - - logging_config = { - 'level': 'DEBUG', - 'handlers': [ - { - 'type': 'file', - 'name': 'reframe.log', - 'level': 'DEBUG', - 'format': '[%(asctime)s] %(levelname)s: ' - '%(check_info)s: %(message)s', - 'append': False, - }, - - # Output handling - { - 'type': 'stream', - 'name': 'stdout', - 'level': 'INFO', - 'format': '%(message)s' - }, - { - 'type': 'file', - 'name': 'reframe.out', - 'level': 'INFO', - 'format': '%(message)s', - 'append': False, - } - ] - } - - perf_logging_config = { - 'level': 'DEBUG', - 'handlers': [ - { - 'type': 'filelog', - 'prefix': '%(check_system)s/%(check_partition)s', - 'level': 'INFO', - 'format': ( - '%(asctime)s|reframe %(version)s|' - '%(check_info)s|jobid=%(check_jobid)s|' - '%(check_perf_var)s=%(check_perf_value)s|' - 'ref=%(check_perf_ref)s ' - '(l=%(check_perf_lower_thres)s, ' - 'u=%(check_perf_upper_thres)s)|' - '%(check_perf_unit)s' - ), - 'append': True - } - ] - } - - -settings = ReframeSettings()