Skip to content

Commit ffd04d7

Browse files
committed
Move scikit-cuda notebook to its own directory
1 parent d52a2a3 commit ffd04d7

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

source-code/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ Sample code for performing computations on a GPU.
88
1. `pycuda`: directory illustrating pyCUDA.
99
1. `curand.ipynb`: Jupyter notebook illustrating generating random
1010
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.
1314
1. `numba`: code illustrating using numba for GPU computing.
1415
1. `cupy`: Jupyter notebook illustrating some aspects of the `cupy` package.

source-code/scikit_cuda/README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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.

0 commit comments

Comments
 (0)