Changes between Version 5 and Version 6 of WikiStart

Show
Ignore:
Timestamp:
04/21/11 18:49:17 (13 years ago)
Author:
mmamonski
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v5 v6  
    11= Introduction = 
    22 
    3 DRMAA for Torque/PBS Pro is implementation of `Open Grid Forum`_ DRMAA_ 
     3DRMAA for Torque/PBS Pro is implementation of  Open Grid Forum  [http://drmaa.org/ DRMAA] 
    44(Distributed Resource Management Application API) specification_ for 
    5 submission and control jobs to PBS_ systems: `PBS Professional`_, Torque_ 
    6 and OpenPBS_.  Using DRMAA, grid applications builders, portal developers 
     5submission and control jobs to PBS systems: [http://www.clusterresources.com/products/torque-resource-manager.php Torque]  
     6and [http://www.pbsworks.com/Product.aspx?id=1 PBS Professional].  Using DRMAA, grid applications builders, portal developers 
    77and ISVs can use the same high-level API to link their software with 
    88different cluster/resource management systems. 
    99 
    10 This software also enables the integration of `SMOA Computing`_ 
     10This software also enables the integration of [http://apps.man.poznan.pl/trac/smoa-comp Smoa Computing] 
    1111with the underlying Torque/PBS Pro system for remote multi-user job submission 
    1212and control over Web Services. 
    1313 
    14 This manual can be found in HTML and PDF formats in ``doc`` directory. 
    15  
    1614 
    1715= Installation = 
     
    1917To compile the library just go to main source directory and type:: 
    2018 
     19{{{ 
    2120  $ ./configure [--prefix=/installation/directory] && make 
     21}}} 
    2222 
    2323If you had installed PBS in a non standard directory pass it 
    24 in ``--with-pbs`` configure parameter.  There are no unusual requirements 
     24in `--with-pbs` configure parameter.  There are no unusual requirements 
    2525for basic usage of library: ANSI C compiler and standard make should 
    2626suffice (if linking against PBS Professional you will need also the OpenSSL library).   
    2727If you have taken sources directly from SVN repository you would  
    28 need additional `developer tools`_. For further information regarding GNU  
     28need additional [developer tools]. For further information regarding GNU  
    2929build system see the INSTALL file. 
    3030 
     
    3232the completion.  To achieve this simply type the following command for 
    3333all queues which are intended to use with PBS DRMAA:: 
    34  
     34{{ 
    3535  # qmgr -c "set queue QUEUE_NAME keep_completed = 60" 
    36  
    37 The value of the ``keep_completed`` parameter denotes a number of 
     36}} 
     37The value of the `keep_completed parameter denotes a number of 
    3838seconds jobs will have to wait in the queue after the completion (and 
    3939should be greater then ``pool_delay`` value in PBS DRMAA configuration_).