Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gama1903/cuda_programming

Practice of cuda programming according to <<programming massively parallel processors 4th>>, also refer to CUDA MODE series.
https://github.com/gama1903/cuda_programming

cuda parallel-computing

Last synced: about 1 month ago
JSON representation

Practice of cuda programming according to <<programming massively parallel processors 4th>>, also refer to CUDA MODE series.

Awesome Lists containing this project

README

        

# CUDA Programming

## Introduction
Practice of cuda programming.

## Reference
1. Book: [Programming Massively Parallel Processors 4th(PMPP)](/Programming%20Massively%20Parallel%20Processors-%20A%20Hands-on%20--%20Wen-mei%20W_%20Hwu,%20David%20B_%20Kirk,%20Izzat%20El%20Hajj,%20Ph_D_%20--%204th,%202023%20--%20Morgan%20Kaufmann.pdf)
2. Lecture: [CUDA MODE](https://github.com/cuda-mode/lectures)

## Index
1. [Ch02_Heterogeneous_data_parallel_computing](Ch02_Heterogeneous_data_parallel_computing/index.md)
2. [Ch03_Multidimensional_grids_and_data](Ch03_Multidimensional_grids_and_data/index.md)
3. [Ch04_Compute_architecture_and_scheduling](Ch04_Compute_architecture_and_scheduling/index.md)
4. [Ch05_Memory_architecture_and_data_locality](Ch05_Memory_architecture_and_data_locality/index.md)
5. [Ch06_Performance_considerations](Ch06_Performance_considerations/index.md)
6. [Ch07_Convolution](Ch07_Convolution/index.md)
7. [Ch08_Stencil](Ch08_Stencil/index.md)
8. [Ch09_Parallel_histogram](Ch09_Parallel_histogram/index.md)
9. [Ch10_Reduction](Ch10_Reduction/index.md)
10. [Ch11_Prefix_sum(scan)](Ch11_Prefix_sum(scan)/index.md)
11. [Ch12_Merge](Ch12_Merge/index.md)
12. [Ch13_Sorting](Ch13_Sorting/index.md)
13. [Ch14_Sparse_matrix_computation](Ch14_Sparse_matrix_computation/index.md)
14. [Ch15_Graph_traversal](Ch15_Graph_traversal/index.md)