Skip to content

Latest commit

 

History

History
59 lines (35 loc) · 1.54 KB

README.rst

File metadata and controls

59 lines (35 loc) · 1.54 KB

PySLURM: SLURM interface for Python

Authors

Mark Roberts <mark@gingergeeks.co.uk> and Stephan Gorget <phantez@gmail.com>

Overview

Currently PySLURM is under development to move from it's thin layer on top of the SLURM C API to an object orientated interface.

This branch is based on the SLURM 2.3.5 API

Prerequistes

This version has been tested with SLURM 2.3.5, Cython 0.15.1 and Python 2.7.2, 2.7.3 and 3.2.3

Installation

You will need to instruct the setup.py script where either the SLURM install root directory or where the SLURM libraries and SLURM include files are :

  1. Slurm default directory (/usr):

    • python setup.py build
    • python setup.py install
  2. Indicate Blue Gene type (L/P/Q) on build line:

    • --bgl or --bgp or --bgq
  3. Slurm root directory (Alternate installation directory):

    • python setup.py build --slurm=PATH_TO_SLURM_DIR
    • python setup.py install
  4. Separate Slurm library and include directory paths:

    • python setup.py build --slurm-lib=PATH_TO_SLURM_LIB --slurm-inc=PATH_TO_SLURM_INC
    • python setup.py install

If you still have issues then you could code this directly into the setup.py

Documentation

Prebuilt documentation for the module can be reviewed online, and the source code is available on GitHub.