initial testing with Zensical

This commit is a test run, currently I would stick with MM proper until
Zensical is more mature. Hopefully in about half a year.

Missing features:
- blog for news articles (using template at the moment, not ideal)
This commit is contained in:
2026-01-07 15:17:22 +01:00
parent 5f759a629a
commit 8776887a1e
15 changed files with 349 additions and 36 deletions

View File

@@ -52,7 +52,11 @@ The following settings are the minimum required for running a job in the Merlin
#SBATCH --clusters=<cluster_name> # Possible values: merlin5, merlin6, gmerlin6
```
Refer to the documentation of each cluster ([**`merlin6`**](../slurm-configuration.md),[**`gmerlin6`**](../../gmerlin6/slurm-configuration.md),[**`merlin5`**](../../merlin5/slurm-configuration.md) for further information.
Refer to the documentation of each cluster
[**`merlin6`**](../slurm-configuration.md),
[**`gmerlin6`**](../gmerlin6/slurm-configuration.md),
[**`merlin5`**](../../merlin5/slurm-configuration.md) for further
information.
* **Partitions:** except when using the *default* partition for each cluster, one needs to specify the partition:
@@ -60,7 +64,11 @@ The following settings are the minimum required for running a job in the Merlin
#SBATCH --partition=<partition_name> # Check each cluster documentation for possible values
```
Refer to the documentation of each cluster ([**`merlin6`**](../slurm-configuration.md),[**`gmerlin6`**](../../gmerlin6/slurm-configuration.md),[**`merlin5`**](../../merlin5/slurm-configuration.md) for further information.
Refer to the documentation of each cluster
[**`merlin6`**](../slurm-configuration.md),
[**`gmerlin6`**](../gmerlin6/slurm-configuration.md),
[**`merlin5`**](../../merlin5/slurm-configuration.md) for further
information.
* **[Optional] Disabling shared nodes**: by default, nodes are not exclusive. Hence, multiple users can run in the same node. One can request exclusive node usage with the following option:
@@ -74,7 +82,11 @@ The following settings are the minimum required for running a job in the Merlin
#SBATCH --time=<D-HH:MM:SS> # Can not exceed the partition `MaxTime`
```
Refer to the documentation of each cluster ([**`merlin6`**](../slurm-configuration.md),[**`gmerlin6`**](../../gmerlin6/slurm-configuration.md),[**`merlin5`**](../../merlin5/slurm-configuration.md) for further information about partition `MaxTime` values.
Refer to the documentation of each cluster
[**`merlin6`**](../slurm-configuration.md),
[**`gmerlin6`**](../gmerlin6/slurm-configuration.md),
[**`merlin5`**](../../merlin5/slurm-configuration.md) for further information
about partition `MaxTime` values.
* **Output and error files**: by default, Slurm script will generate standard output (`slurm-%j.out`, where `%j` is the job_id) and error (`slurm-%j.err`, where `%j` is the job_id) files in the directory from where the job was submitted. Users can change default name with the following options:
@@ -92,8 +104,14 @@ The following settings are the minimum required for running a job in the Merlin
#SBATCH --hint=nomultithread # Don't use extra threads with in-core multi-threading.
```
Refer to the documentation of each cluster ([**`merlin6`**](../slurm-configuration.md),[**`gmerlin6`**](../../gmerlin6/slurm-configuration.md),[**`merlin5`**](../../merlin5/slurm-configuration.md) for further information about node configuration and Hyper-Threading.
Consider that, sometimes, depending on your job requirements, you might need also to setup how many `--ntasks-per-core` or `--cpus-per-task` (even other options) in addition to the `--hint` command. Please, contact us in case of doubts.
Refer to the documentation of each cluster
([**`merlin6`**](../slurm-configuration.md),
[**`gmerlin6`**](../gmerlin6/slurm-configuration.md),
[**`merlin5`**](../../merlin5/slurm-configuration.md) for further information
about node configuration and Hyper-Threading. Consider that, sometimes,
depending on your job requirements, you might need also to setup how many
`--ntasks-per-core` or `--cpus-per-task` (even other options) in addition to
the `--hint` command. Please, contact us in case of doubts.
!!! tip
In general, for the cluster `merlin6` <span