LLNL / ATS

ATS - Automated Testing System - is an open-source, Python-based tool for automating the running of tests of an application across a broad range of high performance computers.
BSD 3-Clause "New" or "Revised" License
7 stars 5 forks source link

slurm: deprecation of --shared #32

Closed dawson6 closed 3 years ago

dawson6 commented 3 years ago

From Ben Liu:

slurmProcessorScheduled.py:292

    if self.exclusive == True:
        ex_or_sh = "--exclusive"
    else:
        ex_or_sh = "--share"

uses a deprecated (and no longer existing) flag. The correct flag is “--exclusive=user”

dawson6 commented 3 years ago

Shawn is updating this logic and testing with a private 7.0.4 install on both alastor (new slurm) an genie (old slurm)

dawson6 commented 3 years ago

The use of shared has been updated and will be merged.