Skip to content

Commit 2e8509a

Browse files
committed
Move Numba example to its own directory
1 parent c5cca16 commit 2e8509a

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

source-code/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ Sample code for performing computations on a GPU.
1010
numbers on a GPU.
1111
1. `scikit_cuda.ipynb`: Jupyter notebook illustrating linear algebra
1212
on a GPU device.
13-
1. `numba.ipynb`: Jupyter notebook illustrating using numba for
14-
GPU computing.
15-
13+
1. `numba`: code illustrating using numba for GPU computing.
1614
1. `cupy.ipynb`: Jupyter notebook illustrating some aspects of
1715
the `cupy` package.
File renamed without changes.

source-code/numba/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Numba
2+
3+
Numba can be used to compile Python code to run on GPUs. This directory has
4+
code samples to illustrate this.
5+
6+
7+
## What is it?
8+
9+
1. `numba.ipynb`: Jupyter notebook illustrating how to use Numba to compile
10+
Python code to run on GPUs. It illustrates the typical pitfalls for GPU
11+
programming (e.g., memory access patterns), and how to avoid them.
File renamed without changes.

0 commit comments

Comments
 (0)