Skip to content

Commit a8d85f6

Browse files
committed
Accelerated Python Tutorial: Fix typo in cuda-cccl notebook.
1 parent 4608ab8 commit a8d85f6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tutorials/accelerated-python/notebooks/libraries/23__cuda_cccl__customizing_algorithms.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@
378378
"\n",
379379
"def evens_sum_cccl(d_input, d_output, h_init):\n",
380380
" # note, using `op` as the binary operation, rather than `OpKind.PLUS`:\n",
381-
" comp..reduce_into(d_input, d_output, sum_even_op, len(d_input), h_init)\n",
381+
" comp.reduce_into(d_input, d_output, sum_even_op, len(d_input), h_init)\n",
382382
"\n",
383383
"def time_gpu_func(f, *args, **kwargs):\n",
384384
" cp.cuda.Device().synchronize()\n",
@@ -1367,6 +1367,10 @@
13671367
}
13681368
],
13691369
"metadata": {
1370+
"colab": {
1371+
"gpuType": "T4",
1372+
"provenance": []
1373+
},
13701374
"kernelspec": {
13711375
"display_name": "Python 3 (ipykernel)",
13721376
"language": "python",
@@ -1383,12 +1387,8 @@
13831387
"nbconvert_exporter": "python",
13841388
"pygments_lexer": "ipython3",
13851389
"version": "3.10.12"
1386-
},
1387-
"colab": {
1388-
"provenance": [],
1389-
"gpuType": "T4"
13901390
}
13911391
},
13921392
"nbformat": 4,
13931393
"nbformat_minor": 5
1394-
}
1394+
}

0 commit comments

Comments
 (0)