Changes between Version 8 and Version 9 of vilje
- Timestamp:
- 09/06/17 15:25:31 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
vilje
v8 v9 116 116 }}} 117 117 118 == vilje_settings .py==118 == vilje_settings == 119 119 120 {{{ 121 def vilje_settings(md): 120 Place one of the following function in your path, it will provide your default options to vilje. 121 ||= vilje_settings.py =||= vilje_settings.m =|| 122 {{{#!td 123 {{{#!py 124 def vilje_settings(md): 122 125 md.login='YOURNOTURLOGIN' 123 126 md.queue='workq' 124 md.codepath='YOURCODEPATH'#home is fne 125 md.executionpath='YOUREXECPATH'#should be in /work/username to avoid flooding your home 127 md.codepath='YOURCODEPATH' 128 #executionpath should be in /work/username to avoid flooding your home 129 md.executionpath='YOUREXECPATH' 126 130 md.accountname='nn4659k'#this is for ice2ice 127 131 md.numnodes=1 128 132 md.numprocess=8 129 133 return md 134 }}} 130 135 }}} 131 == vilje_settings.m == 132 133 The use of the Python version of the code is encouraged at Uib but you are welcome to clone the python settings. 136 {{{#!td 137 {{{#!matlab 138 cluster.login='YOURNOTURLOGIN' 139 cluster.queue='workq' 140 cluster.codepath='YOURCODEPATH' 141 %executionpath should be in /work/username to avoid flooding your home 142 cluster.executionpath='YOUREXECPATH' 143 % account name should be ice2ice 144 cluster.accountname='nn4659k' 145 cluster.numnodes=1 146 cluster.numprocess=8 147 }}} 148 }}}