Skip to content

Muxas/pypropack

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Python Wrapper for PROPACK

About

This is a Python wrapper for the PROPACK package, which implements efficient partial singular value decompositions of large sparse matrices and linear operators. The package is meant to stand alone, but may be included in Scipy at a later date.

This is a work in progress: not all routines are currently wrapped, and the code should be considered unsupported

Installation & Testing

To install in-place, type

python setup.py build_ext --inplace

To run the few unit tests that currently exist, type

nosetests pypropack/tests

Usage

Currently very straightforward. You can do

>>> from pypropack import svdp
>>> import numpy as np   
>>> A = np.random.random((10, 20))
>>> u, s, vt = svdp(A, k=3)  # compute top k singular values

The svdp documentation has more information.

Benchmarks

use the script plot_benchmarks.py for a comparison of PROPACK, ARPACK, SVDLIBC, and the standard LAPACK approaches to computing the svd.

PROPACK modifications

PROPACK had to be slightly modified to play well with gfortran. The PROPACK code used is version 2.1, downloaded from http://soi.stanford.edu/~rmunk/PROPACK/

For compatibility with gfortran, the files PROPACK/*/second.f needed to be slightly modified. The line

REAL      ETIME
EXTERNAL  ETIME

was changed to

EXTERNAL REAL ETIME

About

A python wrapper for the PROPACK library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published