Giter Site home page Giter Site logo

mutual-ai / bionmf-gpu Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bioinfo-cnb/bionmf-gpu

0.0 2.0 0.0 1.58 MB

NMF-mGPU web site:

Home Page: http://bioinfo-cnb.github.io/bionmf-gpu

License: GNU General Public License v3.0

Makefile 6.53% Shell 0.46% Cuda 12.99% C 78.51% C++ 1.51%

bionmf-gpu's Introduction

<title>NMF-mGPU: Non-negative Matrix Factorization on multi-GPU systems - README</title>

NMF-mGPU: Non-negative Matrix Factorization on multi-GPU Systems

NMF-mGPU implements the Non-negative Matrix Factorization (NMF) algorithm by making use of Graphics Processing Units (GPUs). NMF takes an input matrix (V) and returns two matrices, W and H, whose product is equal to the former (i.e., V ≈ W ∗ H). If V has n rows and m columns, then dimensions for W and H, will be n × k and k × m, respectively. The factorization rank ("k") specified by the user, is usually a value much less than both, n and m.

This software has been developed using the NVIDIA's CUDA (Compute Unified Device Architecture) framework for GPU Computing. CUDA represents a GPU device as a programmable general-purpose coprocessor able to perform linear-algebra operations.

On detached devices with low on-board memory available, large datasets can be blockwise transferred from the CPU's main memory to the GPU's memory and processed accordingly. In addition, NMF-mGPU has been explicitly optimized for the different existing CUDA architectures.

Finally, NMF-mGPU also provides a multi-GPU version that makes use of multiple GPU devices through the MPI (Message Passing Interface) standard.
 

How to cite NMF-mGPU

If you use this software, please cite the following work:

