1. 29 Nov, 2018 1 commit
  2. 28 Nov, 2018 8 commits
  3. 27 Nov, 2018 12 commits
  4. 26 Nov, 2018 4 commits
  5. 23 Nov, 2018 3 commits
  6. 22 Nov, 2018 1 commit
    • Morris Jette's avatar
      Add NO_KILL env var support · 45d4d019
      Morris Jette authored
      Add support for SALLOC/SBATCH/SLURM_NO_KILL environment variables.
      Add salloc/sbatch/srun support for optional "--no-kill=off" option to
      disable the environment variables.
      Needed for a USGS procurement.
      45d4d019
  7. 21 Nov, 2018 11 commits
    • Michael Hinton's avatar
      Update docs relating to the --export option for sbatch, srun · 5bc5a02a
      Michael Hinton authored
      Explain gotchas with --export when an implicit --get-user-env is
      triggered.
      Correct example in the docs; `--export=EDITOR,ALL` does not make any
      sense.
      Explain how env vars are propagated with srun and sbatch when `ALL` is
      specified; document their differences.
      Explain that srun --export is implemented in the Launch plugin.
      Fix minor grammatical errors.
      Remove --export reference in salloc.
      
      Bug 6042
      5bc5a02a
    • Tim Wickberg's avatar
      Merge branch 'slurm-18.08' · 136860f6
      Tim Wickberg authored
      136860f6
    • Tim Wickberg's avatar
      Docs - fix some issues with nested unordered lists. · fe7ae073
      Tim Wickberg authored
      Each nested <ul> needs to be within an <li>. And add in one missing </ul>.
      fe7ae073
    • Tim Wickberg's avatar
      Remove all in-page links to #top. · 40d2f336
      Tim Wickberg authored
      You web browser presumably has better navigation controls.
      
      Leave the <a name="top"> anchors in place for now.
      40d2f336
    • Tim Wickberg's avatar
      Merge branch 'slurm-18.08' · 67511758
      Tim Wickberg authored
      67511758
    • Nate Rini's avatar
      459cfa6f
    • Michael Hinton's avatar
      Docs - Improve command/code highlighting CSS · e3322972
      Michael Hinton authored
      Add a light gray highlight to all .commandline HTML elements.
      Make text size for code blocks same as other text.
      
      Bug 6073.
      e3322972
    • Morris Jette's avatar
      Correct anomalies when accounting for GRES with types · 55ea20d8
      Morris Jette authored
      > In slurm.conf:
      > AccountingStorageTRES=gres/craynetwork,gres/gpu
      > $ srun --gres=craynetwork:3,gpu:volta:1,gpu:tesla:1 -N1 sleep 100
      > $ scontrol show job
      >
      > TRES=cpu=1,mem=1000M,node=1,billing=1,fs/disk=0,vmem=0,pages=0,gres/
      > craynetwork=3,gres/gpu=1
      >    TresPerNode=craynetwork:3,gpu:volta:1,gpu:tesla:1
      >
      > Note that TRES is not reporting the total GPU count (1 tesla and 1 volta),
      > but only 1 GPU total
      
      With new logic:
         TRES=cpu=1,mem=1000M,node=1,billing=1,gres/craynetwork=3,gres/gpu=2
         TresPerNode=craynetwork:3,gpu:volta:1,gpu:tesla:1
      
      > =======================================
      >
      > In slurm.conf:
      > AccountingStorageTRES=gres/craynetwork,gres/gpu:volta,gres/gpu:tesla
      > $ srun --gres=craynetwork:3,gpu:2 -N1 sleep 100
      > $ scontrol show job
      >
      > TRES=cpu=1,mem=1000M,node=1,billing=1,fs/disk=0,vmem=0,pages=0,gres/
      > craynetwork=3,gres/gpu:tesla=0,gres/gpu:volta=0
      >    TresPerNode=craynetwork:3,gpu:2
      >
      > Here we the GPUs have to either be tesla or volta, but none are accounted
      > for (in TRES count of both GPU types is 0).
      
      With new logic:
         TRES=cpu=1,mem=1000M,node=1,billing=1,gres/craynetwork=3,gres/gpu:tesla=2
         TresPerNode=craynetwork:3,gpu:2
      
      bug 6070
      55ea20d8
    • Morris Jette's avatar
      Expand and refine GPU accounting test · f2c4eac6
      Morris Jette authored
      bug 6070
      f2c4eac6
    • Morris Jette's avatar
      Merge branch 'slurm-18.08' · c3953128
      Morris Jette authored
      c3953128
    • Morris Jette's avatar
      Improve logging in CPU frequency test · f45b83d6
      Morris Jette authored
      Also increase the maximum frequency before reporting an error
      from 5 to 10 percent
      f45b83d6