Skip to content
README.md 5.03 KiB
Newer Older
Victor Lopez's avatar
Victor Lopez committed
# Dynamic Load Balancing Library
Victor Lopez's avatar
Victor Lopez committed

Victor Lopez's avatar
Victor Lopez committed
[DLB][] is a dynamic library designed to speed up HPC hybrid applications (i.e.,
Victor Lopez's avatar
Victor Lopez committed
two levels of parallelism) by improving the load balance of the outer level of
parallelism (e.g., MPI) by dynamically redistributing the computational
resources at the inner level of parallelism (e.g., OpenMP). at run time.
Victor Lopez's avatar
Victor Lopez committed

Victor Lopez's avatar
Victor Lopez committed
This dynamism allows DLB to react to different sources of imbalance: Algorithm,
data, hardware architecture and resource availability among others.
Victor Lopez's avatar
Victor Lopez committed

Victor Lopez's avatar
Victor Lopez committed
#### Lend When Idle
LeWI (Lend When Idle) is the algorithm used to redistribute the computational
resources that are not being used from one process to another process inside
the same shared memory node in order to speed up its execution.

#### Dynamic Resource Ownership Manager
DROM (Dynamic Resource Ownership Manager) is the algorithm used to manage the
CPU affinity of a process running a shared memory programming model (e.g.,
OpenMP).


## Installation

1. Build requirements
Victor Lopez's avatar
Victor Lopez committed
    * A supported platform running GNU/Linux (i386, x86-64, ARM, PowerPC or IA64)
    * C compiler
Victor Lopez's avatar
Victor Lopez committed
    * Python 2.4 or higher
Victor Lopez's avatar
Victor Lopez committed
    * GNU Autotools, only needed if you want to build from the repository.
2. Download the DLB source code:
    1. Either from our website: [DLB Downloads][].
    2. Or from a git repository
Victor Lopez's avatar
Victor Lopez committed
        * Clone DLB repository
            * From GitHub:

                ```bash
                git clone https://github.com/bsc-pm/dlb.git
                ```
            * From our internal GitLab repository (BSC users only):

                ```bash
                git clone https://pm.bsc.es/gitlab/dlb/dlb.git
                ```
Victor Lopez's avatar
Victor Lopez committed
        * Or download from [GitHub releases][]
Victor Lopez's avatar
Victor Lopez committed
        * Bootstrap autotools:

            ```bash
            cd dlb
            ./bootstrap
            ```
3. Run `configure`. Optionally, check the configure flags by running
    `./configure -h` to see detailed information about some features.
Victor Lopez's avatar
Victor Lopez committed
    MPI support must be enabled with ``--with-mpi`` and, optionally,
    an argument telling where MPI can be located.
Victor Lopez's avatar
Victor Lopez committed

    ```bash
    ./configure --prefix=<DLB_PREFIX> [<configure-flags>]
    ```
Victor Lopez's avatar
Victor Lopez committed
4. Build and install
Victor Lopez's avatar
Victor Lopez committed

    ```bash
    make
    make install
    ```
5. Optionally, add the installed bin directory to your `PATH`

    ```bash
    export PATH=<DLB_PREFIX>/bin:$PATH
    ```

For more information about the autotools installation process,
please refer to [INSTALL](INSTALL)

## Basic usage

Victor Lopez's avatar
Victor Lopez committed
Choose between linking or preloading the binary with the DLB shared library
Victor Lopez's avatar
Victor Lopez committed
`libdlb.so` and configure DLB using the environment variable `DLB_ARGS`.
Victor Lopez's avatar
Victor Lopez committed

Victor Lopez's avatar
Victor Lopez committed
1. **Example 1:** Share CPUs between MPI processes
Victor Lopez's avatar
Victor Lopez committed

Victor Lopez's avatar
Victor Lopez committed
    ```bash
    # Link application with DLB
    mpicc -o myapp myapp.c -L<DLB_PREFIX>/lib -ldlb -Wl,-rpath,<DLB_PREFIX>/lib

    # Launch MPI as usual, each process will dynamically adjust the number of threads
    export DLB_ARGS="--lewi"
    mpirun -n <np> ./myapp
    ```

2. **Example 2:** Share CPUs between MPI processes with advanced affinity
control through OMPT.

    ```bash
    # Link application with an OMPT capable OpenMP runtime
    OMPI_CC=clang mpicc -o myapp myapp.c -fopenmp

    # Launch application:
    #   * Set environment variables
    #   * DLB library is preloaded
    #   * Run application with binary dlb_run
    export DLB_ARGS="--lewi --ompt"
    export OMP_WAIT_POLICY="passive"
    preload="<DLB_PREFIX>/lib/libdlb.so"
    mpirun -n <np> <DLB_PREFIX>/bin/dlb_run env LD_PRELOAD="$preload" ./myapp
    ```

3. **Example 3:** Manually reduce assigned CPUs to an OpenMP process.
Victor Lopez's avatar
Victor Lopez committed

Victor Lopez's avatar
Victor Lopez committed
    ```bash
    # Launch an application preloading DLB
    export OMP_NUM_THREADS=4
    export DLB_ARGS="--drom"
    export LD_PRELOAD=<DLB_PREFIX>/lib/libdlb.so
    taskset -c 0-3 ./myapp &

    # Reduce CPU binding to [1,3] and threads to 2
    myapp_pid=$!
    dlb_taskset -p $myapp_pid -c 1,3
    ```
Victor Lopez's avatar
Victor Lopez committed


#### User Guide
Please refer to our [DLB User Guide][] for a more complete documentation.

## Citing DLB
If you want to cite DLB, you can use the following publications:

* [Hints to improve automatic load balancing with LeWI for hybrid applications][pub1_pdf]
at Journal of Parallel and Distributed Computing 2014.
([ScienceDirect][pub1_ref]) ([bibtex][pub1_bib]) ([pdf][pub1_pdf])

* [LeWI: A Runtime Balancing Algorithm for Nested Parallelism][pub2_pdf]
at International Conference in Parallel Processing 2009, ICPP09.
([IEEE Xplore][pub2_ref]) ([bibtex][pub2_bib]) ([pdf][pub2_pdf])


## Contact Information

For questions, suggestions and bug reports, you can contact us via e-mail
at pm-tools@bsc.es.

Victor Lopez's avatar
Victor Lopez committed
[DLB]: https://pm.bsc.es/dlb
Victor Lopez's avatar
Victor Lopez committed
[DLB Downloads]: https://pm.bsc.es/dlb-downloads
[GitHub releases]: https://github.com/bsc-pm/dlb/releases
Victor Lopez's avatar
Victor Lopez committed
[DLB User Guide]: https://pm.bsc.es/ftp/dlb/doc/user-guide/index.html
[pub1_pdf]: https://pm.bsc.es/ftp/dlb/doc/JPDC_2014.pdf
Victor Lopez's avatar
Victor Lopez committed
[pub1_ref]: http://www.sciencedirect.com/science/article/pii/S0743731514000926
Victor Lopez's avatar
Victor Lopez committed
[pub1_bib]: https://pm.bsc.es/ftp/dlb/doc/LeWI_JPDC14.bib
[pub2_pdf]: https://pm.bsc.es/ftp/dlb/doc/LeWI_ICPP09.pdf
Victor Lopez's avatar
Victor Lopez committed
[pub2_ref]: http://ieeexplore.ieee.org/xpl/articleDetails.jsp?tp=&arnumber=5362480
Victor Lopez's avatar
Victor Lopez committed
[pub2_bib]: https://pm.bsc.es/ftp/dlb/doc/LeWI_ICPP09.bib