Skip to content
This repository has been archived by the owner on Nov 21, 2018. It is now read-only.

jakevdp/pypropack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Python Wrapper for PROPACK

This wrapper is incomplete, buggy, unsupported, and does questionable things with memory pointers. Use it at your own risk.

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.

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

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages