MCPcopy
hub / github.com/cupy/cupy

github.com/cupy/cupy @v14.1.1 sqlite

repository ↗ · DeepWiki ↗ · release v14.1.1 ↗
13,413 symbols 43,964 edges 737 files 2,028 documented · 15%
README

CuPy : NumPy & SciPy for GPU

pypi Conda GitHub license Matrix Twitter Medium

Website | Install | Tutorial | Examples | Documentation | API Reference | Forum

CuPy is a NumPy/SciPy-compatible array library for GPU-accelerated computing with Python. CuPy acts as a drop-in replacement to run existing NumPy/SciPy code on NVIDIA CUDA or AMD ROCm platforms.

>>> import cupy as cp
>>> x = cp.arange(6).reshape(2, 3).astype('f')
>>> x
array([[ 0.,  1.,  2.],
       [ 3.,  4.,  5.]], dtype=float32)
>>> x.sum(axis=1)
array([  3.,  12.], dtype=float32)

CuPy also provides access to low-level CUDA features. You can pass ndarray to existing CUDA C/C++ programs via RawKernels, use Streams for performance, or even call CUDA Runtime APIs directly.

Installation

Pip

Binary packages (wheels) are available for Linux and Windows on PyPI. Choose the right package for your platform.

Platform Architecture Command
CUDA 12.x x86_64 / aarch64 pip install cupy-cuda12x
CUDA 13.x x86_64 / aarch64 pip install cupy-cuda13x
ROCm 7.0 (experimental) x86_64 pip install cupy-rocm-7-0

[!NOTE]\ To install pre-releases, append --pre -U -f https://pip.cupy.dev/pre (e.g., pip install cupy-cuda12x --pre -U -f https://pip.cupy.dev/pre).

Conda

Binary packages are also available for Linux and Windows on Conda-Forge.

Platform Architecture Command
CUDA x86_64 / aarch64 / ppc64le conda install -c conda-forge cupy

If you need a slim installation (without also getting CUDA dependencies installed), you can do conda install -c conda-forge cupy-core.

If you need to use a particular CUDA version (say 12.0), you can use the cuda-version metapackage to select the version, e.g. conda install -c conda-forge cupy cuda-version=12.0.

[!NOTE]\ If you encounter any problem with CuPy installed from conda-forge, please feel free to report to cupy-feedstock, and we will help investigate if it is just a packaging issue in conda-forge's recipe or a real issue in CuPy.

Docker

Use NVIDIA Container Toolkit to run CuPy container images.

$ docker run --gpus all -it cupy/cupy

Resources

[^1]: cuSignal is now part of CuPy starting v13.0.0.

License

MIT License (see LICENSE file).

CuPy is designed based on NumPy's API and SciPy's API (see docs/source/license.rst file).

CuPy is being developed and maintained by Preferred Networks and community contributors.

Reference

Ryosuke Okuta, Yuya Unno, Daisuke Nishino, Shohei Hido and Crissman Loomis. CuPy: A NumPy-Compatible Library for NVIDIA GPU Calculations. Proceedings of Workshop on Machine Learning Systems (LearningSys) in The Thirty-first Annual Conference on Neural Information Processing Systems (NIPS), (2017). [PDF]

@inproceedings{cupy_learningsys2017,
  author       = "Okuta, Ryosuke and Unno, Yuya and Nishino, Daisuke and Hido, Shohei and Loomis, Crissman",
  title        = "CuPy: A NumPy-Compatible Library for NVIDIA GPU Calculations",
  booktitle    = "Proceedings of Workshop on Machine Learning Systems (LearningSys) in The Thirty-first Annual Conference on Neural Information Processing Systems (NIPS)",
  year         = "2017",
  url          = "http://learningsys.org/nips17/assets/papers/paper_16.pdf"
}

Core symbols most depended-on inside this repo

zeros
called by 820
cupyx/scipy/signal/_ltisys.py
astype
called by 625
cupyx/scipy/sparse/_base.py
reshape
called by 553
cupyx/scipy/sparse/_base.py
dtype
called by 390
cupyx/scipy/sparse/_data.py
get
called by 333
cupyx/scipy/sparse/_base.py
join
called by 287
cupyx/distributed/_store.py
sum
called by 258
cupyx/scipy/sparse/_base.py
toarray
called by 225
cupyx/scipy/sparse/_base.py

Shape

Method 9,224
Function 2,315
Class 1,739
Route 135

Languages

Python100%

Modules by API surface

tests/cupyx_tests/scipy_tests/sparse_tests/test_sparse_int64_indices.py335 symbols
tests/cupyx_tests/scipy_tests/sparse_tests/test_csr.py298 symbols
tests/cupyx_tests/scipy_tests/sparse_tests/test_csc.py214 symbols
tests/cupy_tests/random_tests/test_generator.py207 symbols
tests/cupy_tests/core_tests/test_ndarray_elementwise_op.py173 symbols
tests/cupyx_tests/scipy_tests/sparse_tests/test_coo.py163 symbols
tests/cupyx_tests/scipy_tests/sparse_tests/test_linalg.py151 symbols
tests/cupy_tests/cuda_tests/test_memory.py144 symbols
tests/cupy_tests/math_tests/test_sumprod.py142 symbols
tests/cupyx_tests/scipy_tests/signal_tests/test_spectral.py132 symbols
tests/cupy_tests/lib_tests/test_polynomial.py122 symbols
tests/cupy_tests/sorting_tests/test_search.py120 symbols

Dependencies from manifests, versioned

numpy2.2. · 1×
pydata_sphinx_theme0.11.0 · 1×
scipy1.14. · 1×
sphinx5.3.0 · 1×
sphinx-copybutton0.5.1 · 1×

For agents

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

⬇ download graph artifact