Changes between Version 8 and Version 9 of vilje


Ignore:
Timestamp:
09/06/17 15:25:31 (8 years ago)
Author:
Mathieu Morlighem
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • vilje

    v8 v9  
    116116}}}
    117117
    118 == vilje_settings.py ==
     118== vilje_settings ==
    119119
    120 {{{
    121 def vilje_settings(md):                                                                                                                     
     120Place 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
     124def vilje_settings(md):
    122125    md.login='YOURNOTURLOGIN'
    123126    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'
    126130    md.accountname='nn4659k'#this is for ice2ice
    127131    md.numnodes=1
    128132    md.numprocess=8
    129133    return md
     134   }}}
    130135}}}
    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}}}