<html style="direction: ltr;">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <style type="text/css">body p { margin-bottom: 0cm; margin-top: 0pt; } </style>
  </head>
  <body bidimailui-charset-is-forced="true" style="direction: ltr;"
    text="#000000" bgcolor="#FFFFFF">
    <p>Hi.</p>
    <p><br>
    </p>
    <div class="moz-cite-prefix">On 8/3/19 12:37 AM, Sistemas NLHPC
      wrote:<br>
    </div>
    <blockquote type="cite"
cite="mid:CAA-VbqWARCKmiQrp_Dr_VuoawxA=GN=U50buURn6Y9r7HtQzbw@mail.gmail.com">
      <meta http-equiv="content-type" content="text/html; charset=UTF-8">
      <div dir="ltr">Hi all,<br>
        <br>
        Currently we have two types of nodes, one with 192GB and another
        with 768GB of RAM, it is required that in nodes of 768 GB it is
        not allowed to execute tasks with less than 192GB, to avoid
        underutilization of resources.<br>
        <br>
        This, because we have nodes that can fulfill the condition of
        executing tasks with 192GB or less.<br>
        <br>
        Is it possible to use some slurm configuration to solve this
        problem?<br>
      </div>
    </blockquote>
    <p>Easiest would be to use features/constraints. In slurm.conf add</p>
    <p>NodeName=DEFAULT RealMemory=196608 Features=192GB Weight=1<br>
    </p>
    <p>NodeName=... (list all nodes with 192GB)</p>
    <p>NodeName=DEFAULT RealMemory=786432 Features=768GB Weight=2</p>
    <p>NodeName=... (list all nodes with 768GB)</p>
    <p><br>
    </p>
    <p>And to run jobs only on node with 192GB in sbatch do</p>
    <p>sbatch -C 192GB ...</p>
    <p><br>
    </p>
    <p>To run jobs on all nodes, simply don't add the constraint to the
      sbatch line, and due to lower weight jobs should prefer to start
      on the 192GB nodes.<br>
    </p>
    <blockquote type="cite"
cite="mid:CAA-VbqWARCKmiQrp_Dr_VuoawxA=GN=U50buURn6Y9r7HtQzbw@mail.gmail.com">
      <div dir="ltr"><br>
        PD: All users can submit jobs on all nodes<br>
        <br>
        Thanks in advance <br>
        <br>
        Regards.<br>
        <br>
      </div>
    </blockquote>
  </body>
</html>