File tree Expand file tree Collapse file tree 12 files changed +111
-570
lines changed
Expand file tree Collapse file tree 12 files changed +111
-570
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # Copyright 2016-2024 Swiss National Supercomputing Centre (CSCS/ETH Zurich)
2+ # ReFrame Project Developers. See the top-level LICENSE file for details.
3+ #
4+ # SPDX-License-Identifier: BSD-3-Clause
5+
6+ site_configuration = {
7+ 'systems' : [
8+ {
9+ 'name' : 'envmodsys' ,
10+ 'descr' : 'Generic system using Environment Modules' ,
11+ 'hostnames' : ['.*' ],
12+ 'modules_system' : 'envmod' ,
13+ 'partitions' : [
14+ {
15+ 'name' : 'default' ,
16+ 'scheduler' : 'local' ,
17+ 'launcher' : 'local' ,
18+ 'environs' : ['builtin' ]
19+ }
20+ ]
21+ }
22+ ]
23+ }
Original file line number Diff line number Diff line change 33#
44# SPDX-License-Identifier: BSD-3-Clause
55
6- #
7- # Generic fallback configuration
8- #
9-
106site_configuration = {
117 'systems' : [
128 {
13- 'name' : 'generic ' ,
14- 'descr' : 'Generic example system' ,
9+ 'name' : 'lmodsys ' ,
10+ 'descr' : 'Generic system using Lmod ' ,
1511 'hostnames' : ['.*' ],
1612 'modules_system' : 'lmod' ,
1713 'partitions' : [
2218 'environs' : ['builtin' ]
2319 }
2420 ]
25- },
26- ],
27- 'environments' : [
28- {
29- 'name' : 'builtin' ,
30- 'cc' : 'cc' ,
31- 'cxx' : '' ,
32- 'ftn' : ''
33- },
34- ],
35- 'logging' : [
36- {
37- 'handlers' : [
38- {
39- 'type' : 'stream' ,
40- 'name' : 'stdout' ,
41- 'level' : 'info' ,
42- 'format' : '%(message)s'
43- },
44- {
45- 'type' : 'file' ,
46- 'level' : 'debug' ,
47- 'format' : '[%(asctime)s] %(levelname)s: %(check_info)s: %(message)s' , # noqa: E501
48- 'append' : False
49- }
50- ],
51- 'handlers_perflog' : [
52- {
53- 'type' : 'filelog' ,
54- 'prefix' : '%(check_system)s/%(check_partition)s' ,
55- 'level' : 'info' ,
56- 'format' : (
57- '%(check_job_completion_time)s|reframe %(version)s|'
58- '%(check_info)s|jobid=%(check_jobid)s|'
59- '%(check_perf_var)s=%(check_perf_value)s|'
60- 'ref=%(check_perf_ref)s '
61- '(l=%(check_perf_lower_thres)s, '
62- 'u=%(check_perf_upper_thres)s)|'
63- '%(check_perf_unit)s'
64- ),
65- 'append' : True
66- }
67- ]
6821 }
69- ],
22+ ]
7023}
Original file line number Diff line number Diff line change 33#
44# SPDX-License-Identifier: BSD-3-Clause
55
6- #
7- # Generic fallback configuration
8- #
9-
106site_configuration = {
117 'systems' : [
128 {
13- 'name' : 'generic ' ,
14- 'descr' : 'Generic example system' ,
9+ 'name' : 'spacksys ' ,
10+ 'descr' : 'Generic system using Spack ' ,
1511 'hostnames' : ['.*' ],
1612 'modules_system' : 'spack' ,
1713 'partitions' : [
2218 'environs' : ['builtin' ]
2319 }
2420 ]
25- },
26- ],
27- 'environments' : [
28- {
29- 'name' : 'builtin' ,
30- 'cc' : 'cc' ,
31- 'cxx' : '' ,
32- 'ftn' : ''
33- },
34- ],
35- 'logging' : [
36- {
37- 'handlers' : [
38- {
39- 'type' : 'stream' ,
40- 'name' : 'stdout' ,
41- 'level' : 'info' ,
42- 'format' : '%(message)s'
43- },
44- {
45- 'type' : 'file' ,
46- 'level' : 'debug' ,
47- 'format' : '[%(asctime)s] %(levelname)s: %(check_info)s: %(message)s' , # noqa: E501
48- 'append' : False
49- }
50- ],
51- 'handlers_perflog' : [
52- {
53- 'type' : 'filelog' ,
54- 'prefix' : '%(check_system)s/%(check_partition)s' ,
55- 'level' : 'info' ,
56- 'format' : (
57- '%(check_job_completion_time)s|reframe %(version)s|'
58- '%(check_info)s|jobid=%(check_jobid)s|'
59- '%(check_perf_var)s=%(check_perf_value)s|'
60- 'ref=%(check_perf_ref)s '
61- '(l=%(check_perf_lower_thres)s, '
62- 'u=%(check_perf_upper_thres)s)|'
63- '%(check_perf_unit)s'
64- ),
65- 'append' : True
66- }
67- ]
6821 }
69- ],
22+ ]
7023}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments