Skip to content

Commit 59ea1ea

Browse files
authored
Merge pull request #1 from gjbex/development
Development
2 parents 0571744 + 72ca412 commit 59ea1ea

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ GitHub repository for participants of the "Python on GPUs" training.
44
For information on the training, see the website
55
[https://gjbex.github.io/Python-on-GPUs/](https://gjbex.github.io/Python-on-GPUs/)
66

7+
**Note: this is work in progress**
78

89
## What is it?
910

source-code/numba.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1012,7 +1012,7 @@
10121012
" x_stride, y_stride = cuda.gridsize(2)\n",
10131013
" for i in range(x, Z.shape[0], x_stride):\n",
10141014
" for j in range(y, Z.shape[1], y_stride):\n",
1015-
" nr_steps[j, i] = 0\n",
1015+
" nr_steps[i, j] = 0\n",
10161016
" z = Z[i][j]\n",
10171017
" while z.real*z.real + z.imag*z.imag < np.float32(2.0) and nr_steps[j][i] < max_steps: \n",
10181018
" z = z*z + c\n",
@@ -1575,7 +1575,7 @@
15751575
"name": "python",
15761576
"nbconvert_exporter": "python",
15771577
"pygments_lexer": "ipython3",
1578-
"version": "3.9.7"
1578+
"version": "3.10.8"
15791579
}
15801580
},
15811581
"nbformat": 4,

0 commit comments

Comments
 (0)