source:
issm/oecreview/Archive/24684-25833/ISSM-25452-25453.diff
Last change on this file was 25834, checked in by , 4 years ago | |
---|---|
File size: 2.0 KB |
-
../trunk-jpl/src/m/classes/clusters/pfe.py
30 30 self.port = 1025 31 31 self.queue = 'long' 32 32 self.time = 12 * 60 33 self.processor = ' wes'33 self.processor = 'bro' 34 34 self.srcpath = '' 35 35 self.codepath = '' 36 36 self.executionpath = '' … … 95 95 if not 0 < self.cpuspernode < 9: 96 96 md = md.checkmessage('cpuspernode should be between 1 and 8 for ''neh'' and ''har'' processors') 97 97 98 elif self.processor == ' wes':98 elif self.processor == 'bro': 99 99 if self.hyperthreading: 100 if not 0 < self.cpuspernode < 25:101 md = md.checkmessage('cpuspernode should be between 1 and 24 for ''wes'' processors in hyperthreading mode')100 if not 0 < self.cpuspernode < 57: 101 md = md.checkmessage('cpuspernode should be between 1 and 56 for ''bro'' processors in hyperthreading mode') 102 102 else: 103 if not 0 < self.cpuspernode < 13:104 md = md.checkmessage('cpuspernode should be between 1 and 12 for ''wes'' processors')103 if not 0 < self.cpuspernode < 29: 104 md = md.checkmessage('cpuspernode should be between 1 and 28 for ''bro'' processors') 105 105 106 106 elif self.processor == 'ivy': 107 107 if self.hyperthreading: … … 111 111 if not 0 < self.cpuspernode < 21: 112 112 md = md.checkmessage('cpuspernode should be between 1 and 20 for ''ivy'' processors') 113 113 else: 114 md = md.checkmessage('unknown processor type, should be ''neh'', '' wes'' or ''har'' or ''ivy''')114 md = md.checkmessage('unknown processor type, should be ''neh'', ''bro'' or ''har'' or ''ivy''') 115 115 116 116 #Miscellaneous 117 117 if not self.login:
Note:
See TracBrowser
for help on using the repository browser.