Changes between Version 14 and Version 15 of Notes_on_CUDA_Semantics


Ignore:
Timestamp:
07/22/22 11:41:47 (4 years ago)
Author:
Alex Wilton
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Notes_on_CUDA_Semantics

    v14 v15  
     1= Notes on CUDA Semantics =
     2
     3A loosely organized collection of notes on the various aspects of CUDA and its semantics. Meant for assisting CIVL developers in understanding how to properly implement support for CUDA in CIVL-C.
     4
    15== Cuda Programming Model ==
    26
     
    257261A kernel instance is a struct containing the $proc that is the kernel itself and a flag indicating whether the kernel is blocked and waiting to execute, executing, or finished executing.
    258262
     263
    259264== Other Resources ==
    260265
    261266Streams and Queues - http://on-demand.gputechconf.com/gtc-express/2011/presentations/StreamsAndConcurrencyWebinar.pdf
     267
     268== Warp Semantics ==
     269