Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
seibert committed Aug 12, 2024
1 parent 1441e57 commit 7ab3219
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 1 - Numba basics.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@
"metadata": {},
"outputs": [],
"source": [
"# first select the `float64` signature\n",
"# first select the `float64` signature using the `.signatures` list attribute on the add_one function\n",
"my_sig = # You write this!\n",
"print(my_sig)\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion 3 - Parallel features.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@
"\n",
" return np.sqrt(acc)\n",
"\n",
"x = np.arange(100000000.)\n",
"x = np.arange(1000000.)\n",
"\n",
"np.testing.assert_allclose(two_norm(x), np.linalg.norm(x))"
]
Expand Down

0 comments on commit 7ab3219

Please sign in to comment.