Skip to main content

Fast and full-featured Matrix Market file I/O

Project description

PyPI version Conda Version

Fast and full-featured Matrix Market file I/O package for Python.

Fastest way to read and write any Matrix Market .mtx file into a SciPy sparse matrix, sparse coordinate (triplet) ndarrays, or a dense ndarray.

Implemented as a Python binding of the C++ fast_matrix_market library.

pip install fast_matrix_market
conda install fast_matrix_market

Compared to SciPy 1.12

As of version 1.12, scipy.io.mmread and scipy.io.mmread are based on fast_matrix_market. If those methods suit your needs then there is no need to use this package.

The following are extra features supported by the stand-alone FMM:

  • Directly write CSC/CSR matrices with no COO intermediary.

  • Vector files
    Read 1D vector files. scipy.io.mmread() throws a ValueError.

  • longdouble
    Read and write longdouble/longcomplex values for more floating-point precision on platforms that support it (e.g. 80-bit floats).

    Just pass long_type=True argument to any read method to use longdouble arrays. SciPy can write longdouble matrices but reads use double precision.

    Note: Many platforms do not offer any precision greater than double even if the longdouble type exists. On those platforms longdouble == double so check your NumPy for support. As of writing only Linux tends to have longdouble > double. Deprecation Warning: this type is going away in future versions of NumPy and SciPy.

FMM also ships wheels for PyPy and for some older Python versions only supported by older versions of SciPy.

Compared to classic scipy.io.mmread (version <1.12)

The fast_matrix_market.mmread() and mmwrite() methods are direct replacements for scipy.io.mmread and mmwrite. Compared to SciPy v1.10.0:

  • Significant performance boost

    read speedup over SciPy write speedup over SciPy

    The bytes in the plot refer to MatrixMarket file length. All cores on the system are used by default, use the parallelism argument to override. SciPy's routines are single-threaded.

  • 64-bit indices, but only if the matrix dimensions require it.

    scipy.io.mmread() crashes on large matrices (dimensions > 231) because it uses 32-bit indices on most platforms.

  • See comparison with SciPy 1.12.

Differences

  • scipy.io.mmwrite() will search the matrix for symmetry if the symmetry argument is not specified. This is a very slow process that significantly impacts writing time for all matrices, including non-symmetric ones. It can be disabled by setting symmetry="general", but that is easily forgotten. fast_matrix_market.mmwrite() only looks for symmetries if the find_symmetry=True argument is passed.

Usage

import fast_matrix_market as fmm

Read as scipy sparse matrix

>>> a = fmm.mmread("eye3.mtx")
>>> a
<3x3 sparse matrix of type '<class 'numpy.float64'>'
        with 3 stored elements in COOrdinate format>
>>> print(a)
(0, 0)	1.0
(1, 1)	1.0
(2, 2)	1.0

Read as raw coordinate/triplet arrays

>>> (data, (rows, cols)), shape = fmm.read_coo("eye3.mtx")
>>> rows, cols, data
(array([0, 1, 2], dtype=int32), array([0, 1, 2], dtype=int32), array([1., 1., 1.]))

Read as dense ndarray

>>> a = fmm.read_array("eye3.mtx")
>>> a
array([[1., 0., 0.],
       [0., 1., 0.],
       [0., 0., 1.]])

Write any of the above to a file

>>> fmm.mmwrite("matrix_out.mtx", a)

Write to streams (read from streams too)

>>> bio = io.BytesIO()
>>> fmm.mmwrite(bio, a)

Read only the header

>>> header = fmm.read_header("eye3.mtx")
header(shape=(3, 3), nnz=3, comment="3-by-3 identity matrix", object="matrix", format="coordinate", field="real", symmetry="general")

>>> header.shape
(3, 3)

>>> header.to_dict()
{'shape': (3, 3), 'nnz': 3, 'comment': '3-by-3 identity matrix', 'object': 'matrix', 'format': 'coordinate', 'field': 'real', 'symmetry': 'general'}

Controlling parallelism

All methods other than read_header and mminfo accept a parallelism parameter that controls the number of threads used. Default parallelism is equal to the core count of the system.

mat = fmm.mmread("matrix.mtx", parallelism=2)  # will use 2 threads

Alternatively, use threadpoolctl:

with threadpoolctl.threadpool_limits(limits=2):
    mat = fmm.mmread("matrix.mtx")  # will use 2 threads

Quick way to try

Replace scipy.io.mmread with fast_matrix_market.mmread to quickly see if your scripts would benefit from a refactor:

import scipy.io
import fast_matrix_market as fmm

scipy.io.mmread = fmm.mmread
scipy.io.mmwrite = fmm.mmwrite

Dependencies

  • No dependencies to read/write MatrixMarket headers (i.e. read_header(), mminfo()).
  • numpy to read/write arrays (i.e. read_array() and read_coo()). SciPy is not required.
  • scipy to read/write scipy.sparse sparse matrices (i.e. read_scipy() and mmread()).

Neither numpy nor scipy are listed as package dependencies, and those packages are imported only by the methods that need them. This means that you may use read_coo() without having SciPy installed.

Development

This Python binding is implemented using pybind11 and built with scikit-build-core.

All code is in the python/ directory. If you make any changes simply install the package directory to build it:

pip install python/ -v

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fast_matrix_market-1.7.6.tar.gz (300.3 kB view hashes)

Uploaded Source

Built Distributions

fast_matrix_market-1.7.6-pp310-pypy310_pp73-win_amd64.whl (578.4 kB view hashes)

Uploaded PyPy Windows x86-64

fast_matrix_market-1.7.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (976.7 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (587.2 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

fast_matrix_market-1.7.6-pp39-pypy39_pp73-win_amd64.whl (578.3 kB view hashes)

Uploaded PyPy Windows x86-64

fast_matrix_market-1.7.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (977.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (587.0 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

fast_matrix_market-1.7.6-pp38-pypy38_pp73-win_amd64.whl (578.3 kB view hashes)

Uploaded PyPy Windows x86-64

fast_matrix_market-1.7.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (977.3 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (587.1 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

fast_matrix_market-1.7.6-pp37-pypy37_pp73-win_amd64.whl (578.2 kB view hashes)

Uploaded PyPy Windows x86-64

fast_matrix_market-1.7.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (976.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (586.8 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

fast_matrix_market-1.7.6-cp312-cp312-win_amd64.whl (578.7 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

fast_matrix_market-1.7.6-cp312-cp312-musllinux_1_1_x86_64.whl (1.4 MB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

fast_matrix_market-1.7.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (975.8 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (875.9 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

fast_matrix_market-1.7.6-cp312-cp312-macosx_11_0_arm64.whl (549.0 kB view hashes)

Uploaded CPython 3.12 macOS 11.0+ ARM64

fast_matrix_market-1.7.6-cp312-cp312-macosx_10_9_x86_64.whl (590.0 kB view hashes)

Uploaded CPython 3.12 macOS 10.9+ x86-64

fast_matrix_market-1.7.6-cp311-cp311-win_amd64.whl (579.8 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

fast_matrix_market-1.7.6-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

fast_matrix_market-1.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (978.1 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (877.9 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

fast_matrix_market-1.7.6-cp311-cp311-macosx_11_0_arm64.whl (549.5 kB view hashes)

Uploaded CPython 3.11 macOS 11.0+ ARM64

fast_matrix_market-1.7.6-cp311-cp311-macosx_10_9_x86_64.whl (589.1 kB view hashes)

Uploaded CPython 3.11 macOS 10.9+ x86-64

fast_matrix_market-1.7.6-cp310-cp310-win_amd64.whl (579.1 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

fast_matrix_market-1.7.6-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

fast_matrix_market-1.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (977.0 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (877.2 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

fast_matrix_market-1.7.6-cp310-cp310-macosx_11_0_arm64.whl (548.1 kB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

fast_matrix_market-1.7.6-cp310-cp310-macosx_10_9_x86_64.whl (587.7 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ x86-64

fast_matrix_market-1.7.6-cp39-cp39-win_amd64.whl (575.1 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

fast_matrix_market-1.7.6-cp39-cp39-musllinux_1_1_x86_64.whl (1.4 MB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

fast_matrix_market-1.7.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (976.6 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (878.3 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

fast_matrix_market-1.7.6-cp39-cp39-macosx_11_0_arm64.whl (548.2 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

fast_matrix_market-1.7.6-cp39-cp39-macosx_10_9_x86_64.whl (587.8 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

fast_matrix_market-1.7.6-cp38-cp38-win_amd64.whl (579.1 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

fast_matrix_market-1.7.6-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

fast_matrix_market-1.7.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (977.3 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (877.2 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

fast_matrix_market-1.7.6-cp38-cp38-macosx_11_0_arm64.whl (548.1 kB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

fast_matrix_market-1.7.6-cp38-cp38-macosx_10_9_x86_64.whl (587.6 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

fast_matrix_market-1.7.6-cp37-cp37m-win_amd64.whl (578.4 kB view hashes)

Uploaded CPython 3.7m Windows x86-64

fast_matrix_market-1.7.6-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view hashes)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

fast_matrix_market-1.7.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (982.3 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

fast_matrix_market-1.7.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (877.6 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

fast_matrix_market-1.7.6-cp37-cp37m-macosx_10_9_x86_64.whl (582.3 kB view hashes)

Uploaded CPython 3.7m macOS 10.9+ x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page