You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# arch_target_map has been replaced by node_type_map
309
+
# arch_target_map = {
310
+
# }
313
311
312
+
# Each entry in the node_type_map dictionary describes a build node type. The key is a (descriptive) name for this build node, and its value is a dictionary containing the following build node properties as key-value pairs:
313
+
- os: its operating system (os)
314
+
- cpu_subdir: its CPU architecture
315
+
- slurm_params: the SLURM parameters that need to be passed to submit jobs to it
316
+
- repo_targets: supported repository targets for this node type
317
+
- accel (optional): which accelerators this node has
318
+
# All are strings, except repo_targets, which is a list of strings.
319
+
# Note that the Slurm parameters should typically be chosen such that a single type of node (with one specific type of
320
+
# CPU and one specific type of GPU) should be allocated.
321
+
# Below is an example configuration for a system that contains 4 types of nodes: zen2 CPU nodes, zen4 CPU nodes,
322
+
# GPU nodes with an icelake CPU and A100 GPU, GPU nodes with a zen4 CPU and an H100 GPU.
323
+
# The 'on:' argument to the bot build command determines which node type will be allocated for the build job,
324
+
# e.g. 'bot:build on:arch=zen4,accel=nvidia/cc90 for:...' will match the gpu_h100 node type below.
325
+
# If no 'on:' argument is passed to the build command, the 'for:' argument is used instead,
326
+
# e.g. 'bot:build for:arch=icelake,accel=nvidia/cc80' will match the gpu_a100 node type below.
# awaits_release = job id `{job_id}` awaits release by job manager
361
401
awaits_release_delayed_begin_msg = job id `{job_id}` will be eligible to start in about {delay_seconds} seconds
362
402
awaits_release_hold_release_msg = job id `{job_id}` awaits release by job manager
363
-
initial_comment = New job on instance `{app_name}` for CPU micro-architecture `{arch_name}`{accelerator_spec} for repository `{repo_id}` in job dir `{symlink}`
403
+
new_job_instance_repo = New job on instance `{app_name}` for repository `{repo_id}`
404
+
build_on_arch = Building on: `{on_arch}`{on_accelerator}
405
+
build_for_arch = Building for: `{for_arch}`{for_accelerator}
# initial_comment = New job on instance `{app_name}` for repository `{repo_id}`\nBuilding on: `{on_arch}`{on_accelerator}\nBuilding for: `{for_arch}`{for_accelerator}\nJob dir: `{symlink}` # no longer used
0 commit comments