Skip to content

Commit

Permalink
Merge pull request #710 from brunocontrerasmoreira/postreleasefix/104
Browse files Browse the repository at this point in the history
added extra_mem resource class to Remapping_conf.pm
  • Loading branch information
at7 committed May 27, 2021
2 parents 4d76c62 + 1050627 commit e958a3b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ sub resource_classes {
return {
%{$self->SUPER::resource_classes}, # inherit 'default' from the parent class
'default_mem' => { 'LSF' => '-R"select[mem>2500] rusage[mem=2500]" -M2500'},
'high_mem' => { 'LSF' => '-R"select[mem>5500] rusage[mem=5500]" -M5500'},
'high_mem' => { 'LSF' => '-R"select[mem>5500] rusage[mem=5500]" -M5500'},
'extra_mem' => { 'LSF' => '-R"select[mem>12500] rusage[mem=12500]" -M12500'},
};
}

Expand Down

0 comments on commit e958a3b

Please sign in to comment.