We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 856cc0f commit 324aee9Copy full SHA for 324aee9
doc/source/matrix_multiplication.ipynb
@@ -314,6 +314,11 @@
314
" int k, kb;\n",
315
"\n",
316
" float sum[tile_size_y][tile_size_x];\n",
317
+ " for (int i=0; i < tile_size_y; i++) {\n",
318
+ " for (int j=0; j < tile_size_x; j++) {\n",
319
+ " sum[i][j] = 0.0;\n",
320
+ " }\n",
321
+ " } \n",
322
323
" for (k = 0; k < WIDTH; k += block_size_x) {\n",
324
@@ -430,7 +435,7 @@
430
435
],
431
436
"metadata": {
432
437
"kernelspec": {
433
- "display_name": "Python 3",
438
+ "display_name": "Python 3 (ipykernel)",
434
439
"language": "python",
440
"name": "python3"
441
},
@@ -444,7 +449,7 @@
444
449
"name": "python",
445
450
"nbconvert_exporter": "python",
446
451
"pygments_lexer": "ipython3",
447
- "version": "3.7.9"
452
+ "version": "3.9.12"
448
453
}
454
455
"nbformat": 4,
0 commit comments