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
Each system is associated with a set of properties, which in this case are the following:
74
74
75
75
* ``name``: The name of the system.
76
76
This should be an alphanumeric string (dashes ``-`` are allowed) and it will be used to refer to this system in other contexts.
77
77
* ``descr``: A detailed description of the system.
78
78
* ``hostnames``: This is a list of hostname patterns following the `Python Regular Expression Syntax <https://docs.python.org/3/library/re.html#regular-expression-syntax>`__, which will be used by ReFrame when it tries to automatically select a configuration entry for the current system.
79
-
* ``modules_system``: In our example, this is only defined for Piz Daint and refers to the environment modules system that should be used for loading environment modules on this system.
80
-
In this case, the classic Tcl implementation of the `environment modules <https://sourceforge.net/projects/modules/files/Modules/modules-3.2.10/>`__.
81
-
For a complete list of the supported modules systems, see `here <config_reference.html#.systems[].modules_system>`__.
79
+
* ``modules_system``: This refers to the modules management backend which should be used for loading environment modules on this system.
80
+
Multiple backends are supported, as well as the special ``nomod`` backend which implements the different modules system operations as no-ops.
81
+
For the complete list of the supported modules systems, see `here <config_reference.html#.systems[].modules_system>`__.
82
82
* ``partitions``: The list of partitions that are defined for this system.
83
83
Each partition is defined as a separate object.
84
84
We devote the rest of this section in system partitions, since they are an essential part of ReFrame's configuration.
@@ -90,7 +90,7 @@ The ``login`` partition refers to the login nodes of the system, whereas the ``g
90
90
Let's pick the ``gpu`` partition and look into it in more detail:
0 commit comments