├── README.md ├── Reduction ├── cudastart.h ├── readme.md ├── reduction └── reduction.cu ├── Reduction2 ├── cudastart.h ├── readme.md ├── reduction2 └── reduction2.cu ├── Reduction3 ├── cudastart.h ├── readme.md ├── reduction3 └── reduction3.cu └── Sum_Matrix ├── cudastart.h ├── readme.md └── sum_martix.cu /README.md: -------------------------------------------------------------------------------- 1 | # CUDA_study 2 | 3 | Here are the codes of https://zhuanlan.zhihu.com/c_1188568938097819648 4 | -------------------------------------------------------------------------------- /Reduction/cudastart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction/cudastart.h -------------------------------------------------------------------------------- /Reduction/readme.md: -------------------------------------------------------------------------------- 1 | 2 | https://zhuanlan.zhihu.com/p/98190609 3 | -------------------------------------------------------------------------------- /Reduction/reduction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction/reduction -------------------------------------------------------------------------------- /Reduction/reduction.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction/reduction.cu -------------------------------------------------------------------------------- /Reduction2/cudastart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction2/cudastart.h -------------------------------------------------------------------------------- /Reduction2/readme.md: -------------------------------------------------------------------------------- 1 | https://zhuanlan.zhihu.com/p/98416987 2 | -------------------------------------------------------------------------------- /Reduction2/reduction2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction2/reduction2 -------------------------------------------------------------------------------- /Reduction2/reduction2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction2/reduction2.cu -------------------------------------------------------------------------------- /Reduction3/cudastart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction3/cudastart.h -------------------------------------------------------------------------------- /Reduction3/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Reduction3/reduction3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction3/reduction3 -------------------------------------------------------------------------------- /Reduction3/reduction3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Reduction3/reduction3.cu -------------------------------------------------------------------------------- /Sum_Matrix/cudastart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Sum_Matrix/cudastart.h -------------------------------------------------------------------------------- /Sum_Matrix/readme.md: -------------------------------------------------------------------------------- 1 | 2 | https://zhuanlan.zhihu.com/p/97192227 3 | -------------------------------------------------------------------------------- /Sum_Matrix/sum_martix.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZihaoZhao/CUDA_study/HEAD/Sum_Matrix/sum_martix.cu --------------------------------------------------------------------------------