Skip to content

Commit e84b09d

Browse files
committed
triton/ref/: minor updating in formatting
1 parent 4b6fe12 commit e84b09d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

triton/ref/slurm.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
``srun`` | On frontend: submit to queue, wait until done, show output. (see options below)
99
``sinteractive`` | Submit job, wait, provide shell on node for interactive playing (X forwarding works, default partition interactive). Exit shell when done. (see options below)
1010
``srun --pty bash`` | (advanced) Another way to run interactive jobs, no X forwarding but simpler. Exit shell when done.
11-
``scancel`` *JOBID* | Cancel a job in queue
11+
``scancel JOBID`` | Cancel a job in queue
1212
``salloc`` | (advanced) Allocate resources from frontend node. Use ``srun`` to run using those resources, ``exit`` to close shell when done (see options below)
1313
``scontrol`` | View/modify job and slurm configuration
1414

@@ -36,7 +36,7 @@
3636
! ``--constraint=FEATURE`` ! request *feature* (see ``slurm features`` for the current list of configured features, or Arch under the :ref:`hardware list <hardware-list>`). Multiple with ``--constraint="hsw|skl"``.
3737
! ``--constraint=localdisk`` ! request nodes that have local disks
3838
! ``--tmp=nnnG`` ! Request ``nnn`` GB of :doc:`local disk storage space </triton/usage/localstorage>`
39-
! ``--array=0-5,7,10-15` ` ! Run job multiple times, use variable ``$SLURM_ARRAY_TASK_ID`` to adjust parameters.
39+
! ``--array=0-5,7,10-15`` ! Run job multiple times, use variable ``$SLURM_ARRAY_TASK_ID`` to adjust parameters.
4040
! ``--mail-type=TYPE`` ! notify of events: ``BEGIN``, ``END``, ``FAIL``, ``ALL``, ``REQUEUE`` (not on triton) or ``ALL.`` MUST BE used with ``--mail-user=`` only
4141
! ``[email protected]`` ! Aalto email to send the notification about the job. External email addresses doesn't work.
4242
``srun`` ! ``-N N_NODES hostname`` ! Print allocated nodes (from within script)

triton/ref/slurm_status.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
Command | Description
66
``slurm q`` ; ``slurm qq`` | Status of your queued jobs (long/short)
77
``slurm partitions`` | Overview of partitions (A/I/O/T=active,idle,other,total)
8-
``slurm cpus`` *PARTITION* | list free CPUs in a partition
9-
``slurm history`` *[1day,2hour,...]* | Show status of recent jobs
10-
``seff`` *JOBID* | Show percent of mem/CPU used in job. See :doc:`Monitoring <../tut/monitoring>`.
11-
``sacct -o TRESUsageInAve -p -j`` *JOBID* | Show GPU efficiency
12-
``slurm j`` *JOBID* | Job details (only while running)
13-
``slurm s`` ; ``slurm ss`` *PARTITION* | Show status of all jobs
8+
``slurm cpus PARTITION`` | list free CPUs in a partition
9+
``slurm history [1day,2hour,...]`` | Show status of recent jobs
10+
``seff JOBID`` | Show percent of mem/CPU used in job. See :doc:`Monitoring <../tut/monitoring>`.
11+
``sacct -o TRESUsageInAve -p -j JOBID`` | Show GPU efficiency
12+
``slurm j JOBID`` | Job details (only while running)
13+
``slurm s`` ; ``slurm ss PARTITION`` | Show status of all jobs
1414
``sacct`` | Full history information (advanced, needs args)
1515

1616
**Full slurm command help:**

0 commit comments

Comments
 (0)