CuPy
Compiler/GCCcore/12.3.0
12.2.0-CUDA-12
Description
===========
CuPy is a NumPy/SciPy-compatible array library for GPU-accelerated computing with Python.
Usage
=====
Using CuPy requires a CUDA compatible GPU. The following snippet shows how to
generate two random matrices on the GPU and multiply them:
import cupy
A = cupy.random.random((8192, 8192))
B = cupy.random.random((8192, 8192))
C = A.dot(B)
The random numbers are generated on the GPU using cuRAND and the matrix multiplication is
performed on the GPU using cuBLAS.
More information
================
- Homepage: https://cupy.dev
- Documentation:
- https://docs.cupy.dev/en/stable/overview.html
Included extensions
===================
cupy-12.2.0, fastrlock-0.8.1
| EBROOTCUPY | /p/software/fs/deep/stages/2024/software/CuPy/12.2.0-gcccoreflexiblas-12.3.0-3.3.1-CUDA-12 |
| EBVERSIONCUPY | 12.2.0 |
| EBDEVELCUPY | /p/software/fs/deep/stages/2024/software/CuPy/12.2.0-gcccoreflexiblas-12.3.0-3.3.1-CUDA-12/easybuild/Compiler-GCCcore-12.3.0-CuPy-12.2.0-CUDA-12-easybuild-devel |
| EBEXTSLISTCUPY | fastrlock-0.8.1,cupy-12.2.0 |
| +CMAKE_PREFIX_PATH | /p/software/fs/deep/stages/2024/software/CuPy/12.2.0-gcccoreflexiblas-12.3.0-3.3.1-CUDA-12 |
| +LIBRARY_PATH | /p/software/fs/deep/stages/2024/software/CuPy/12.2.0-gcccoreflexiblas-12.3.0-3.3.1-CUDA-12/lib |
| +PYTHONPATH | /p/software/fs/deep/stages/2024/software/CuPy/12.2.0-gcccoreflexiblas-12.3.0-3.3.1-CUDA-12/lib/python3.11/site-packages |