cupy/cupy
Fork: 851 Star: 9457 (更新于 2024-11-12 01:00:47)
license: MIT
Language: Python .
NumPy & SciPy for GPU
最后发布版本: v13.3.0 ( 2024-08-22 15:42:45)
CuPy : NumPy & SciPy for GPU
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 11.x (11.2+) | x86_64 / aarch64 | pip install cupy-cuda11x |
CUDA 12.x | x86_64 / aarch64 | pip install cupy-cuda12x |
ROCm 4.3 (experimental) | x86_64 | pip install cupy-rocm-4-3 |
ROCm 5.0 (experimental) | x86_64 | pip install cupy-rocm-5-0 |
[!NOTE]
To install pre-releases, append--pre -U -f https://pip.cupy.dev/pre
(e.g.,pip install cupy-cuda11x --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 fromconda-forge
, please feel free to report to cupy-feedstock, and we will help investigate if it is just a packaging issue inconda-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
- Installation Guide - instructions on building from source
- Release Notes
- Projects using CuPy
- Contribution Guide
- GPU Acceleration in Python using CuPy and Numba (GTC November 2021 Technical Session)
- GPU-Acceleration of Signal Processing Workflows using CuPy and cuSignal[^1] (ICASSP'21 Tutorial)
[^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"
}
最近版本更新:(数据更新于 2024-09-22 21:26:43)
2024-08-22 15:42:45 v13.3.0
2024-06-13 13:29:16 v13.2.0
2024-04-19 15:40:12 v13.1.0
2024-01-18 13:54:29 v13.0.0
2023-12-07 15:57:50 v12.3.0
2023-12-07 15:58:06 v13.0.0rc1
2023-08-08 16:41:11 v12.2.0
2023-08-08 16:39:44 v13.0.0b1
2023-06-13 19:06:28 v12.1.0.post1
2023-05-25 16:06:36 v12.1.0
主题(topics):
cublas, cuda, cudnn, cupy, curand, cusolver, cusparse, cusparselt, cutensor, gpu, nccl, numpy, nvrtc, nvtx, python, rocm, scipy, tensor
cupy/cupy同语言 Python最近更新仓库
2024-11-22 02:39:01 goauthentik/authentik
2024-11-22 00:03:47 comfyanonymous/ComfyUI
2024-11-21 22:06:18 rashevskyv/dbi
2024-11-21 21:09:02 xtekky/gpt4free
2024-11-21 20:03:58 ultralytics/ultralytics
2024-11-21 00:54:04 hect0x7/JMComic-Crawler-Python