E. Mejía-Roa, D. Tabas-Madrid, J. Setoain, C. García, F. Tirado and A. Pascual-Montano. NMF-mGPU: Non-negative matrix factorization on multi-GPU systems. BMC Bioinformatics 2015, 16:43. doi:10.1186/s12859-015-0485-4 [http://www.biomedcentral.com/1471-2105/16/43]

 



QUICK START GUIDE

Basic steps:

  1. Install the NVIDIA CUDA Toolkit and Drivers.
  2. Download, Decompress and Compile NMF-mGPU.
  3. Example of Use.

The full installation guide can be found in the doc/ folder. Similarly, please read the user guide for information of program usage, and a detailed description of the analysis process.
 

1. Install the NVIDIA CUDA Toolkit and Drivers

1.1 System Requirements

  • UNIX System (GNU/Linux or Darwin/Mac OS X).

  • One or more CUDA-capable GPU devices: A detailed list of compatible hardware can be found at http://developer.nvidia.com/cuda-gpus
    Please note that all devices must be of the same architecture (i.e., heterogeneous GPU clusters are not supported yet).

  • CUDA Toolkit and CUDA Driver: They are freely available at the CUDA Downloads Page. Nevertheless, for deprecated GPU devices and/or OS platforms, you can download a previous CUDA release (e.g., version 5.5) from the CUDA Archive Page. Please note that NMF-mGPU requires, at least, the version 4.2.

  • A C compiler conforming to the ISO-C99 standard, such as GNU GCC or LLVM Clang (64-bits only).

  • The optional multi-GPU version also requires an MPI-2.0 (or greater) software library, such as OpenMPI or MPICH.

1.2 Install Instructions

  • For GNU/Linux:

    Instructions vary among different distributions. For instance, on Ubuntu 14.04 LTS (Trusty Tahr):

    • NVIDIA proprietary driver: Open the program Software & Updates, then go to Additional Drivers section and check the option "Using NVIDIA binary driver".
      Alternatively, you can open a terminal and type:

         $>  sudo  apt-get  install  nvidia-current
      

      You may have to reboot the system in order to use this driver after installing it.

    • Additional packages: The following packages are required: build-essential, nvidia-cuda-dev and nvidia-cuda-toolkit.
      They can be installed through the Ubuntu Software Center, or via a terminal by typing:

         $>  sudo  apt-get  install  build-essential  nvidia-cuda-dev  nvidia-cuda-toolkit
      
    • Multi-GPU version (optional): This version also requires any of the following packages: openmpi or mpich.

    For other GNU/Linux distributions, we recommend to read the Getting Starting Guide for GNU/Linux.

  • For Darwin/Mac OS X:

    • C/C++ compiler: Please install the Apple's Xcode toolset. Some versions may require to explicitly add the Command Line Developer Tools plug-in in order to make available the required commands on the Terminal.

    • CUDA Toolkit and Drivers: Just download and execute the proper .dmg file from the CUDA Download Page (or the Archive Page for previous releases), and follow the instructions.

    • Multi-GPU version (optional): Most MPI libraries are available on package managers, such as MacPorts or Homebrew. Otherwise, you can download the source code and compile it.

    We highly recommend to read the Getting Starting Guide for Darwin/Mac OS X for detailed instructions.


2. Download, Decompress, and Compile NMF-mGPU

NMF-mGPU can be downloaded from two main sources:

Once the file has been unzipped, please open a Terminal in the generated folder and execute the following command:

     $>  source  env.sh  <CUDA_PATH>

where <CUDA_PATH> denotes the path to your CUDA Toolkit (e.g., /usr/local/cuda-5.5 or /Developer/NVIDIA/cuda-5.5).

To compile the program, just execute:

     $>  make

The compilation process may take some time since different versions of the software (one per GPU model) will be generated into the executable file. To compile code for just a particular GPU architecture (e.g., for Compute Capability 1.3), you can use the following command:

     $>  make  SM_VERSIONS=13

Warning:

No code is compiled for Compute Capabilities 1.x, since they are being deprecated on newer versions of the CUDA Toolkit. For such GPU models, code must be explicitly requested as shown in the example above.
 

The resulting executable file, NMF_GPU, will be stored in the bin/ folder.
 

Multi-GPU version:

To compile the multi-GPU version (process not performed by default), just execute:

     $>  make  multi_gpu  MPICC=<path_to_mpi>/bin/mpicc

Please make sure that your MPI library is properly installed (i.e., environment variables, etc). Similarly as above, the resulting executable file, NMF_mGPU is stored in the bin/ folder.


3. Example of use

In the test/ folder, you can find different examples of a valid input file. They contain a 5000-by-38 gene-expression data matrix, with or without row/column labels.

For example, to process the file "test/ALL_AML_data.txt" with a factorization rank of k=2, you can use the following command:

     $>  bin/NMF_GPU  test/ALL_AML_data.txt  -k 2  -j 10  -t 40  -i 2000

The rest of arguments denote that:

  • -j 10: the test of convergence will be performed each 10 iterations.
  • -t 40: If there are no relative differences in matrix H after 40 consecutive convergence tests, it is considered that the algorithm has converged.
  • -i 2000: If no convergence is detected, the algorithm stops after 2000 iterations.
     

On the screen, you should see something similar to:

           <<< NMF-GPU: Non-negative Matrix Factorization on GPU >>>
                                   Single-GPU version
     Loading input file...
           File selected as ASCII text. Loading...
                    Data matrix selected as having numeric column headers: No.
                    Data matrix selected as having numeric row labels: No.
                    Row labels detected.
                    Number of data columns detected (excluding row labels): 38.
                    Name (i.e., description string) detected.
                    Column headers detected.
                    Loaded a 5000 x 38 data matrix (190000 items).
     Starting NMF( K=2 )...
     NMF: Algorithm converged in 430 iterations.
     Distance between V and W*H: 0.566049

     Saving output file...
           File selected as ASCII text.
     Done.

In this case, the algorithm converged after a total of 430 iterations.
 

After completion, both output matrices, W and H, are stored in the same folder and with a similar filename as the input matrix, but suffixed with _W and _H respectively. In the example above, such output files would be:

  • test/ALL_AML_data.txt_W.txt
  • test/ALL_AML_data.txt_H.txt

Notes:

  • An exhaustive list of all valid parameters for NMF_GPU can be shown with the option -h. That is,

       $>  bin/NMF_GPU  -h
    

    In that case, any other argument will be ignored.

  • On any error, please check first the troubleshooting section in the installation guide, located in the doc/ folder.

Multi-GPU version:

The multi-GPU version works similarly. Nevertheless, the MPI Standard mandates that all programs must be launched through the mpiexec or mpirun commands. Using similar arguments as the example above, NMF-mGPU can be executed as follow:

     mpiexec  -np 2  bin/NMF_mGPU  test/ALL_AML_data.txt  -k 2  -j 10  -t 40  -i 2000

The argument -np 2 denotes that two GPU devices will be used.

Warnings:

  • All GPU devices must have a similar Compute Capability.

  • Please, remember to properly setup the environment of your MPI library.



bionmf-gpu's People

Contributors

danieloop avatar edgardomejia avatar kylemcdonald avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.