├── .gitignore ├── 20240102_jit.md ├── 20240921_metal.md ├── 20241112_pm.md ├── 20241129_viz.md ├── 20241203_beam.md ├── 20241203_matmul.md ├── 20241208_conv.md ├── 20241217_st.md ├── 20241231_intro.md ├── 20250114_memoryview.md ├── 20250117_fusion.md ├── 20250119_uop_singleton.md ├── 20250325_lop3_table.md ├── README.md ├── addingaccelerator.md ├── backends.md ├── codegen.md ├── colors.md ├── commandqueue.md ├── cuda-tensor-core-pt1.md ├── dotproduct.md ├── images ├── image0.png ├── image1.png ├── image10.png ├── image11.png ├── image12.png ├── image13.png ├── image14.png ├── image15.png ├── image16.png ├── image17.png ├── image18.png ├── image19.png ├── image2.png ├── image20.png ├── image21.png ├── image22.png ├── image23.png ├── image24.png ├── image3.png ├── image4.png ├── image5.png ├── image6.png ├── image7.png ├── image8.png ├── image9.png ├── img25.png ├── img26.png ├── img27.png ├── img28.png ├── img29.png ├── img30.png ├── img31.png ├── img32.png ├── img33.png ├── img34.png ├── img35.png ├── img36.png ├── img37.png ├── img38.png ├── img39.png ├── img40.png ├── img41.png ├── img42.png ├── img43.png ├── img44.png ├── img45.png ├── img46.png ├── img47.png ├── img48.png ├── img49.png ├── img50.png ├── img51.png ├── img52.png ├── img53.png ├── img54.png ├── img55.png ├── img56.png ├── img57.png ├── img58.png ├── img59.png ├── img60.png ├── img61.png ├── img62.png ├── img63.png ├── img64.png ├── img65.png ├── img66.png ├── img67.png ├── img68.png ├── img69.png ├── img70.png ├── img71.png ├── img72.png ├── img73.png ├── img74.png ├── img75.png ├── img76.png ├── img77.png ├── img78.png ├── img79.png ├── img80.png ├── img81.png └── logo.svg ├── img ├── 20250106_st_illustrate.excalidraw ├── 82.png ├── 83.png ├── 84.png ├── 85.png ├── 86.png ├── 87.png ├── 88.png ├── 89.png ├── 90.png └── 91.png ├── mergedim.md ├── multigpu.md ├── profiling.md ├── scheduleitem.md ├── scripts └── lop3_table.py ├── symbolic-mean.md ├── uops-2.md ├── uops-doc.md ├── uops.md ├── upcast.md └── upcast2.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__/ -------------------------------------------------------------------------------- /20240102_jit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20240102_jit.md -------------------------------------------------------------------------------- /20240921_metal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20240921_metal.md -------------------------------------------------------------------------------- /20241112_pm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20241112_pm.md -------------------------------------------------------------------------------- /20241129_viz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20241129_viz.md -------------------------------------------------------------------------------- /20241203_beam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20241203_beam.md -------------------------------------------------------------------------------- /20241203_matmul.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20241203_matmul.md -------------------------------------------------------------------------------- /20241208_conv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20241208_conv.md -------------------------------------------------------------------------------- /20241217_st.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20241217_st.md -------------------------------------------------------------------------------- /20241231_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20241231_intro.md -------------------------------------------------------------------------------- /20250114_memoryview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20250114_memoryview.md -------------------------------------------------------------------------------- /20250117_fusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20250117_fusion.md -------------------------------------------------------------------------------- /20250119_uop_singleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20250119_uop_singleton.md -------------------------------------------------------------------------------- /20250325_lop3_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/20250325_lop3_table.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/README.md -------------------------------------------------------------------------------- /addingaccelerator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/addingaccelerator.md -------------------------------------------------------------------------------- /backends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/backends.md -------------------------------------------------------------------------------- /codegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/codegen.md -------------------------------------------------------------------------------- /colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/colors.md -------------------------------------------------------------------------------- /commandqueue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/commandqueue.md -------------------------------------------------------------------------------- /cuda-tensor-core-pt1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/cuda-tensor-core-pt1.md -------------------------------------------------------------------------------- /dotproduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/dotproduct.md -------------------------------------------------------------------------------- /images/image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image0.png -------------------------------------------------------------------------------- /images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image1.png -------------------------------------------------------------------------------- /images/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image10.png -------------------------------------------------------------------------------- /images/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image11.png -------------------------------------------------------------------------------- /images/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image12.png -------------------------------------------------------------------------------- /images/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image13.png -------------------------------------------------------------------------------- /images/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image14.png -------------------------------------------------------------------------------- /images/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image15.png -------------------------------------------------------------------------------- /images/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image16.png -------------------------------------------------------------------------------- /images/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image17.png -------------------------------------------------------------------------------- /images/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image18.png -------------------------------------------------------------------------------- /images/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image19.png -------------------------------------------------------------------------------- /images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image2.png -------------------------------------------------------------------------------- /images/image20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image20.png -------------------------------------------------------------------------------- /images/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image21.png -------------------------------------------------------------------------------- /images/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image22.png -------------------------------------------------------------------------------- /images/image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image23.png -------------------------------------------------------------------------------- /images/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image24.png -------------------------------------------------------------------------------- /images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image3.png -------------------------------------------------------------------------------- /images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image4.png -------------------------------------------------------------------------------- /images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image5.png -------------------------------------------------------------------------------- /images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image6.png -------------------------------------------------------------------------------- /images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image7.png -------------------------------------------------------------------------------- /images/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image8.png -------------------------------------------------------------------------------- /images/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/image9.png -------------------------------------------------------------------------------- /images/img25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img25.png -------------------------------------------------------------------------------- /images/img26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img26.png -------------------------------------------------------------------------------- /images/img27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img27.png -------------------------------------------------------------------------------- /images/img28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img28.png -------------------------------------------------------------------------------- /images/img29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img29.png -------------------------------------------------------------------------------- /images/img30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img30.png -------------------------------------------------------------------------------- /images/img31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img31.png -------------------------------------------------------------------------------- /images/img32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img32.png -------------------------------------------------------------------------------- /images/img33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img33.png -------------------------------------------------------------------------------- /images/img34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img34.png -------------------------------------------------------------------------------- /images/img35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img35.png -------------------------------------------------------------------------------- /images/img36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img36.png -------------------------------------------------------------------------------- /images/img37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img37.png -------------------------------------------------------------------------------- /images/img38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img38.png -------------------------------------------------------------------------------- /images/img39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img39.png -------------------------------------------------------------------------------- /images/img40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img40.png -------------------------------------------------------------------------------- /images/img41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img41.png -------------------------------------------------------------------------------- /images/img42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img42.png -------------------------------------------------------------------------------- /images/img43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img43.png -------------------------------------------------------------------------------- /images/img44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img44.png -------------------------------------------------------------------------------- /images/img45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img45.png -------------------------------------------------------------------------------- /images/img46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img46.png -------------------------------------------------------------------------------- /images/img47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img47.png -------------------------------------------------------------------------------- /images/img48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img48.png -------------------------------------------------------------------------------- /images/img49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img49.png -------------------------------------------------------------------------------- /images/img50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img50.png -------------------------------------------------------------------------------- /images/img51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img51.png -------------------------------------------------------------------------------- /images/img52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img52.png -------------------------------------------------------------------------------- /images/img53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img53.png -------------------------------------------------------------------------------- /images/img54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img54.png -------------------------------------------------------------------------------- /images/img55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img55.png -------------------------------------------------------------------------------- /images/img56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img56.png -------------------------------------------------------------------------------- /images/img57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img57.png -------------------------------------------------------------------------------- /images/img58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img58.png -------------------------------------------------------------------------------- /images/img59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img59.png -------------------------------------------------------------------------------- /images/img60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img60.png -------------------------------------------------------------------------------- /images/img61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img61.png -------------------------------------------------------------------------------- /images/img62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img62.png -------------------------------------------------------------------------------- /images/img63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img63.png -------------------------------------------------------------------------------- /images/img64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img64.png -------------------------------------------------------------------------------- /images/img65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img65.png -------------------------------------------------------------------------------- /images/img66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img66.png -------------------------------------------------------------------------------- /images/img67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img67.png -------------------------------------------------------------------------------- /images/img68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img68.png -------------------------------------------------------------------------------- /images/img69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img69.png -------------------------------------------------------------------------------- /images/img70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img70.png -------------------------------------------------------------------------------- /images/img71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img71.png -------------------------------------------------------------------------------- /images/img72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img72.png -------------------------------------------------------------------------------- /images/img73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img73.png -------------------------------------------------------------------------------- /images/img74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img74.png -------------------------------------------------------------------------------- /images/img75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img75.png -------------------------------------------------------------------------------- /images/img76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img76.png -------------------------------------------------------------------------------- /images/img77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img77.png -------------------------------------------------------------------------------- /images/img78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img78.png -------------------------------------------------------------------------------- /images/img79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img79.png -------------------------------------------------------------------------------- /images/img80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img80.png -------------------------------------------------------------------------------- /images/img81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/img81.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/images/logo.svg -------------------------------------------------------------------------------- /img/20250106_st_illustrate.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/20250106_st_illustrate.excalidraw -------------------------------------------------------------------------------- /img/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/82.png -------------------------------------------------------------------------------- /img/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/83.png -------------------------------------------------------------------------------- /img/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/84.png -------------------------------------------------------------------------------- /img/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/85.png -------------------------------------------------------------------------------- /img/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/86.png -------------------------------------------------------------------------------- /img/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/87.png -------------------------------------------------------------------------------- /img/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/88.png -------------------------------------------------------------------------------- /img/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/89.png -------------------------------------------------------------------------------- /img/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/90.png -------------------------------------------------------------------------------- /img/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/img/91.png -------------------------------------------------------------------------------- /mergedim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/mergedim.md -------------------------------------------------------------------------------- /multigpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/multigpu.md -------------------------------------------------------------------------------- /profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/profiling.md -------------------------------------------------------------------------------- /scheduleitem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/scheduleitem.md -------------------------------------------------------------------------------- /scripts/lop3_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/scripts/lop3_table.py -------------------------------------------------------------------------------- /symbolic-mean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/symbolic-mean.md -------------------------------------------------------------------------------- /uops-2.md: -------------------------------------------------------------------------------- 1 | ## -------------------------------------------------------------------------------- /uops-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/uops-doc.md -------------------------------------------------------------------------------- /uops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/uops.md -------------------------------------------------------------------------------- /upcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/upcast.md -------------------------------------------------------------------------------- /upcast2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mesozoic-egg/tinygrad-notes/HEAD/upcast2.md --------------------------------------------------------------------------------