-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2138 from cgoveas/main
Updating 1.4.3 changes
- Loading branch information
Showing
27 changed files
with
364 additions
and
104 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...llationGuides/BuildingClusters/OneAPI.rst → .../InstallationGuides/Benchmarks/OneAPI.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
docs/source/InstallationGuides/Benchmarks/OpenMPI_AOCC.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
Open MPI AOCC HPL benchmark for AMD processors | ||
---------------------------------------------- | ||
|
||
**Prerequisites** | ||
|
||
* Provision the cluster and install slurm on all cluster nodes. | ||
* OpenMPI should be installed and compiled with slurm on all cluster nodes or should be available on the NFS share. | ||
|
||
|
||
**To execute multi-node jobs** | ||
|
||
1. Update the following parameters in ``/etc/slurm/slurm.conf``: :: | ||
|
||
SelectType=select/cons_tres | ||
SelectTypeParameters=CR_Core | ||
TaskPlugin=task/affinity,task/cgroup | ||
|
||
2. Restart ``slurmd.service`` on all compute nodes. :: | ||
|
||
systemctl stop slurmd | ||
systemctl start slurmd | ||
|
||
3. Once the service restarts on the compute nodes, restart ``slurmctld.service`` on the manager node. :: | ||
|
||
systemctl stop slurmctld.service | ||
systemctl start slurmctld.service | ||
|
||
4. Job execution can now be initiated. Provide the host list using ``srun`` and ``sbatch``. For example: | ||
|
||
For a job to run on multiple nodes (``omnianode00001.omnia.test``,``omnianode00006.omnia.test`` and,``omnianode00005.omnia.test``) and OpenMPI is compiled and installed on the NFS share (``/home/omnia-share/openmpi/bin/mpirun``), the job can be initiated as below: :: | ||
|
||
|
||
srun -N 3 --partition=mpiexectrial /home/omnia-share/openmpi/bin/mpirun -host omnianode00001.omnia.test,omnianode00006.omnia.test,omnianode00005.omnia.test ./amd-zen-hpl-2023_07_18/xhpl | ||
|
||
For a batch job using the same parameters, the command would be: :: | ||
|
||
|
||
|
||
#!/bin/bash | ||
#SBATCH --job-name=test | ||
#SBATCH --output=test.log | ||
#SBATCH --partition=normal | ||
#SBATCH -N 3 | ||
#SBATCH --time=10:00 | ||
#SBATCH --ntasks=2 | ||
source /home/omnia-share/setenv_AOCC.sh | ||
export PATH=$PATH:/home/omnia-share/openmpi/bin | ||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/omnia-share/openmpi/lib | ||
|
||
mpirun -host omnianode00001.omnia.test,omnianode00005.omnia.test ./amd-zen-hpl-2023_07_18/xhpl | ||
srun sleep 30 | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Running HPC benchmarks on omnia clusters | ||
========================================= | ||
|
||
.. toctree:: | ||
OneAPI | ||
OpenMPI_AOCC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,32 @@ | ||
Configuring the cluster | ||
======================= | ||
|
||
**Features enabled by omnia.yml** | ||
|
||
* Centralized authentication: Once all the required parameters in `security_config.yml <schedulerinputparams.html>`_ are filled in, ``omnia.yml`` can be used to set up FreeIPA/LDAP. | ||
|
||
* Slurm: Once all the required parameters in `omnia_config.yml <schedulerinputparams.html>`_ are filled in, ``omnia.yml`` can be used to set up slurm. | ||
|
||
* Login Node (Additionally secure login node) | ||
|
||
* Kubernetes: Once all the required parameters in `omnia_config.yml <schedulerinputparams.html>`_ are filled in, ``omnia.yml`` can be used to set up kubernetes. | ||
|
||
* BeeGFS bolt on installation: Once all the required parameters in `storage_config.yml <schedulerinputparams.html>`_ are filled in, ``omnia.yml`` can be used to set up NFS. | ||
|
||
* NFS bolt on support: : Once all the required parameters in `storage_config.yml <schedulerinputparams.html>`_ are filled in, ``omnia.yml`` can be used to set up BeeGFS. | ||
|
||
|
||
|
||
.. toctree:: | ||
schedulerinputparams | ||
schedulerprereqs | ||
installscheduler | ||
Authentication | ||
OneAPI | ||
BeeGFS | ||
NFS | ||
OneAPI | ||
OpenMPI_AOCC | ||
KernelUpdateRHEL | ||
|
||
|
||
|
13 changes: 10 additions & 3 deletions
13
docs/source/InstallationGuides/BuildingClusters/installscheduler.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.