File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -573,12 +573,11 @@ Usually, the single and half precision floating point operations are done using
573573- [ CUDA Training Series by NVIDIA and OLCF] ( https://www.olcf.ornl.gov/cuda-training-series/ )
574574- [ CUDA Training Series YouTube Playlist] ( https://www.youtube.com/playlist?app=desktop&list=PL6RdenZrxrw-zNX7uuGppWETdxt_JxdMj )
575575- [ CUDA Training Exercises] ( https://github.com/olcf/cuda-training-series/tree/master/exercises )
576-
577576- [ Introduction to CUDA Programming Video] ( https://www.youtube.com/watch?v=HOVvQfcBMTQ )
578577- [ Quantization using CUTLASS] ( https://www.youtube.com/watch?v=adA9AMu4_Kc )
579578- [ CUDA Mode Discord Lectures] ( https://github.com/cuda-mode/lectures )
580579- [ NVIDIA CUDA C Programming Guide] ( https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#compute-capability )
581- - [ Programming Massively Parallel Processors Book by David B. Kirk and Wen-mei W. Hwu 4th Edition]
580+ - Programming Massively Parallel Processors Book by David B. Kirk and Wen-mei W. Hwu 4th Edition
582581- [ CUDA Toolkit Documentation] ( https://docs.nvidia.com/cuda/index.html )
583582- [ Locked Memory vs Pinned Memory Discussion] ( https://stackoverflow.com/questions/62332067/vmlck-locked-memory-vs-vmpin-pinned-memory-in-proc-pid-status )
584583- [ Page-locked Memory Forum Discussion] ( https://forums.developer.nvidia.com/t/question-about-page-locked-memory/9032/2 )
Original file line number Diff line number Diff line change 6767 if ( toc ) {
6868 const tocSidebar = document . createElement ( 'aside' ) ;
6969 tocSidebar . className = 'toc-sidebar' ;
70- tocSidebar . innerHTML = toc ;
70+ tocSidebar . innerHTML = toc + '<div id="mapmyvisitors-container" style="margin-top: 20px; text-align: center;"></div>' ;
7171 document . body . appendChild ( tocSidebar ) ;
7272
73+ // Load MapMyVisitors
74+ const mapContainer = document . getElementById ( 'mapmyvisitors-container' ) ;
75+ if ( mapContainer ) {
76+ const script = document . createElement ( 'script' ) ;
77+ script . type = 'text/javascript' ;
78+ script . id = 'mapmyvisitors' ;
79+ script . src = '//mapmyvisitors.com/map.js?d=LUhlD2Iz8BXSBnyy03hiL6D4dAgpWL8TXVMoAiF7lyQ&cl=ffffff&w=a' ;
80+ mapContainer . appendChild ( script ) ;
81+ }
82+
7383 const mobileTocBtn = document . createElement ( 'button' ) ;
7484 mobileTocBtn . className = 'mobile-toc-btn' ;
7585 mobileTocBtn . setAttribute ( 'aria-label' , 'Table of Contents' ) ;
You can’t perform that action at this time.
0 commit comments