Skip to content

gagikh/cuda

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CUDA course (Compute Unified Device Architecture)

Title: Fundamentals of Accelerated Computation Using CUDA C/C++

// Oxford course link https://people.maths.ox.ac.uk/~gilesm/cuda/

// labs https://iis-people.ee.ethz.ch/~gmichi/asocd_2014/exercises/ex_03.pdf // lectures from the link

// Nvidia official c programming guide https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html https://docs.nvidia.com/cuda/pdf/CUDA_C_Programming_Guide.pdf

// Programming model https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#programming-model

// Parallel programming with CUDA https://www.davidmuench.de/studienarbeit.pdf

//

// Intorduction

// Different memory and variable types - basic kernel implementation

// control flow, atomics

// warp based programming model -> too complex after lecture 2, need to do computational tasks

// libraries, reomve this topic and provide computational tasks

// streams and host related code

// Usefull links https://www.mat.unimi.it/users/sansotte/cuda/CUDA_by_Example.pdf

// Nvidia lectures https://developer.nvidia.com/educators/existing-courses#2

// cuda-gdb set cuda break_on_launch application cuda device sm warp lane block thread //step

Exam notes

  • kernels and launch
  • warp and operations
  • shared memory
  • paged/pinned memory
  • atomic operations and global memory
  • mapped memory
  • memory transfers, sync/async launch
  • streams and stream synchronization
  • graph and graph record
  • texture memory and binding
  • texture memory

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages