MCPcopy Index your code
hub / github.com/PyO3/rust-numpy

github.com/PyO3/rust-numpy @v0.29.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.29.0 ↗ · + Follow
469 symbols 1,216 edges 40 files 53 documented · 11% updated 24d agov0.29.0 · 2026-06-13★ 1,37825 open issues
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

rust-numpy

Actions Status Crate Minimum rustc 1.83 Documentation codecov

Rust bindings for the NumPy C-API.

API documentation

Requirements

  • Rust >= 1.83.0
  • Basically, our MSRV follows the one of PyO3
  • Python >= 3.8
  • Python 3.7 support was dropped from 0.29
  • Some Rust libraries
  • ndarray for Rust-side matrix library
  • PyO3 for Python bindings
  • And more (see Cargo.toml)
  • numpy installed in your Python environments (e.g., via pip install numpy)
  • We recommend numpy >= 1.16.0, though older versions may work

Example

Write a Python module in Rust

Please see the simple example for how to get started.

There are also examples using ndarray-linalg and rayon.

[lib]
name = "rust_ext"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.29" }
numpy = "0.29"
#[pyo3::pymodule]
mod rust_ext {
    use numpy::ndarray::{ArrayD, ArrayViewD, ArrayViewMutD};
    use numpy::{IntoPyArray, PyArrayDyn, PyReadonlyArrayDyn, PyArrayMethods};
    use pyo3::{pyfunction, PyResult, Python, Bound};

    // example using immutable borrows producing a new array
    fn axpy(a: f64, x: ArrayViewD<'_, f64>, y: ArrayViewD<'_, f64>) -> ArrayD<f64> {
        a * &x + &y
    }

    // example using a mutable borrow to modify an array in-place
    fn mult(a: f64, mut x: ArrayViewMutD<'_, f64>) {
        x *= a;
    }

    // wrapper of `axpy`
    #[pyfunction(name = "axpy")]
    fn axpy_py<'py>(
        py: Python<'py>,
        a: f64,
        x: PyReadonlyArrayDyn<'py, f64>,
        y: PyReadonlyArrayDyn<'py, f64>,
    ) -> Bound<'py, PyArrayDyn<f64>> {
        let x = x.as_array();
        let y = y.as_array();
        let z = axpy(a, x, y);
        z.into_pyarray(py)
    }

    // wrapper of `mult`
    #[pyfunction(name = "mult")]
    fn mult_py<'py>(a: f64, x: &Bound<'py, PyArrayDyn<f64>>) {
        let x = unsafe { x.as_array_mut() };
        mult(a, x);
    }
}

Execute a Python program from Rust and get results

[package]
name = "numpy-test"

[dependencies]
pyo3 = { version = "0.29", features = ["auto-initialize"] }
numpy = "0.29"
use numpy::{PyArray1, PyArrayMethods};
use pyo3::{types::{IntoPyDict, PyAnyMethods}, PyResult, Python, ffi::c_str};

fn main() -> PyResult<()> {
    Python::attach(|py| {
        let np = py.import("numpy")?;
        let locals = [("np", np)].into_py_dict(py)?;

        let pyarray = py
            .eval(c_str!("np.absolute(np.array([-1, -2, -3], dtype='int32'))"), Some(&locals), None)?
            .cast_into::<PyArray1<i32>>()?;

        let readonly = pyarray.readonly();
        let slice = readonly.as_slice()?;
        assert_eq!(slice, &[1, 2, 3]);

        Ok(())
    })
}

Dependency on ndarray

This crate uses types from ndarray in its public API. ndarray is re-exported in the crate root so that you do not need to specify it as a direct dependency.

Furthermore, this crate is compatible with multiple versions of ndarray and therefore depends on a range of semver-incompatible versions, currently >= 0.15, <= 0.17. Cargo does not automatically choose a single version of ndarray by itself if you depend directly or indirectly on anything but that exact range. It can therefore be necessary to manually unify these dependencies.

For example, if you specify the following dependencies

numpy = "0.29"
ndarray = "0.15"

this will currently depend on both version 0.15.6 and 0.16.1 of ndarray by default even though 0.15.6 is within the range >= 0.15, <= 0.17. To fix this, you can run

cargo update --package ndarray:0.16.1 --precise 0.15.6

to achieve a single dependency on version 0.15.6 of ndarray.

Contributing

We welcome issues and pull requests.

PyO3's Contributing.md is a nice guide for starting.

Also, we have a Gitter channel for communicating.

Extension points exported contracts — how you extend this code

Element (Interface)
Represents that a type can be an element of `PyArray`. Currently, only integer/float/complex/object types are supported [6 …
src/dtype.rs
IntoPyArray (Interface)
Conversion trait from owning Rust types into [`PyArray`]. This trait takes ownership of `self`, which means it holds a [3 …
src/convert.rs
ArrayOrScalar (Interface)
Return value of a function that can yield either an array or a scalar. [2 implementers]
src/sum_products.rs
PyUntypedArrayMethods (Interface)
(no doc) [2 implementers]
src/untyped_array.rs
Coerce (Interface)
(no doc) [2 implementers]
src/array_like.rs
Unit (Interface)
Represents the [datetime units][datetime-units] supported by NumPy [datetime-units]: https://numpy.org/doc/stable/refer
src/datetime.rs
PyArrayMethods (Interface)
(no doc) [1 implementers]
src/array.rs
PyArrayDescrMethods (Interface)
(no doc) [1 implementers]
src/dtype.rs

Core symbols most depended-on inside this repo

as_array_ptr
called by 64
src/untyped_array.rs
readonly
called by 41
src/array.rs
readwrite
called by 33
src/array.rs
len
called by 31
src/untyped_array.rs
get_borrow_flags_state
called by 25
src/borrow/shared.rs
run
called by 24
x.py
into_pyarray
called by 24
src/convert.rs
array
called by 20
tests/array.rs

Shape

Function 216
Method 160
Class 61
Interface 17
Enum 15

Languages

Rust95%
Python5%

Modules by API surface

src/array.rs67 symbols
src/dtype.rs45 symbols
tests/array.rs38 symbols
src/borrow/shared.rs36 symbols
src/npyffi/objects.rs28 symbols
src/borrow/mod.rs25 symbols
tests/borrow.rs24 symbols
tests/to_py.rs20 symbols
src/npyffi/types.rs18 symbols
src/untyped_array.rs17 symbols
src/convert.rs16 symbols
src/datetime.rs14 symbols

For agents

$ claude mcp add rust-numpy \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact