Changeset 58


Ignore:
Timestamp:
02/02/04 15:26:37 (20 years ago)
Author:
bas
Message:

Preparing for a new distro, we have tested it against Torque 1.0.1p4 and
Openpbs 2.3.16

Location:
trunk/pbs_swig/distro
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/pbs_swig/distro/CHANGES

    r55 r58  
     1=========== Version 2.7.3
     2 The name SPBS is changed to the new name TORQUE (Tera-scale Open-source
     3 Resource and QUEing manager).
     4
     5 The interface support OPENPBS and TORQUE.
     6
    17=========== Version 2.7.2
    28 Some minor changes to include files. Now the Scalable PBS keywords
  • trunk/pbs_swig/distro/README

    r57 r58  
    33
    44The Python wrapper class is tested on:
    5   - Intel cluster debian GNU/LINUX potato/woody PBS 2.2p7, PBS 2.3.16
     5  - Intel cluster debian GNU/LINUX potato/woody PBS 2.2p7, PBS 2.3.16,
     6    TORQUE 1.0.1p4
    67
    78  - Compaq Alpha cluster debian GNU/LINUX potato/woody PBS 2.2p7, PBS 2.3.16
     
    6061
    6162
    62 Comments,suggestions or bugfxes mail them to: Bas van der Vlies <basv@sara.nl>
     63Comments,suggestions or bugfixes mail them to: Bas van der Vlies <basv@sara.nl>
    6364For more info about SARA see:
    6465        http://www.sara.nl/index_eng.html
  • trunk/pbs_swig/distro/setup.py

    r53 r58  
    1515
    1616if not PBS_LIB_DIR:
    17   for dir in ['/usr/local/lib', '/opt/pbs/usr/lib' ]:
     17  for dir in ['/usr/local/lib', '/opt/pbs/usr/lib', '/usr/lib/torque' ]:
    1818    dummy = os.path.join(dir, 'libpbs.a')
    1919    if os.path.exists(dummy):
  • trunk/pbs_swig/distro/src/pbs.py

    r52 r58  
    534534  Returns the pbs python interface version as a string.
    535535  """
    536   return '2.7.2'
     536  return '2.7.3'
    537537
    538538
  • trunk/pbs_swig/distro/src/pbs_error.h

    r52 r58  
    188188
    189189/* HvB
    190  * SPBS addition
     190 * TORQUE addition
    191191*/
    192192#ifndef NULL
     
    204204extern char *pbse_to_txt();
    205205
     206/*
     207 * HvB Torque addition
     208*/
     209extern int pbs_errno;
    206210#endif
  • trunk/pbs_swig/distro/src/pbs_ifl.h

    r52 r58  
    183183
    184184/* HvB
    185  * Used by SPBS
     185 * Used by TORQUE
    186186*/
    187187#define ATTR_pingrate   "node_ping_rate"
     
    277277
    278278/* HvB
    279  * SPBS change used to be 256
     279 * TORQUE change used to be 256
    280280*/
    281281#define PBS_MAXDEST           1024      /* destination size -- increased from 256*/
  • trunk/pbs_swig/distro/src/pbs_python.h

    r52 r58  
    129129
    130130/* HvB
    131  * Used by SPBS
     131 * Used by TORQUE
    132132*/
    133133#define ATTR_pingrate   "node_ping_rate"
     
    224224
    225225/* HvB
    226  * SPBS change used to be 256
     226 * TORQUE change used to be 256
    227227*/
    228228#define PBS_MAXDEST             1024    /* destination size -- increased from 256*/
Note: See TracChangeset for help on using the changeset viewer.