1. 25 Sep, 2015 10 commits
  2. 24 Sep, 2015 13 commits
  3. 23 Sep, 2015 12 commits
  4. 22 Sep, 2015 5 commits
    • Brian Gilmer's avatar
      fix for group whith split entries in /etc/group · 803a0b4c
      Brian Gilmer authored
      If user belongs to a group which has split entries in /etc/group
          search for its username in all groups.
      Ammendment to commit 93ead71a
      bug 1738
      803a0b4c
    • Morris Jette's avatar
      Add new "User Permissions" web page · 6ac9f166
      Morris Jette authored
      6ac9f166
    • Morris Jette's avatar
      rename src/common/mpi.h to slurm_mpi.h · 486a1db7
      Morris Jette authored
      The file is not installed, but this should eliminate any possible
        confusion in its use.
      486a1db7
    • Danny Auble's avatar
      Remove reference to other schedulers. · 8b3e9ca8
      Danny Auble authored
      8b3e9ca8
    • Morris Jette's avatar
      Fix GRES underflow error · 2f3f0bc7
      Morris Jette authored
      If GRES are associated with specific CPUs and a job allocation includes
      GRES, which are not associated with the specific CPUs allocated to the
      job, then when the job is deallocated, an underflow error results. To
      reproduce:
      
      gres.conf:
      Name=gpu File=/dev/tty0 CPUs=0-5
      Name=gpu File=/dev/tty1 CPUs=6-11
      Name=gpu File=/dev/tty2 CPUs=12-17
      Name=gpu File=/dev/tty3 CPUs=18-23
      
      Then
      $ srun --gres=gpu:2 -N1 --ntasks-per-node=2 hostname
      
      In slurmctld log file:
      error: gres/gpu: job 695 dealloc node smd1 topo gres count underflow
      
      Logic modified to increment the count based upon the specific GRES
      actually allocated, ignoring the associated CPUs (too late to consider
      that after the GRES as picked).
      2f3f0bc7