File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ Sample code for performing computations on a GPU.
8
8
1 . ` pycuda ` : directory illustrating pyCUDA.
9
9
1 . ` curand.ipynb ` : Jupyter notebook illustrating generating random
10
10
numbers on a GPU.
11
- 1 . ` scikit_cuda.ipynb ` : Jupyter notebook illustrating linear algebra
12
- on a GPU device.
11
+ 1 . ` scikit_cuda ` : code illustrating linear algebra on a GPU device. This
12
+ is an older library and has been at least partially superceded by
13
+ CuPy.
13
14
1 . ` numba ` : code illustrating using numba for GPU computing.
14
15
1 . ` cupy ` : Jupyter notebook illustrating some aspects of the ` cupy ` package.
Original file line number Diff line number Diff line change
1
+ # scikit-cuda
2
+
3
+ Scikit-cuda provides a Python interface to many linear algebra routines on the
4
+ GPU using CUDA. The interface is similar to that of
5
+ [ scikit-learn] ( http://scikit-learn.org/stable/ ) , and aims to provide simple and
6
+ efficient access to GPU operations for data science and scientific computing.
7
+
8
+ However, the library is aging, and has at least partially been superceded by
9
+ [ CuPy] ( https://cupy.chainer.org/ ) , which provides a more general-purpose
10
+ interface to the CUDA API.
11
+
12
+
13
+ ## What is it?
14
+
15
+ 1 . ` scikit_cuda.ipynb ` : Jupyter notebook with examples of using scikit-cuda.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments