File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ Sample code for performing computations on a GPU.
8
8
1 . ` pycuda ` : directory illustrating pyCUDA.
9
9
1 . ` numba ` : code illustrating using numba for GPU computing.
10
10
1 . ` cupy ` : Jupyter notebook illustrating some aspects of the ` cupy ` package.
11
+ 1 . ` cupynumeric ` : code illustrating using cuPyNumeric for GPU computing.
Original file line number Diff line number Diff line change
1
+ # cuPyNumeric
2
+
3
+ cuPyNumeric is a Python library that provides a GPU-accelerated drop-in
4
+ replacement for NumPy. It is built on top of legion.
5
+
6
+
7
+ ## What is it?
8
+
9
+ 1 . ` environment.yml ` : conda environment file for creating an environment
10
+ with the necessary dependencies.
Original file line number Diff line number Diff line change
1
+ name : python_on_gpus_cupynumeric
2
+ channels :
3
+ - conda-forge
4
+ dependencies :
5
+ - cupynumeric
6
+ - numpy
7
+ - scipy
8
+ - matplotlib
9
+ - jupyterlab
10
+ prefix : /home/gjb/mambaforge/envs/python_on_gpus_cupynumeric
You can’t perform that action at this time.
0 commit comments