IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 38028


Ignore:
Timestamp:
Mar 27, 2015, 2:46:41 PM (11 years ago)
Author:
watersc1
Message:

Attempt to prevent crazy node requests for these stacks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/ipp-pv3-20140717/ippScripts/scripts/sc_prepare_run.pl

    r37981 r38028  
    239239    $node_req = int(($node_need * $job_cost{$stage}) / ($fill_factor * $time_req)) + 1;
    240240}
     241if ($node_req > $job_index) {
     242    $node_req = int($job_index / 2);
     243}
    241244
    242245# Most jobs only take 1 core, but ensure that we split them appropriately
    243 $node_req *= $job_subscription{$stage};
     246unless ($stage eq 'stack') {
     247    $node_req *= $job_subscription{$stage};
     248}
     249
     250
    244251
    245252if (($stage eq "stack")||($stage eq "staticsky")) {
Note: See TracChangeset for help on using the changeset viewer.