Skip to content

Commit 538088e

Browse files
authored
Merge pull request #4 from gjbex/development
Development
2 parents e643c8e + 1177019 commit 538088e

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

docs/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ from scratch. Some familiarity with numpy is required as well.
5959
If you plan to do Python GPU programming in a Linux or HPC environment (and you should), then familiarity with these environments is required as well.
6060

6161

62+
## Levels
63+
64+
* Introductory: 20 %
65+
* Intermediate: 40 %
66+
* Advanced: 40 %
67+
68+
6269
## Trainer(s)
6370

6471
* Geert Jan Bex ([geertjan.bex@uhasselt.be](mailto:geertjan.bex@uhasselt.be))

source-code/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Sample code for performing computations on a GPU.
55

66
## What is it?
77

8-
1. `pycuda`: directory illustrating pyCUDA.
8+
1. `pycuda`: code illustrating pyCUDA.
99
1. `numba`: code illustrating using numba for GPU computing.
10-
1. `cupy`: Jupyter notebook illustrating some aspects of the `cupy` package.
10+
1. `cupy`: code illustrating some aspects of the `cupy` package.
11+
1. `cupynumeric`: code illustrating using cuPyNumeric for GPU computing.

source-code/cupynumeric/README.md

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

0 commit comments

Comments
 (0)