├── Chapter01 └── README.md ├── Chapter02 └── README.md ├── Chapter03 └── README.md ├── Chapter04 ├── README.md └── solution.cu ├── Chapter05 └── README.md ├── Chapter06 └── README.md ├── Chapter07 ├── README.md ├── constant_memory.cu ├── global_memory.cu └── local_memory.cu ├── Chapter08 └── README.md ├── Chapter09 ├── README.md ├── Unified_normal.cu ├── Unified_prefetch.cu └── solution.cu ├── Chapter10 ├── README.md ├── pinned_memory.cu └── solution.cu ├── Chapter11 ├── README.md ├── streamV2.cu └── streaming.cu ├── Chapter12 ├── README.md └── data_hazard.cu ├── Chapter13 ├── README.md └── atomic.cu ├── Chapter14 ├── README.md └── shared.cu └── README.md /Chapter01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter01/README.md -------------------------------------------------------------------------------- /Chapter02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter02/README.md -------------------------------------------------------------------------------- /Chapter03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter03/README.md -------------------------------------------------------------------------------- /Chapter04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter04/README.md -------------------------------------------------------------------------------- /Chapter04/solution.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter04/solution.cu -------------------------------------------------------------------------------- /Chapter05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter05/README.md -------------------------------------------------------------------------------- /Chapter06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter06/README.md -------------------------------------------------------------------------------- /Chapter07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter07/README.md -------------------------------------------------------------------------------- /Chapter07/constant_memory.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter07/constant_memory.cu -------------------------------------------------------------------------------- /Chapter07/global_memory.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter07/global_memory.cu -------------------------------------------------------------------------------- /Chapter07/local_memory.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter07/local_memory.cu -------------------------------------------------------------------------------- /Chapter08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter08/README.md -------------------------------------------------------------------------------- /Chapter09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter09/README.md -------------------------------------------------------------------------------- /Chapter09/Unified_normal.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter09/Unified_normal.cu -------------------------------------------------------------------------------- /Chapter09/Unified_prefetch.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter09/Unified_prefetch.cu -------------------------------------------------------------------------------- /Chapter09/solution.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter09/solution.cu -------------------------------------------------------------------------------- /Chapter10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter10/README.md -------------------------------------------------------------------------------- /Chapter10/pinned_memory.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter10/pinned_memory.cu -------------------------------------------------------------------------------- /Chapter10/solution.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter10/solution.cu -------------------------------------------------------------------------------- /Chapter11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter11/README.md -------------------------------------------------------------------------------- /Chapter11/streamV2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter11/streamV2.cu -------------------------------------------------------------------------------- /Chapter11/streaming.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter11/streaming.cu -------------------------------------------------------------------------------- /Chapter12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter12/README.md -------------------------------------------------------------------------------- /Chapter12/data_hazard.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter12/data_hazard.cu -------------------------------------------------------------------------------- /Chapter13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter13/README.md -------------------------------------------------------------------------------- /Chapter13/atomic.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter13/atomic.cu -------------------------------------------------------------------------------- /Chapter14/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter14/README.md -------------------------------------------------------------------------------- /Chapter14/shared.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/Chapter14/shared.cu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CisMine/Parallel-Computing-Cuda-C/HEAD/README.md --------------------------------------------------------------------------------