你已经派生过 gprMax
镜像自地址
https://gitee.com/sunhf/gprMax.git
已同步 2025-08-07 15:10:13 +08:00
Split up reframe tests and pytest unit tests
这个提交包含在:
@@ -0,0 +1,131 @@
|
||||
site_configuration = {
|
||||
"general": [
|
||||
{
|
||||
# Necessary if using the --restore-session flag
|
||||
"keep_stage_files": True
|
||||
}
|
||||
],
|
||||
"systems": [
|
||||
{
|
||||
"name": "archer2",
|
||||
"descr": "ARCHER2",
|
||||
"hostnames": ["uan", "ln", "dvn"],
|
||||
"modules_system": "lmod",
|
||||
"partitions": [
|
||||
{
|
||||
"name": "login",
|
||||
"descr": "Login nodes",
|
||||
"scheduler": "local",
|
||||
"launcher": "local",
|
||||
"environs": ["PrgEnv-gnu", "PrgEnv-cray", "PrgEnv-aocc"],
|
||||
},
|
||||
{
|
||||
"name": "compute",
|
||||
"descr": "Compute nodes",
|
||||
"scheduler": "slurm",
|
||||
"launcher": "srun",
|
||||
"access": [
|
||||
"--hint=nomultithread",
|
||||
"--distribution=block:block",
|
||||
"--partition=standard",
|
||||
"--qos=standard",
|
||||
],
|
||||
"environs": ["PrgEnv-gnu", "PrgEnv-cray", "PrgEnv-aocc"],
|
||||
"max_jobs": 16,
|
||||
},
|
||||
],
|
||||
}
|
||||
],
|
||||
"environments": [
|
||||
{
|
||||
"name": "PrgEnv-gnu",
|
||||
"modules": ["PrgEnv-gnu"],
|
||||
"cc": "cc",
|
||||
"cxx": "CC",
|
||||
"ftn": "ftn",
|
||||
"target_systems": ["archer2"],
|
||||
},
|
||||
{
|
||||
"name": "PrgEnv-cray",
|
||||
"modules": ["PrgEnv-cray"],
|
||||
"cc": "cc",
|
||||
"cxx": "CC",
|
||||
"ftn": "ftn",
|
||||
"target_systems": ["archer2"],
|
||||
},
|
||||
{
|
||||
"name": "PrgEnv-aocc",
|
||||
"modules": ["PrgEnv-aocc"],
|
||||
"cc": "cc",
|
||||
"cxx": "CC",
|
||||
"ftn": "ftn",
|
||||
"target_systems": ["archer2"],
|
||||
},
|
||||
],
|
||||
"logging": [
|
||||
{
|
||||
"level": "debug",
|
||||
"handlers": [
|
||||
{"type": "stream", "name": "stdout", "level": "info", "format": "%(message)s"},
|
||||
{
|
||||
"type": "file",
|
||||
"name": "reframe.out",
|
||||
"level": "info",
|
||||
"format": "[%(asctime)s] %(check_info)s: %(message)s",
|
||||
"append": True,
|
||||
},
|
||||
{
|
||||
"type": "file",
|
||||
"name": "reframe.log",
|
||||
"level": "debug",
|
||||
"format": "[%(asctime)s] %(levelname)s %(levelno)s: %(check_info)s: %(message)s", # noqa: E501
|
||||
"append": False,
|
||||
},
|
||||
],
|
||||
"handlers_perflog": [
|
||||
{
|
||||
"type": "file",
|
||||
"name": "reframe_perf.out",
|
||||
"level": "info",
|
||||
"format": "[%(asctime)s] %(check_info)s job_id=%(check_jobid)s %(check_perfvalues)s",
|
||||
"format_perfvars": "| %(check_perf_var)s: %(check_perf_value)s %(check_perf_unit)s (r: %(check_perf_ref)s l: %(check_perf_lower_thres)s u: %(check_perf_upper_thres)s) ",
|
||||
"append": True,
|
||||
},
|
||||
{
|
||||
"type": "filelog",
|
||||
"prefix": "%(check_system)s/%(check_partition)s",
|
||||
"level": "info",
|
||||
"format": (
|
||||
"%(check_result)s,%(check_job_completion_time)s,"
|
||||
"%(check_info)s,%(check_jobid)s,"
|
||||
"%(check_num_tasks)s,%(check_num_cpus_per_task)s,%(check_num_tasks_per_node)s,"
|
||||
"%(check_perfvalues)s"
|
||||
),
|
||||
"format_perfvars": (
|
||||
"%(check_perf_value)s,%(check_perf_unit)s,"
|
||||
"%(check_perf_ref)s,%(check_perf_lower_thres)s,"
|
||||
"%(check_perf_upper_thres)s,"
|
||||
),
|
||||
"append": True,
|
||||
},
|
||||
{
|
||||
"type": "filelog",
|
||||
"prefix": "%(check_system)s/%(check_partition)s/latest",
|
||||
"level": "info",
|
||||
"format": (
|
||||
"%(check_result)s,%(check_job_completion_time)s,"
|
||||
"%(check_info)s,%(check_jobid)s,"
|
||||
"%(check_num_tasks)s,%(check_num_cpus_per_task)s,%(check_num_tasks_per_node)s,"
|
||||
"%(check_perfvalues)s"
|
||||
),
|
||||
"format_perfvars": (
|
||||
"%(check_perf_value)s,%(check_perf_unit)s,"
|
||||
"%(check_perf_ref)s,%(check_perf_lower_thres)s,"
|
||||
"%(check_perf_upper_thres)s,"
|
||||
),
|
||||
"append": False,
|
||||
},
|
||||
],
|
||||
}
|
||||
],
|
||||
}
|
在新工单中引用
屏蔽一个用户