Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions docs/software/sciapps/lammps.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,15 @@ A development view is also provided, which contains all libraries and command-li

### Running LAMMPS with Kokkos on the HPC Platform

To start a job, two bash scripts are potentially required: a [SLURM] submission script, and a wrapper for `numactl` which sets up CPU and memory binding.

The submission script is the following:
To start a job, the following bash [SLURM] submission script is required:

```bash title="run_lammps_kokkos.sh"
#!/bin/bash -l
#SBATCH --job-name=<JOB_NAME>
#SBATCH --time=01:00:00 (1)
#SBATCH --nodes=2
#SBATCH --ntasks-per-node=4 (2)
#SBATCH --gpus-per-node=4
#SBATCH --gpus-per-task=1
#SBATCH --gpu-bind=per_task:1
#SBATCH --account=<ACCOUNT> (3)
#SBATCH --uenv=<LAMMPS_UENV>:/user-environment (4)
#SBATCH --view=kokkos (5)
Expand Down