CUDA C Programming Guide PDF
CUDA C Programming Guide PDF
Design Guide
CHANGES FROM VERSION 10.2
‣ Updated Introduction.
‣ Added documentation for Device Memory L2 Access Management.
‣ Added documentation for Asynchronously Copy Data from Global to Shared
Memory.
‣ Added documentation for Split Arrive/Wait Barrier.
‣ Added documentation for Compute Capability 8.0.
‣ Added documentation for Warp Reduce Functions.
‣ Added documentation for tf32, Bfloat16 and Double Precision Tensor Cores via
Warp matrix functions API.
‣ Added documentation for Bfloat16 (__nv_bfloat16) math.
‣ Added documentation for changing parameters in CUDA Graphs via Updating
Instantiated Graphs.
‣ Added documentation for new functionalities for Cooperative Groups.
‣ Bug fixes and updates for Features and Technical Specifications.
‣ Added C++17 Language Features.
‣ Added Load Functions Using Cache Hints and Store Functions Using Cache Hints.
‣ Added missing __device__ specifiers in Address Space Predicate Functions.
‣ Added Address Space Conversion Functions.
‣ Updated satf (saturate to finite value) Description in Warp matrix functions.
‣ Added documentation for Breakpoint Function.
‣ Added documentation for Trap function.
‣ Added documentation for Nanosleep Function.
‣ Added MIG support to the description of CUDA_VISIBLE_DEVICES in CUDA
Environment Variables.
‣ Updated that round() maps to a 5-instruction sequence and the maximum ulp error
of tanh(x) to 1 (full range) in Standard Functions.
‣ Clarified when the primary context is created in Initialization.
‣ Fixed Cd.elements to d_C.elements in Shared Memory.
‣ Dropped documentation for compute capabilities 3.0 and 3.2.
‣ General wording improvements throughout the guide.
‣ Fixed minor typos in code examples.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | ii
TABLE OF CONTENTS
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | iii
3.2.6.2. Concurrent Kernel Execution............................................................... 36
3.2.6.3. Overlap of Data Transfer and Kernel Execution......................................... 37
3.2.6.4. Concurrent Data Transfers.................................................................. 37
3.2.6.5. Streams......................................................................................... 37
3.2.6.6. CUDA Graphs.................................................................................. 41
3.2.6.7. Events...........................................................................................50
3.2.6.8. Synchronous Calls.............................................................................51
3.2.7. Multi-Device System............................................................................... 51
3.2.7.1. Device Enumeration.......................................................................... 51
3.2.7.2. Device Selection.............................................................................. 51
3.2.7.3. Stream and Event Behavior................................................................. 52
3.2.7.4. Peer-to-Peer Memory Access................................................................52
3.2.7.5. Peer-to-Peer Memory Copy..................................................................53
3.2.8. Unified Virtual Address Space................................................................... 54
3.2.9. Interprocess Communication..................................................................... 54
3.2.10. Error Checking.................................................................................... 55
3.2.11. Call Stack.......................................................................................... 56
3.2.12. Texture and Surface Memory................................................................... 56
3.2.12.1. Texture Memory............................................................................. 56
3.2.12.2. Surface Memory............................................................................. 66
3.2.12.3. CUDA Arrays..................................................................................70
3.2.12.4. Read/Write Coherency..................................................................... 70
3.2.13. Graphics Interoperability........................................................................ 70
3.2.13.1. OpenGL Interoperability................................................................... 71
3.2.13.2. Direct3D Interoperability...................................................................73
3.2.13.3. SLI Interoperability..........................................................................79
3.2.14. External Resource Interoperability............................................................ 80
3.2.14.1. Vulkan Interoperability..................................................................... 81
3.2.14.2. OpenGL Interoperability................................................................... 89
3.2.14.3. Direct3D 12 Interoperability...............................................................89
3.2.14.4. Direct3D 11 Interoperability...............................................................96
3.2.14.5. NVIDIA Software Communication Interface Interoperability (NVSCI).............. 103
3.3. Versioning and Compatibility........................................................................ 108
3.4. Compute Modes........................................................................................ 109
3.5. Mode Switches..........................................................................................110
3.6. Tesla Compute Cluster Mode for Windows.........................................................110
Chapter 4. Hardware Implementation.................................................................... 112
4.1. SIMT Architecture...................................................................................... 112
4.2. Hardware Multithreading............................................................................. 114
Chapter 5. Performance Guidelines....................................................................... 116
5.1. Overall Performance Optimization Strategies..................................................... 116
5.2. Maximize Utilization...................................................................................116
5.2.1. Application Level................................................................................. 116
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | iv
5.2.2. Device Level....................................................................................... 117
5.2.3. Multiprocessor Level............................................................................. 117
5.2.3.1. Occupancy Calculator...................................................................... 119
5.3. Maximize Memory Throughput....................................................................... 121
5.3.1. Data Transfer between Host and Device......................................................122
5.3.2. Device Memory Accesses........................................................................ 123
5.4. Maximize Instruction Throughput................................................................... 127
5.4.1. Arithmetic Instructions.......................................................................... 127
5.4.2. Control Flow Instructions....................................................................... 132
5.4.3. Synchronization Instruction..................................................................... 133
Appendix A. CUDA-Enabled GPUs.......................................................................... 134
Appendix B. C++ Language Extensions................................................................... 135
B.1. Function Execution Space Specifiers............................................................... 135
B.1.1. __global__......................................................................................... 135
B.1.2. __device__.........................................................................................135
B.1.3. __host__............................................................................................136
B.1.4. Undefined behavior.............................................................................. 136
B.1.5. __noinline__ and __forceinline__..............................................................136
B.2. Variable Memory Space Specifiers.................................................................. 137
B.2.1. __device__.........................................................................................137
B.2.2. __constant__...................................................................................... 137
B.2.3. __shared__.........................................................................................138
B.2.4. __managed__......................................................................................138
B.2.5. __restrict__........................................................................................139
B.3. Built-in Vector Types.................................................................................. 140
B.3.1. char, short, int, long, longlong, float, double...............................................140
B.3.2. dim3................................................................................................ 141
B.4. Built-in Variables.......................................................................................142
B.4.1. gridDim............................................................................................. 142
B.4.2. blockIdx............................................................................................ 142
B.4.3. blockDim........................................................................................... 142
B.4.4. threadIdx...........................................................................................142
B.4.5. warpSize............................................................................................142
B.5. Memory Fence Functions............................................................................. 142
B.6. Synchronization Functions............................................................................ 145
B.7. Mathematical Functions...............................................................................147
B.8. Texture Functions...................................................................................... 147
B.8.1. Texture Object API............................................................................... 147
B.8.1.1. tex1Dfetch()..................................................................................147
B.8.1.2. tex1D()........................................................................................ 147
B.8.1.3. tex1DLod()....................................................................................147
B.8.1.4. tex1DGrad().................................................................................. 147
B.8.1.5. tex2D()........................................................................................ 148
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | v
B.8.1.6. tex2DLod()....................................................................................148
B.8.1.7. tex2DGrad().................................................................................. 148
B.8.1.8. tex3D()........................................................................................ 148
B.8.1.9. tex3DLod()....................................................................................148
B.8.1.10. tex3DGrad().................................................................................148
B.8.1.11. tex1DLayered()............................................................................. 149
B.8.1.12. tex1DLayeredLod().........................................................................149
B.8.1.13. tex1DLayeredGrad()....................................................................... 149
B.8.1.14. tex2DLayered()............................................................................. 149
B.8.1.15. tex2DLayeredLod().........................................................................149
B.8.1.16. tex2DLayeredGrad()....................................................................... 149
B.8.1.17. texCubemap().............................................................................. 150
B.8.1.18. texCubemapLod().......................................................................... 150
B.8.1.19. texCubemapLayered().....................................................................150
B.8.1.20. texCubemapLayeredLod()................................................................ 150
B.8.1.21. tex2Dgather()...............................................................................150
B.8.2. Texture Reference API........................................................................... 151
B.8.2.1. tex1Dfetch()..................................................................................151
B.8.2.2. tex1D()........................................................................................ 151
B.8.2.3. tex1DLod()....................................................................................152
B.8.2.4. tex1DGrad().................................................................................. 152
B.8.2.5. tex2D()........................................................................................ 152
B.8.2.6. tex2DLod()....................................................................................152
B.8.2.7. tex2DGrad().................................................................................. 152
B.8.2.8. tex3D()........................................................................................ 153
B.8.2.9. tex3DLod()....................................................................................153
B.8.2.10. tex3DGrad().................................................................................153
B.8.2.11. tex1DLayered()............................................................................. 153
B.8.2.12. tex1DLayeredLod().........................................................................154
B.8.2.13. tex1DLayeredGrad()....................................................................... 154
B.8.2.14. tex2DLayered()............................................................................. 154
B.8.2.15. tex2DLayeredLod().........................................................................154
B.8.2.16. tex2DLayeredGrad()....................................................................... 155
B.8.2.17. texCubemap().............................................................................. 155
B.8.2.18. texCubemapLod().......................................................................... 155
B.8.2.19. texCubemapLayered().....................................................................155
B.8.2.20. texCubemapLayeredLod()................................................................ 155
B.8.2.21. tex2Dgather()...............................................................................156
B.9. Surface Functions...................................................................................... 156
B.9.1. Surface Object API............................................................................... 156
B.9.1.1. surf1Dread().................................................................................. 156
B.9.1.2. surf1Dwrite................................................................................... 156
B.9.1.3. surf2Dread().................................................................................. 157
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | vi
B.9.1.4. surf2Dwrite()................................................................................. 157
B.9.1.5. surf3Dread().................................................................................. 157
B.9.1.6. surf3Dwrite()................................................................................. 157
B.9.1.7. surf1DLayeredread()........................................................................ 158
B.9.1.8. surf1DLayeredwrite()....................................................................... 158
B.9.1.9. surf2DLayeredread()........................................................................ 158
B.9.1.10. surf2DLayeredwrite()...................................................................... 158
B.9.1.11. surfCubemapread()........................................................................ 159
B.9.1.12. surfCubemapwrite()....................................................................... 159
B.9.1.13. surfCubemapLayeredread()...............................................................159
B.9.1.14. surfCubemapLayeredwrite()..............................................................159
B.9.2. Surface Reference API........................................................................... 160
B.9.2.1. surf1Dread().................................................................................. 160
B.9.2.2. surf1Dwrite................................................................................... 160
B.9.2.3. surf2Dread().................................................................................. 160
B.9.2.4. surf2Dwrite()................................................................................. 160
B.9.2.5. surf3Dread().................................................................................. 161
B.9.2.6. surf3Dwrite()................................................................................. 161
B.9.2.7. surf1DLayeredread()........................................................................ 161
B.9.2.8. surf1DLayeredwrite()....................................................................... 161
B.9.2.9. surf2DLayeredread()........................................................................ 162
B.9.2.10. surf2DLayeredwrite()...................................................................... 162
B.9.2.11. surfCubemapread()........................................................................ 162
B.9.2.12. surfCubemapwrite()....................................................................... 162
B.9.2.13. surfCubemapLayeredread()...............................................................163
B.9.2.14. surfCubemapLayeredwrite()..............................................................163
B.10. Read-Only Data Cache Load Function.............................................................163
B.11. Load Functions Using Cache Hints.................................................................164
B.12. Store Functions Using Cache Hints................................................................ 164
B.13. Time Function.........................................................................................164
B.14. Atomic Functions..................................................................................... 165
B.14.1. Arithmetic Functions........................................................................... 166
B.14.1.1. atomicAdd().................................................................................166
B.14.1.2. atomicSub()................................................................................. 167
B.14.1.3. atomicExch()................................................................................167
B.14.1.4. atomicMin()................................................................................. 167
B.14.1.5. atomicMax().................................................................................168
B.14.1.6. atomicInc()..................................................................................168
B.14.1.7. atomicDec().................................................................................168
B.14.1.8. atomicCAS().................................................................................168
B.14.2. Bitwise Functions............................................................................... 169
B.14.2.1. atomicAnd().................................................................................169
B.14.2.2. atomicOr().................................................................................. 169
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | vii
B.14.2.3. atomicXor()................................................................................. 169
B.15. Address Space Predicate Functions................................................................170
B.15.1. __isGlobal()...................................................................................... 170
B.15.2. __isShared()...................................................................................... 170
B.15.3. __isConstant()....................................................................................170
B.15.4. __isLocal()........................................................................................ 170
B.16. Address Space Conversion Functions.............................................................. 170
B.16.1. __cvta_generic_to_global().................................................................... 170
B.16.2. __cvta_generic_to_shared()................................................................... 170
B.16.3. __cvta_generic_to_constant().................................................................171
B.16.4. __cvta_generic_to_local()..................................................................... 171
B.16.5. __cvta_global_to_generic().................................................................... 171
B.16.6. __cvta_shared_to_generic()................................................................... 171
B.16.7. __cvta_constant_to_generic().................................................................171
B.16.8. __cvta_local_to_generic()..................................................................... 171
B.17. Warp Vote Functions................................................................................. 171
B.18. Warp Match Functions............................................................................... 172
B.18.1. Synopsys.......................................................................................... 173
B.18.2. Description....................................................................................... 173
B.19. Warp Reduce Functions..............................................................................173
B.19.1. Synopsys.......................................................................................... 174
B.19.2. Description....................................................................................... 174
B.20. Warp Shuffle Functions..............................................................................174
B.20.1. Synopsis........................................................................................... 175
B.20.2. Description....................................................................................... 175
B.20.3. Notes.............................................................................................. 176
B.20.4. Examples..........................................................................................177
B.20.4.1. Broadcast of a single value across a warp............................................ 177
B.20.4.2. Inclusive plus-scan across sub-partitions of 8 threads............................... 177
B.20.4.3. Reduction across a warp................................................................. 178
B.21. Nanosleep Function.................................................................................. 178
B.21.1. Synopsis........................................................................................... 178
B.21.2. Description....................................................................................... 178
B.21.3. Example...........................................................................................178
B.22. Warp matrix functions............................................................................... 179
B.22.1. Description....................................................................................... 179
B.22.2. Alternate Floating Point....................................................................... 181
B.22.3. Double Precision.................................................................................182
B.22.4. Sub-byte Operations............................................................................ 182
B.22.5. Restrictions.......................................................................................183
B.22.6. Element Types & Matrix Sizes.................................................................184
B.22.7. Example...........................................................................................186
B.23. Split Arrive/Wait Barrier............................................................................ 186
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | viii
B.23.1. Simple Synchronization Pattern...............................................................186
B.23.2. Temporal Splitting and Five Stages of Synchronization................................... 187
B.23.3. Bootstrap Initialization, Expected Arrive Count, and Participation..................... 188
B.23.4. Countdown, Complete, Reset, and Phase...................................................188
B.23.5. Countdown to a Collective Operation....................................................... 189
B.23.6. Spatial Partitioning (also known as Warp Specialization).................................190
B.23.7. Early Exit (Dropping out of Participation).................................................. 192
B.23.8. AWBarrier Interface.............................................................................193
B.23.8.1. Synopsis of cuda_awbarrier.h............................................................ 193
B.23.8.2. Initialize..................................................................................... 193
B.23.8.3. Invalidate....................................................................................194
B.23.8.4. Arrive........................................................................................ 194
B.23.8.5. Wait.......................................................................................... 194
B.23.8.6. Automatic Reset........................................................................... 194
B.23.8.7. Arrive and Drop............................................................................ 195
B.23.8.8. Pending Count.............................................................................. 195
B.23.9. Memory Barrier Primitives Interface......................................................... 195
B.23.9.1. Data Types.................................................................................. 195
B.23.9.2. Memory Barrier Primitives API...........................................................195
B.24. Asynchronously Copy Data from Global to Shared Memory.................................... 196
B.24.1. Copy and Compute Pattern....................................................................197
B.24.1.1. Without Async-Copy....................................................................... 197
B.24.1.2. With Async-Copy........................................................................... 198
B.24.1.3. Async-Copy Pipeline Pattern............................................................. 199
B.24.1.4. Async-Copy Pipeline Pattern using Split Arrive/Wait Barrier........................202
B.24.2. Performance Guidance for Async-Copy...................................................... 204
B.24.2.1. Warp Entanglement - Commit........................................................... 204
B.24.2.2. Warp Entanglement - Wait............................................................... 205
B.24.2.3. Warp Entanglement - Arrive-On......................................................... 205
B.24.2.4. Keep Commit and Arrive-On Operations Converged..................................205
B.24.3. Pipeline Interface............................................................................... 205
B.24.3.1. Async-Copy an Object.................................................................... 206
B.24.3.2. Async-Copy an Array Segment........................................................... 206
B.24.3.3. Construct Pipeline Object................................................................ 207
B.24.3.4. Commit and Wait for Batch of Async-Copy............................................ 207
B.24.3.5. Commit Batch of Async-Copy............................................................ 207
B.24.3.6. Wait for Committed Batches of Async-Copy...........................................207
B.24.3.7. Wait for Committed Batches of Async-Copy by Index............................... 207
B.24.3.8. Complete as an Arrive Operation....................................................... 208
B.24.4. Pipeline Primitives Interface.................................................................. 208
B.24.4.1. Async-Copy Primitive...................................................................... 208
B.24.4.2. Commit Primitive.......................................................................... 209
B.24.4.3. Wait Primitive.............................................................................. 209
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | ix
B.24.4.4. Arrive On Barrier Primitive...............................................................209
B.25. Profiler Counter Function........................................................................... 209
B.26. Assertion............................................................................................... 210
B.27. Trap function.......................................................................................... 211
B.28. Breakpoint Function................................................................................. 211
B.29. Formatted Output.................................................................................... 211
B.29.1. Format Specifiers............................................................................... 212
B.29.2. Limitations....................................................................................... 212
B.29.3. Associated Host-Side API.......................................................................213
B.29.4. Examples..........................................................................................214
B.30. Dynamic Global Memory Allocation and Operations............................................ 215
B.30.1. Heap Memory Allocation....................................................................... 215
B.30.2. Interoperability with Host Memory API......................................................216
B.30.3. Examples..........................................................................................216
B.30.3.1. Per Thread Allocation.....................................................................217
B.30.3.2. Per Thread Block Allocation............................................................. 218
B.30.3.3. Allocation Persisting Between Kernel Launches...................................... 219
B.31. Execution Configuration............................................................................. 220
B.32. Launch Bounds........................................................................................ 220
B.33. #pragma unroll........................................................................................223
B.34. SIMD Video Instructions..............................................................................223
Appendix C. Cooperative Groups.......................................................................... 225
C.1. Introduction.............................................................................................225
C.2. What's New in CUDA 11.0............................................................................ 225
C.3. Programming Model Concept........................................................................ 226
C.3.1. Composition Example............................................................................ 227
C.4. Group Types............................................................................................ 228
C.4.1. Implicit Groups................................................................................... 228
C.4.1.1. Thread Block Group........................................................................ 228
C.4.1.2. Grid Group................................................................................... 229
C.4.1.3. Multi Grid Group............................................................................ 229
C.4.2. Explicit Groups....................................................................................230
C.4.2.1. Thread Block Tile........................................................................... 230
C.4.2.2. Coalesced Groups........................................................................... 231
C.5. Group Partitioning..................................................................................... 234
C.6. Group Collectives...................................................................................... 235
C.6.1. Synchronization................................................................................... 235
C.6.2. Data Transfer......................................................................................236
C.6.3. Data manipulation................................................................................238
C.7. Grid Synchronization.................................................................................. 240
C.8. Multi-Device Synchronization........................................................................ 241
Appendix D. CUDA Dynamic Parallelism.................................................................. 245
D.1. Introduction.............................................................................................245
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | x
D.1.1. Overview........................................................................................... 245
D.1.2. Glossary............................................................................................ 245
D.2. Execution Environment and Memory Model....................................................... 246
D.2.1. Execution Environment.......................................................................... 246
D.2.1.1. Parent and Child Grids..................................................................... 246
D.2.1.2. Scope of CUDA Primitives................................................................. 247
D.2.1.3. Synchronization..............................................................................247
D.2.1.4. Streams and Events.........................................................................247
D.2.1.5. Ordering and Concurrency.................................................................248
D.2.1.6. Device Management........................................................................ 248
D.2.2. Memory Model.................................................................................... 248
D.2.2.1. Coherence and Consistency............................................................... 249
D.3. Programming Interface................................................................................251
D.3.1. CUDA C++ Reference.............................................................................251
D.3.1.1. Device-Side Kernel Launch................................................................ 251
D.3.1.2. Streams....................................................................................... 252
D.3.1.3. Events......................................................................................... 252
D.3.1.4. Synchronization..............................................................................253
D.3.1.5. Device Management........................................................................ 253
D.3.1.6. Memory Declarations....................................................................... 253
D.3.1.7. API Errors and Launch Failures........................................................... 255
D.3.1.8. API Reference................................................................................256
D.3.2. Device-side Launch from PTX.................................................................. 257
D.3.2.1. Kernel Launch APIs......................................................................... 257
D.3.2.2. Parameter Buffer Layout.................................................................. 259
D.3.3. Toolkit Support for Dynamic Parallelism......................................................259
D.3.3.1. Including Device Runtime API in CUDA Code........................................... 259
D.3.3.2. Compiling and Linking......................................................................260
D.4. Programming Guidelines.............................................................................. 260
D.4.1. Basics............................................................................................... 260
D.4.2. Performance....................................................................................... 261
D.4.2.1. Synchronization..............................................................................261
D.4.2.2. Dynamic-parallelism-enabled Kernel Overhead........................................ 262
D.4.3. Implementation Restrictions and Limitations................................................ 262
D.4.3.1. Runtime....................................................................................... 262
Appendix E. Virtual Memory Management............................................................... 265
E.1. Introduction............................................................................................. 265
E.2. Query for support......................................................................................266
E.3. Allocating Physical Memory.......................................................................... 266
E.3.1. Shareable Memory Allocations..................................................................267
E.3.2. Memory Type...................................................................................... 268
E.3.2.1. Compressible Memory...................................................................... 268
E.4. Reserving a Virtual Address Range.................................................................. 269
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | xi
E.5. Mapping Memory....................................................................................... 269
E.6. Control Access Rights................................................................................. 270
Appendix F. Mathematical Functions......................................................................271
F.1. Standard Functions..................................................................................... 271
F.2. Intrinsic Functions......................................................................................279
Appendix G. C++ Language Support.......................................................................283
G.1. C++11 Language Features............................................................................ 283
G.2. C++14 Language Features............................................................................ 286
G.3. C++17 Language Features............................................................................ 286
G.4. Restrictions............................................................................................. 286
G.4.1. Host Compiler Extensions....................................................................... 286
G.4.2. Preprocessor Symbols............................................................................287
G.4.2.1. __CUDA_ARCH__............................................................................ 287
G.4.3. Qualifiers.......................................................................................... 288
G.4.3.1. Device Memory Space Specifiers......................................................... 288
G.4.3.2. __managed__ Memory Space Specifier..................................................289
G.4.3.3. Volatile Qualifier............................................................................291
G.4.4. Pointers............................................................................................ 292
G.4.5. Operators.......................................................................................... 292
G.4.5.1. Assignment Operator....................................................................... 292
G.4.5.2. Address Operator........................................................................... 292
G.4.6. Run Time Type Information (RTTI)............................................................ 292
G.4.7. Exception Handling.............................................................................. 292
G.4.8. Standard Library..................................................................................292
G.4.9. Functions.......................................................................................... 292
G.4.9.1. External Linkage............................................................................ 293
G.4.9.2. Implicitly-declared and explicitly-defaulted functions............................... 293
G.4.9.3. Function Parameters....................................................................... 294
G.4.9.4. Static Variables within Function..........................................................294
G.4.9.5. Function Pointers........................................................................... 295
G.4.9.6. Function Recursion......................................................................... 295
G.4.9.7. Friend Functions............................................................................ 295
G.4.9.8. Operator Function.......................................................................... 296
G.4.10. Classes............................................................................................ 296
G.4.10.1. Data Members..............................................................................296
G.4.10.2. Function Members......................................................................... 296
G.4.10.3. Virtual Functions.......................................................................... 296
G.4.10.4. Virtual Base Classes....................................................................... 297
G.4.10.5. Anonymous Unions........................................................................ 297
G.4.10.6. Windows-Specific.......................................................................... 297
G.4.11. Templates........................................................................................ 298
G.4.12. Trigraphs and Digraphs.........................................................................298
G.4.13. Const-qualified variables...................................................................... 299
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | xii
G.4.14. Long Double..................................................................................... 299
G.4.15. Deprecation Annotation....................................................................... 299
G.4.16. C++11 Features..................................................................................300
G.4.16.1. Lambda Expressions....................................................................... 300
G.4.16.2. std::initializer_list.........................................................................301
G.4.16.3. Rvalue references......................................................................... 302
G.4.16.4. Constexpr functions and function templates......................................... 302
G.4.16.5. Constexpr variables....................................................................... 302
G.4.16.6. Inline namespaces......................................................................... 303
G.4.16.7. thread_local................................................................................ 304
G.4.16.8. __global__ functions and function templates........................................ 304
G.4.16.9. __device__/__constant__/__shared__ variables..................................... 306
G.4.16.10. Defaulted functions......................................................................306
G.4.17. C++14 Features..................................................................................307
G.4.17.1. Functions with deduced return type................................................... 307
G.4.17.2. Variable templates........................................................................ 308
G.4.18. C++17 Features..................................................................................308
G.4.18.1. Inline Variable..............................................................................308
G.4.18.2. Structured Binding........................................................................ 309
G.5. Polymorphic Function Wrappers.....................................................................309
G.6. Extended Lambdas.................................................................................... 312
G.6.1. Extended Lambda Type Traits..................................................................313
G.6.2. Extended Lambda Restrictions................................................................. 314
G.6.3. Notes on __host__ __device__ lambdas...................................................... 322
G.6.4. *this Capture By Value.......................................................................... 323
G.6.5. Additional Notes..................................................................................325
G.7. Code Samples.......................................................................................... 327
G.7.1. Data Aggregation Class.......................................................................... 327
G.7.2. Derived Class......................................................................................327
G.7.3. Class Template....................................................................................328
G.7.4. Function Template............................................................................... 328
G.7.5. Functor Class......................................................................................329
Appendix H. Texture Fetching............................................................................. 330
H.1. Nearest-Point Sampling............................................................................... 330
H.2. Linear Filtering.........................................................................................331
H.3. Table Lookup........................................................................................... 332
Appendix I. Compute Capabilities......................................................................... 334
I.1. Features and Technical Specifications.............................................................. 334
I.2. Floating-Point Standard................................................................................338
I.3. Compute Capability 3.x............................................................................... 339
I.3.1. Architecture........................................................................................ 339
I.3.2. Global Memory.....................................................................................340
I.3.3. Shared Memory.................................................................................... 342
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | xiii
I.4. Compute Capability 5.x............................................................................... 343
I.4.1. Architecture........................................................................................ 343
I.4.2. Global Memory.....................................................................................344
I.4.3. Shared Memory.................................................................................... 344
I.5. Compute Capability 6.x............................................................................... 347
I.5.1. Architecture........................................................................................ 347
I.5.2. Global Memory.....................................................................................347
I.5.3. Shared Memory.................................................................................... 347
I.6. Compute Capability 7.x............................................................................... 348
I.6.1. Architecture........................................................................................ 348
I.6.2. Independent Thread Scheduling................................................................ 348
I.6.3. Global Memory.....................................................................................350
I.6.4. Shared Memory.................................................................................... 351
I.7. Compute Capability 8.0............................................................................... 352
I.7.1. Architecture........................................................................................ 352
I.7.2. Global Memory.....................................................................................353
I.7.3. Shared Memory.................................................................................... 353
Appendix J. Driver API.......................................................................................354
J.1. Context.................................................................................................. 357
J.2. Module................................................................................................... 358
J.3. Kernel Execution....................................................................................... 359
J.4. Interoperability between Runtime and Driver APIs...............................................361
Appendix K. CUDA Environment Variables...............................................................362
Appendix L. Unified Memory Programming..............................................................365
L.1. Unified Memory Introduction........................................................................ 365
L.1.1. System Requirements............................................................................ 366
L.1.2. Simplifying GPU Programming.................................................................. 366
L.1.3. Data Migration and Coherency................................................................. 368
L.1.4. GPU Memory Oversubscription................................................................. 368
L.1.5. Multi-GPU.......................................................................................... 369
L.1.6. System Allocator.................................................................................. 369
L.1.7. Hardware Coherency............................................................................. 370
L.1.8. Access Counters...................................................................................371
L.2. Programming Model....................................................................................371
L.2.1. Managed Memory Opt In........................................................................ 371
L.2.1.1. Explicit Allocation Using cudaMallocManaged()........................................ 372
L.2.1.2. Global-Scope Managed Variables Using __managed__................................. 373
L.2.2. Coherency and Concurrency.................................................................... 373
L.2.2.1. GPU Exclusive Access To Managed Memory............................................. 373
L.2.2.2. Explicit Synchronization and Logical GPU Activity.....................................374
L.2.2.3. Managing Data Visibility and Concurrent CPU + GPU Access with Streams......... 375
L.2.2.4. Stream Association Examples..............................................................376
L.2.2.5. Stream Attach With Multithreaded Host Programs.....................................377
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | xiv
L.2.2.6. Advanced Topic: Modular Programs and Data Access Constraints....................378
L.2.2.7. Memcpy()/Memset() Behavior With Managed Memory.................................379
L.2.3. Language Integration.............................................................................379
L.2.3.1. Host Program Errors with __managed__ Variables..................................... 380
L.2.4. Querying Unified Memory Support............................................................. 381
L.2.4.1. Device Properties............................................................................381
L.2.4.2. Pointer Attributes........................................................................... 381
L.2.5. Advanced Topics.................................................................................. 381
L.2.5.1. Managed Memory with Multi-GPU Programs on pre-6.x Architectures.............. 381
L.2.5.2. Using fork() with Managed Memory...................................................... 382
L.3. Performance Tuning....................................................................................382
L.3.1. Data Prefetching.................................................................................. 383
L.3.2. Data Usage Hints................................................................................. 384
L.3.3. Querying Usage Attributes...................................................................... 385
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | xv
LIST OF FIGURES
Figure 11 The Driver API Is Backward but Not Forward Compatible ..................................109
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | xvi
LIST OF TABLES
Table 7 Single-Precision Mathematical Standard Library Functions with Maximum ULP Error .... 272
Table 8 Double-Precision Mathematical Standard Library Functions with Maximum ULP Error... 275
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | xvii
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | xviii
Chapter 1.
INTRODUCTION
1
The graphics qualifier comes from the fact that when the GPU was originally created, two decades ago, it was designed
as a specialized processor to accelerate graphics rendering. Driven by the insatiable market demand for real-time,
high-definition, 3D graphics, it has evolved into a general processor used for many more workloads than just graphics
rendering.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 1
Introduction
L3 Cache
L2 Cache
DRAM DRAM
CPU GPU
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 2
Introduction
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 3
Introduction
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 4
Introduction
SM 0 SM 1 SM 0 SM 1 SM 2 SM 3
Block 4 Block 5
Block 6 Block 7
1.4. Document Structure
This document is organized into the following chapters:
‣ Chapter Introduction is a general introduction to CUDA.
‣ Chapter Programming Model outlines the CUDA programming model.
‣ Chapter Programming Interface describes the programming interface.
‣ Chapter Hardware Implementation describes the hardware implementation.
‣ Chapter Performance Guidelines gives some guidance on how to achieve maximum
performance.
‣ Appendix CUDA-Enabled GPUs lists all CUDA-enabled devices.
‣ Appendix C++ Language Extensions is a detailed description of all extensions to the
C++ language.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 5
Introduction
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 6
Chapter 2.
PROGRAMMING MODEL
This chapter introduces the main concepts behind the CUDA programming model by
outlining how they are exposed in C++. An extensive description of CUDA C++ is given
in Programming Interface.
Full code for the vector addition example used in this chapter and the next can be found
in the vectorAdd CUDA sample.
2.1. Kernels
CUDA C++ extends C++ by allowing the programmer to define C++ functions, called
kernels, that, when called, are executed N times in parallel by N different CUDA threads,
as opposed to only once like regular C++ functions.
A kernel is defined using the __global__ declaration specifier and the number of
CUDA threads that execute that kernel for a given kernel call is specified using a new
<<<...>>> execution configuration syntax (see C++ Language Extensions). Each thread
that executes the kernel is given a unique thread ID that is accessible within the kernel
through built-in variables.
As an illustration, the following sample code, using the built-in variable threadIdx,
adds two vectors A and B of size N and stores the result into vector C:
// Kernel definition
__global__ void VecAdd(float* A, float* B, float* C)
{
int i = threadIdx.x;
C[i] = A[i] + B[i];
}
int main()
{
...
// Kernel invocation with N threads
VecAdd<<<1, N>>>(A, B, C);
...
}
Here, each of the N threads that execute VecAdd() performs one pair-wise addition.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 7
Programming Model
2.2. Thread Hierarchy
For convenience, threadIdx is a 3-component vector, so that threads can be identified
using a one-dimensional, two-dimensional, or three-dimensional thread index, forming
a one-dimensional, two-dimensional, or three-dimensional block of threads, called a
thread block. This provides a natural way to invoke computation across the elements in a
domain such as a vector, matrix, or volume.
The index of a thread and its thread ID relate to each other in a straightforward way:
For a one-dimensional block, they are the same; for a two-dimensional block of size (Dx,
Dy),the thread ID of a thread of index (x, y) is (x + y Dx); for a three-dimensional block of
size (Dx, Dy, Dz), the thread ID of a thread of index (x, y, z) is (x + y Dx + z Dx Dy).
As an example, the following code adds two matrices A and B of size NxN and stores the
result into matrix C:
// Kernel definition
__global__ void MatAdd(float A[N][N], float B[N][N],
float C[N][N])
{
int i = threadIdx.x;
int j = threadIdx.y;
C[i][j] = A[i][j] + B[i][j];
}
int main()
{
...
// Kernel invocation with one block of N * N * 1 threads
int numBlocks = 1;
dim3 threadsPerBlock(N, N);
MatAdd<<<numBlocks, threadsPerBlock>>>(A, B, C);
...
}
There is a limit to the number of threads per block, since all threads of a block are
expected to reside on the same processor core and must share the limited memory
resources of that core. On current GPUs, a thread block may contain up to 1024 threads.
However, a kernel can be executed by multiple equally-shaped thread blocks, so that the
total number of threads is equal to the number of threads per block times the number of
blocks.
Blocks are organized into a one-dimensional, two-dimensional, or three-dimensional
grid of thread blocks as illustrated by Figure 4. The number of thread blocks in a grid
is usually dictated by the size of the data being processed, which typically exceeds the
number of processors in the system.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 8
Programming Model
Gr id
Block (1, 1)
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 9
Programming Model
Extending the previous MatAdd() example to handle multiple blocks, the code becomes
as follows.
// Kernel definition
__global__ void MatAdd(float A[N][N], float B[N][N],
float C[N][N])
{
int i = blockIdx.x * blockDim.x + threadIdx.x;
int j = blockIdx.y * blockDim.y + threadIdx.y;
if (i < N && j < N)
C[i][j] = A[i][j] + B[i][j];
}
int main()
{
...
// Kernel invocation
dim3 threadsPerBlock(16, 16);
dim3 numBlocks(N / threadsPerBlock.x, N / threadsPerBlock.y);
MatAdd<<<numBlocks, threadsPerBlock>>>(A, B, C);
...
}
A thread block size of 16x16 (256 threads), although arbitrary in this case, is a common
choice. The grid is created with enough blocks to have one thread per matrix element
as before. For simplicity, this example assumes that the number of threads per grid in
each dimension is evenly divisible by the number of threads per block in that dimension,
although that need not be the case.
Thread blocks are required to execute independently: It must be possible to execute
them in any order, in parallel or in series. This independence requirement allows thread
blocks to be scheduled in any order across any number of cores as illustrated by Figure
3, enabling programmers to write code that scales with the number of cores.
Threads within a block can cooperate by sharing data through some shared memory and
by synchronizing their execution to coordinate memory accesses. More precisely, one
can specify synchronization points in the kernel by calling the __syncthreads()
intrinsic function; __syncthreads() acts as a barrier at which all threads in the
block must wait before any is allowed to proceed. Shared Memory gives an example of
using shared memory. In addition to __syncthreads(), the Cooperative Groups API
provides a rich set of thread-synchronization primitives.
For efficient cooperation, the shared memory is expected to be a low-latency memory
near each processor core (much like an L1 cache) and __syncthreads() is expected to
be lightweight.
2.3. Memory Hierarchy
CUDA threads may access data from multiple memory spaces during their execution
as illustrated by Figure 5. Each thread has private local memory. Each thread block has
shared memory visible to all threads of the block and with the same lifetime as the block.
All threads have access to the same global memory.
There are also two additional read-only memory spaces accessible by all threads: the
constant and texture memory spaces. The global, constant, and texture memory spaces
are optimized for different memory usages (see Device Memory Accesses). Texture
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 10
Programming Model
memory also offers different addressing modes, as well as data filtering, for some
specific data formats (see Texture and Surface Memory).
The global, constant, and texture memory spaces are persistent across kernel launches
by the same application.
Thr ead
Per -t hread local
m emor y
Thread Block
Per -block shared
m emor y
Gr id 0
Gr id 1
Global m em or y
Block ( 0, 0) Block ( 1, 0)
Block ( 0, 1) Block ( 1, 1)
Block ( 0, 2) Block ( 1, 2)
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 11
Programming Model
2.4. Heterogeneous Programming
As illustrated by Figure 6, the CUDA programming model assumes that the CUDA
threads execute on a physically separate device that operates as a coprocessor to the host
running the C++ program. This is the case, for example, when the kernels execute on a
GPU and the rest of the C++ program executes on a CPU.
The CUDA programming model also assumes that both the host and the device
maintain their own separate memory spaces in DRAM, referred to as host memory and
device memory, respectively. Therefore, a program manages the global, constant, and
texture memory spaces visible to kernels through calls to the CUDA runtime (described
in Programming Interface). This includes device memory allocation and deallocation as
well as data transfer between host and device memory.
Unified Memory provides managed memory to bridge the host and device memory
spaces. Managed memory is accessible from all CPUs and GPUs in the system as a
single, coherent memory image with a common address space. This capability enables
oversubscription of device memory and can greatly simplify the task of porting
applications by eliminating the need to explicitly mirror data on host and device. See
Unified Memory Programming for an introduction to Unified Memory.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 12
Programming Model
C Pr og r a m
Se q u e n t ia l
Exe cu t ion
Se r ia l cod e Host
Pa r a lle l k e r n e l Device
Ke r n e l0 < < < > > > ( ) Gr id 0
Se r ia l cod e Host
Device
Pa r a lle l k e r n e l
Gr id 1
Ke r n e l1 < < < > > > ( )
Block ( 0, 0) Block ( 1, 0)
Block ( 0, 1) Block ( 1, 1)
Block ( 0, 2) Block ( 1, 2)
Serial code executes on the host while parallel code executes on the device.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 13
Programming Model
2.5. Compute Capability
The compute capability of a device is represented by a version number, also sometimes
called its "SM version". This version number identifies the features supported by the
GPU hardware and is used by applications at runtime to determine which hardware
features and/or instructions are available on the present GPU.
The compute capability comprises a major revision number X and a minor revision
number Y and is denoted by X.Y.
Devices with the same major revision number are of the same core architecture. The
major revision number is 8 for devices based on the NVIDIA Ampere GPU architecture, 7
for devices based on the Volta architecture, 6 for devices based on the Pascal architecture,
5 for devices based on the Maxwell architecture, 3 for devices based on the Kepler
architecture, 2 for devices based on the Fermi architecture, and 1 for devices based on the
Tesla architecture.
The minor revision number corresponds to an incremental improvement to the core
architecture, possibly including new features.
Turing is the architecture for devices of compute capability 7.5, and is an incremental
update based on the Volta architecture.
CUDA-Enabled GPUs lists of all CUDA-enabled devices along with their compute
capability. Compute Capabilities gives the technical specifications of each compute
capability.
The compute capability version of a particular GPU should not be confused with the
CUDA version (e.g., CUDA 7.5, CUDA 8, CUDA 9), which is the version of the CUDA
software platform. The CUDA platform is used by application developers to create
applications that run on many generations of GPU architectures, including future
GPU architectures yet to be invented. While new versions of the CUDA platform often
add native support for a new GPU architecture by supporting the compute capability
version of that architecture, new versions of the CUDA platform typically also include
software features that are independent of hardware generation.
The Tesla and Fermi architectures are no longer supported starting with CUDA 7.0 and
CUDA 9.0, respectively.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 14
Chapter 3.
PROGRAMMING INTERFACE
CUDA C++ provides a simple path for users familiar with the C++ programming
language to easily write programs for execution by the device.
It consists of a minimal set of extensions to the C++ language and a runtime library.
The core language extensions have been introduced in Programming Model. They allow
programmers to define a kernel as a C++ function and use some new syntax to specify
the grid and block dimension each time the function is called. A complete description of
all extensions can be found in C++ Language Extensions. Any source file that contains
some of these extensions must be compiled with nvcc as outlined in Compilation with
NVCC.
The runtime is introduced in CUDA Runtime. It provides C and C++ functions that
execute on the host to allocate and deallocate device memory, transfer data between host
memory and device memory, manage systems with multiple devices, etc. A complete
description of the runtime can be found in the CUDA reference manual.
The runtime is built on top of a lower-level C API, the CUDA driver API, which is
also accessible by the application. The driver API provides an additional level of
control by exposing lower-level concepts such as CUDA contexts - the analogue of host
processes for the device - and CUDA modules - the analogue of dynamically loaded
libraries for the device. Most applications do not use the driver API as they do not
need this additional level of control and when using the runtime, context and module
management are implicit, resulting in more concise code. As the runtime is interoperable
with the driver API, most applications that need some driver API features can default
to use the runtime API and only use the driver API where needed. The driver API is
introduced in Driver API and fully described in the reference manual.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 15
Programming Interface
nvcc is a compiler driver that simplifies the process of compiling C++ or PTX code: It
provides simple and familiar command line options and executes them by invoking the
collection of tools that implement the different compilation stages. This section gives
an overview of nvcc workflow and command options. A complete description can be
found in the nvcc user manual.
3.1.1. Compilation Workflow
3.1.1.1. Offline Compilation
Source files compiled with nvcc can include a mix of host code (i.e., code that executes
on the host) and device code (i.e., code that executes on the device). nvcc's basic
workflow consists in separating device code from host code and then:
‣ compiling the device code into an assembly form (PTX code) and/or binary form
(cubin object),
‣ and modifying the host code by replacing the <<<...>>> syntax introduced in
Kernels (and described in more details in Execution Configuration) by the necessary
CUDA runtime function calls to load and launch each compiled kernel from the PTX
code and/or cubin object.
The modified host code is output either as C++ code that is left to be compiled using
another tool or as object code directly by letting nvcc invoke the host compiler during
the last compilation stage.
Applications can then:
‣ Either link to the compiled host code (this is the most common case),
‣ Or ignore the modified host code (if any) and use the CUDA driver API (see Driver
API) to load and execute the PTX code or cubin object.
3.1.1.2. Just-in-Time Compilation
Any PTX code loaded by an application at runtime is compiled further to binary code
by the device driver. This is called just-in-time compilation. Just-in-time compilation
increases application load time, but allows the application to benefit from any new
compiler improvements coming with each new device driver. It is also the only way
for applications to run on devices that did not exist at the time the application was
compiled, as detailed in Application Compatibility.
When the device driver just-in-time compiles some PTX code for some application, it
automatically caches a copy of the generated binary code in order to avoid repeating
the compilation in subsequent invocations of the application. The cache - referred to as
compute cache - is automatically invalidated when the device driver is upgraded, so that
applications can benefit from the improvements in the new just-in-time compiler built
into the device driver.
Environment variables are available to control just-in-time compilation as described in
CUDA Environment Variables
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 16
Programming Interface
As an alternative to using nvcc to compile CUDA C++ device code, NVRTC can be used
to compile CUDA C++ device code to PTX at runtime. NVRTC is a runtime compilation
library for CUDA C++; more information can be found in the NVRTC User guide.
3.1.2. Binary Compatibility
Binary code is architecture-specific. A cubin object is generated using the compiler
option -code that specifies the targeted architecture: For example, compiling with
-code=sm_35 produces binary code for devices of compute capability 3.5. Binary
compatibility is guaranteed from one minor revision to the next one, but not from one
minor revision to the previous one or across major revisions. In other words, a cubin
object generated for compute capability X.y will only execute on devices of compute
capability X.z where z≥y.
Binary compatibility is supported only for the desktop. It is not supported for Tegra.
Also, the binary compatibility between desktop and Tegra is not supported.
3.1.3. PTX Compatibility
Some PTX instructions are only supported on devices of higher compute capabilities.
For example, Warp Shuffle Functions are only supported on devices of compute
capability 3.0 and above. The -arch compiler option specifies the compute capability
that is assumed when compiling C++ to PTX code. So, code that contains warp shuffle,
for example, must be compiled with -arch=compute_30 (or higher).
PTX code produced for some specific compute capability can always be compiled to
binary code of greater or equal compute capability. Note that a binary compiled from an
earlier PTX version may not make use of some hardware features. For example, a binary
targeting devices of compute capability 7.0 (Volta) compiled from PTX generated for
compute capability 6.0 (Pascal) will not make use of Tensor Core instructions, since these
were not available on Pascal. As a result, the final binary may perform worse than would
be possible if the binary were generated using the latest version of PTX.
3.1.4. Application Compatibility
To execute code on devices of specific compute capability, an application must load
binary or PTX code that is compatible with this compute capability as described in
Binary Compatibility and PTX Compatibility. In particular, to be able to execute code
on future architectures with higher compute capability (for which no binary code can be
generated yet), an application must load PTX code that will be just-in-time compiled for
these devices (see Just-in-Time Compilation).
Which PTX and binary code gets embedded in a CUDA C++ application is controlled by
the -arch and -code compiler options or the -gencode compiler option as detailed in
the nvcc user manual. For example,
nvcc x.cu
-gencode arch=compute_50,code=sm_50
-gencode arch=compute_60,code=sm_60
-gencode arch=compute_70,code=\'compute_70,sm_70\'
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 17
Programming Interface
embeds binary code compatible with compute capability 5.0 and 6.0 (first and second
-gencode options) and PTX and binary code compatible with compute capability 7.0
(third -gencode option).
Host code is generated to automatically select at runtime the most appropriate code to
load and execute, which, in the above example, will be:
‣ 5.0 binary code for devices with compute capability 5.0 and 5.2,
‣ 6.0 binary code for devices with compute capability 6.0 and 6.1,
‣ 7.0 binary code for devices with compute capability 7.0 and 7.5,
‣ PTX code which is compiled to binary code at runtime for devices with compute
capability 8.0 and higher.
x.cu can have an optimized code path that uses warp shuffle operations, for example,
which are only supported in devices of compute capability 3.0 and higher. The
__CUDA_ARCH__ macro can be used to differentiate various code paths based on
compute capability. It is only defined for device code. When compiling with -
arch=compute_35 for example, __CUDA_ARCH__ is equal to 350.
Applications using the driver API must compile code to separate files and explicitly load
and execute the most appropriate file at runtime.
The Volta architecture introduces Independent Thread Scheduling which changes the
way threads are scheduled on the GPU. For code relying on specific behavior of SIMT
scheduling in previous architecures, Independent Thread Scheduling may alter the set of
participating threads, leading to incorrect results. To aid migration while implementing
the corrective actions detailed in Independent Thread Scheduling, Volta developers
can opt-in to Pascal's thread scheduling with the compiler option combination -
arch=compute_60 -code=sm_70.
The nvcc user manual lists various shorthands for the -arch, -code, and -gencode
compiler options. For example, -arch=sm_70 is a shorthand for -arch=compute_70
-code=compute_70,sm_70 (which is the same as -gencode arch=compute_70,
code=\'compute_70,sm_70\').
3.1.5. C++ Compatibility
The front end of the compiler processes CUDA source files according to C++ syntax
rules. Full C++ is supported for the host code. However, only a subset of C++ is fully
supported for the device code as described in C++ Language Support.
3.1.6. 64-Bit Compatibility
The 64-bit version of nvcc compiles device code in 64-bit mode (i.e., pointers are 64-bit).
Device code compiled in 64-bit mode is only supported with host code compiled in 64-
bit mode.
Similarly, the 32-bit version of nvcc compiles device code in 32-bit mode and device
code compiled in 32-bit mode is only supported with host code compiled in 32-bit mode.
The 32-bit version of nvcc can compile device code in 64-bit mode also using the -m64
compiler option.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 18
Programming Interface
The 64-bit version of nvcc can compile device code in 32-bit mode also using the -m32
compiler option.
3.2. CUDA Runtime
The runtime is implemented in the cudart library, which is linked to the application,
either statically via cudart.lib or libcudart.a, or dynamically via cudart.dll or
libcudart.so. Applications that require cudart.dll and/or cudart.so for dynamic
linking typically include them as part of the application installation package. It is only
safe to pass the address of CUDA runtime symbols between components that link to the
same instance of the CUDA runtime.
All its entry points are prefixed with cuda.
As mentioned in Heterogeneous Programming, the CUDA programming model
assumes a system composed of a host and a device, each with their own separate
memory. Device Memory gives an overview of the runtime functions used to manage
device memory.
Shared Memory illustrates the use of shared memory, introduced in Thread Hierarchy,
to maximize performance.
Page-Locked Host Memory introduces page-locked host memory that is required to
overlap kernel execution with data transfers between host and device memory.
Asynchronous Concurrent Execution describes the concepts and API used to enable
asynchronous concurrent execution at various levels in the system.
Multi-Device System shows how the programming model extends to a system with
multiple devices attached to the same host.
Error Checking describes how to properly check the errors generated by the runtime.
Call Stack mentions the runtime functions used to manage the CUDA C++ call stack.
Texture and Surface Memory presents the texture and surface memory spaces that
provide another way to access device memory; they also expose a subset of the GPU
texturing hardware.
Graphics Interoperability introduces the various functions the runtime provides to
interoperate with the two main graphics APIs, OpenGL and Direct3D.
3.2.1. Initialization
There is no explicit initialization function for the runtime; it initializes the first time a
runtime function is called (more specifically any function other than functions from the
error handling and version management sections of the reference manual). One needs to
keep this in mind when timing runtime function calls and when interpreting the error
code from the first call into the runtime.
The runtime creates a CUDA context for each device in the system (see Context for
more details on CUDA contexts). This context is the primary context for this device and is
initialized at the first runtime function which requires an active context on this device. It
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 19
Programming Interface
is shared among all the host threads of the application. As part of this context creation,
the device code is just-in-time compiled if necessary (see Just-in-Time Compilation) and
loaded into device memory. This all happens transparently. If needed, e.g. for driver API
interoperability, the primary context of a device can be accessed from the driver API as
described in Interoperability between Runtime and Driver APIs.
When a host thread calls cudaDeviceReset(), this destroys the primary context of the
device the host thread currently operates on (i.e., the current device as defined in Device
Selection). The next runtime function call made by any host thread that has this device
as current will create a new primary context for this device.
The CUDA interfaces use global state that is initialized during host program initiation
and destroyed during host program termination. The CUDA runtime and driver cannot
detect if this state is invalid, so using any of these interfaces (implicitly or explicity)
during program initiation or termination after main) will result in undefined behavior.
3.2.2. Device Memory
As mentioned in Heterogeneous Programming, the CUDA programming model
assumes a system composed of a host and a device, each with their own separate
memory. Kernels operate out of device memory, so the runtime provides functions to
allocate, deallocate, and copy device memory, as well as transfer data between host
memory and device memory.
Device memory can be allocated either as linear memory or as CUDA arrays.
CUDA arrays are opaque memory layouts optimized for texture fetching. They are
described in Texture and Surface Memory.
Linear memory is allocated in a single unified address space, which means that
separately allocated entities can reference one another via pointers, for example, in
a binary tree or linked list. The size of the address space depends on the host system
(CPU) and the compute capability of the used GPU:
x86_64 POWER
(AMD64) (ppc64le) ARM64
up to compute capability 5.3 (Maxwell) 40bit 40bit 40bit
compute capability 6.0 (Pascal) or newer up to 47bit up to 49bit up to 48bit
On devices of compute capability 5.3 (Maxwell) and earlier, the CUDA driver creates
an uncommitted 40bit virtual address reservation to ensure that memory allocations
(pointers) fall into the supported range. This reservation appears as reserved virtual
memory, but does not occupy any physical memory until the program actually
allocates memory.
Linear memory is typically allocated using cudaMalloc() and freed using cudaFree()
and data transfer between host memory and device memory are typically done using
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 20
Programming Interface
cudaMemcpy(). In the vector addition code sample of Kernels, the vectors need to be
copied from host memory to device memory:
// Device code
__global__ void VecAdd(float* A, float* B, float* C, int N)
{
int i = blockDim.x * blockIdx.x + threadIdx.x;
if (i < N)
C[i] = A[i] + B[i];
}
// Host code
int main()
{
int N = ...;
size_t size = N * sizeof(float);
// Invoke kernel
int threadsPerBlock = 256;
int blocksPerGrid =
(N + threadsPerBlock - 1) / threadsPerBlock;
VecAdd<<<blocksPerGrid, threadsPerBlock>>>(d_A, d_B, d_C, N);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 21
Programming Interface
following code sample allocates a width x height 2D array of floating-point values and
shows how to loop over the array elements in device code:
// Host code
int width = 64, height = 64;
float* devPtr;
size_t pitch;
cudaMallocPitch(&devPtr, &pitch,
width * sizeof(float), height);
MyKernel<<<100, 512>>>(devPtr, pitch, width, height);
// Device code
__global__ void MyKernel(float* devPtr,
size_t pitch, int width, int height)
{
for (int r = 0; r < height; ++r) {
float* row = (float*)((char*)devPtr + r * pitch);
for (int c = 0; c < width; ++c) {
float element = row[c];
}
}
}
The following code sample allocates a width x height x depth 3D array of floating-
point values and shows how to loop over the array elements in device code:
// Host code
int width = 64, height = 64, depth = 64;
cudaExtent extent = make_cudaExtent(width * sizeof(float),
height, depth);
cudaPitchedPtr devPitchedPtr;
cudaMalloc3D(&devPitchedPtr, extent);
MyKernel<<<100, 512>>>(devPitchedPtr, width, height, depth);
// Device code
__global__ void MyKernel(cudaPitchedPtr devPitchedPtr,
int width, int height, int depth)
{
char* devPtr = devPitchedPtr.ptr;
size_t pitch = devPitchedPtr.pitch;
size_t slicePitch = pitch * height;
for (int z = 0; z < depth; ++z) {
char* slice = devPtr + z * slicePitch;
for (int y = 0; y < height; ++y) {
float* row = (float*)(slice + y * pitch);
for (int x = 0; x < width; ++x) {
float element = row[x];
}
}
}
}
The reference manual lists all the various functions used to copy memory between
linear memory allocated with cudaMalloc(), linear memory allocated with
cudaMallocPitch() or cudaMalloc3D(), CUDA arrays, and memory allocated for
variables declared in global or constant memory space.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 22
Programming Interface
The following code sample illustrates various ways of accessing global variables via the
runtime API:
__constant__ float constData[256];
float data[256];
cudaMemcpyToSymbol(constData, data, sizeof(data));
cudaMemcpyFromSymbol(data, constData, sizeof(data));
cudaGetDeviceProperties(&prop, device_id);
size_t size = min(int(prop.l2CacheSize * 0.75), prop.persistingL2CacheMaxSize);
cudaDeviceSetLimit(cudaLimitPersistingL2CacheSize, size); /* set-aside 3/4 of L2
cache for persisting accesses or the max allowed*/
When the GPU is configured in Multi-Instance GPU (MIG) mode, the L2 cache set-aside
functionality is disabled.
When using the Multi-Process Service (MPS), the L2 cache set-aside size
cannot be changed by cudaDeviceSetLimit. Instead, the set-aside size can
only be specified at start up of MPS server through the environment variable
CUDA_DEVICE_DEFAULT_PERSISTING_L2_CACHE_PERCENTAGE_LIMIT.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 23
Programming Interface
cudaStreamAttrValue stream_attribute; //
Stream level attributes data structure
stream_attribute.accessPolicyWindow.base_ptr = reinterpret_cast<void*>(ptr); //
Global Memory data pointer
stream_attribute.accessPolicyWindow.num_bytes = num_bytes; //
Number of bytes for persistence access.
//
(Must be less than cudaDeviceProp::accessPolicyMaxWindowSize)
stream_attribute.accessPolicyWindow.hitRatio = 0.6; //
Hint for cache hit ratio
stream_attribute.accessPolicyWindow.hitProp = cudaAccessPropertyPersisting; //
Type of access property on cache hit
stream_attribute.accessPolicyWindow.missProp = cudaAccessPropertyStreaming; //
Type of access property on cache miss.
When a kernel subsequently executes in CUDA stream, memory accesses within the
global memory extent [ptr..ptr+num_bytes) are more likely to persist in the L2
cache than accesses to other global memory locations.
L2 persistence can also be set for a CUDA Graph Kernel Node as shown in the example
below:
CUDA GraphKernelNode Example
cudaKernelNodeAttrValue node_attribute; //
Kernel level attributes data structure
node_attribute.accessPolicyWindow.base_ptr = reinterpret_cast<void*>(ptr); //
Global Memory data pointer
node_attribute.accessPolicyWindow.num_bytes = num_bytes; //
Number of bytes for persistence access.
//
(Must be less than cudaDeviceProp::accessPolicyMaxWindowSize)
node_attribute.accessPolicyWindow.hitRatio = 0.6; //
Hint for cache hit ratio
node_attribute.accessPolicyWindow.hitProp = cudaAccessPropertyPersisting; //
Type of access property on cache hit
node_attribute.accessPolicyWindow.missProp = cudaAccessPropertyStreaming; //
Type of access property on cache miss.
The hitRatio parameter can be used to specify the fraction of accesses that receive the
hitProp property. In both of the examples above, 60% of the memory accesses in the
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 24
Programming Interface
global memory region [ptr..ptr+num_bytes) have the persisting property and 40%
of the memory accesses have the streaming property. Which specific memory accesses
are classified as persisting (the hitProp) is random with a probability of approximately
hitRatio; the probability distribution depends upon the hardware architecture and the
memory extent.
For example, if the L2 set-aside cache size is 16KB and the num_bytes in the
accessPolicyWindow is 32KB:
‣ With a hitRatio of 0.5, the hardware will select, at random, 16KB of the 32KB
window to be designated as persisting and cached in the set-aside L2 cache area.
‣ With a hitRatio of 1.0, the hardware will attempt to cache the whole 32KB window
in the set-aside L2 cache area. Since the set-aside area is smaller than the window,
cache lines will be evicted to keep the most recently used 16KB of the 32KB data in
the set-aside portion of the L2 cache.
The hitRatio can therefore be used to avoid thrashing of cache lines and overall reduce
the amount of data moved into and out of the L2 cache.
A hitRatio value below 1.0 can be used to manually control the amount of data
different accessPolicyWindows from concurrent CUDA streams can cache in L2.
For example, let the L2 set-aside cache size be 16KB; two concurrent kernels in two
different CUDA streams, each with a 16KB accessPolicyWindow, and both with
hitRatio value 1.0, might evict each others' cache lines when competing for the shared
L2 resource. However, if both accessPolicyWindows have a hitRatio value of 0.5, they
will be less likely to evict their own or each others' persisting cache lines.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 25
Programming Interface
cudaStream_t stream;
cudaStreamCreate(&stream);
// Create CUDA stream
cudaDeviceProp prop;
// CUDA device properties variable
cudaGetDeviceProperties( &prop, device_id);
// Query GPU properties
size_t size = min( int(prop.l2CacheSize * 0.75) ,
prop.persistingL2CacheMaxSize );
cudaDeviceSetLimit( cudaLimitPersistingL2CacheSize, size);
// set-aside 3/4 of L2 cache for persisting accesses or the max
allowed
cudaStreamAttrValue stream_attribute;
// Stream level attributes data structure
stream_attribute.accessPolicyWindow.base_ptr = reinterpret_cast<void*>(data1);
// Global Memory data pointer
stream_attribute.accessPolicyWindow.num_bytes = window_size;
// Number of bytes for persistence access
stream_attribute.accessPolicyWindow.hitRatio = 0.6;
// Hint for cache hit ratio
stream_attribute.accessPolicyWindow.hitProp = cudaAccessPropertyPersisting;
// Persistence Property
stream_attribute.accessPolicyWindow.missProp = cudaAccessPropertyStreaming;
// Type of access property on cache miss
cudaStreamSetAttribute(stream, cudaStreamAttributeAccessPolicyWindow,
&stream_attribute); // Set the attributes to a CUDA Stream
stream_attribute.accessPolicyWindow.num_bytes = 0;
// Setting the window size to 0 disable it
cudaStreamSetAttribute(stream, cudaStreamAttributeAccessPolicyWindow,
&stream_attribute); // Overwrite the access policy attribute to a CUDA Stream
cudaCtxResetPersistingL2Cache();
// Remove any persistent lines in L2
cuda_kernelC<<<grid_size,block_size,0,stream>>>(data2);
// data2 can now benefit from full L2 in normal mode
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 26
Programming Interface
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 27
Programming Interface
enum cudaLimit {
/* other fields not shown */
cudaLimitPersistingL2CacheSize
};
3.2.4. Shared Memory
As detailed in Variable Memory Space Specifiers shared memory is allocated using the
__shared__ memory space specifier.
Shared memory is expected to be much faster than global memory as mentioned in
Thread Hierarchy and detailed in Shared Memory. It can be used as scratchpad memory
(or software managed cache) to minimize global memory accesses from a CUDA block
as illustrated by the following matrix multiplication example.
The following code sample is a straightforward implementation of matrix multiplication
that does not take advantage of shared memory. Each thread reads one row of A and one
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 28
Programming Interface
// Invoke kernel
dim3 dimBlock(BLOCK_SIZE, BLOCK_SIZE);
dim3 dimGrid(B.width / dimBlock.x, A.height / dimBlock.y);
MatMulKernel<<<dimGrid, dimBlock>>>(d_A, d_B, d_C);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 29
Programming Interface
B.height
0
A C
A.height
r ow
A.height -1
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 30
Programming Interface
By blocking the computation this way, we take advantage of fast shared memory and
save a lot of global memory bandwidth since A is only read (B.width / block_size) times
from global memory and B is read (A.height / block_size) times.
The Matrix type from the previous code sample is augmented with a stride field, so that
sub-matrices can be efficiently represented with the same type. __device__ functions are
used to get and set elements and build any sub-matrix from a matrix.
// Matrices are stored in row-major order:
// M(row, col) = *(M.elements + row * M.stride + col)
typedef struct {
int width;
int height;
int stride;
float* elements;
} Matrix;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 31
Programming Interface
cudaMalloc(&d_B.elements, size);
cudaMemcpy(d_B.elements, B.elements, size,
cudaMemcpyHostToDevice);
// Invoke kernel
dim3 dimBlock(BLOCK_SIZE, BLOCK_SIZE);
dim3 dimGrid(B.width / dimBlock.x, A.height / dimBlock.y);
MatMulKernel<<<dimGrid, dimBlock>>>(d_A, d_B, d_C);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 32
Programming Interface
BLOCK _SI ZE
B
B.height
BLOCK _SI ZE
BLOCK_SI ZE-1
A C
0 col
0
BLOCK _SI ZE
Csub
block Row
A.height
r ow
BLOCK_SI ZE-1
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 33
Programming Interface
Page-locked host memory is not cached on non I/O coherent Tegra devices. Also,
cudaHostRegister() is not supported on non I/O coherent Tegra devices.
The simple zero-copy CUDA sample comes with a detailed document on the page-
locked memory APIs.
3.2.5.1. Portable Memory
A block of page-locked memory can be used in conjunction with any device in the
system (see Multi-Device System for more details on multi-device systems), but by
default, the benefits of using page-locked memory described above are only available in
conjunction with the device that was current when the block was allocated (and with all
devices sharing the same unified address space, if any, as described in Unified Virtual
Address Space). To make these advantages available to all devices, the block needs to be
allocated by passing the flag cudaHostAllocPortable to cudaHostAlloc() or page-
locked by passing the flag cudaHostRegisterPortable to cudaHostRegister().
3.2.5.2. Write-Combining Memory
By default page-locked host memory is allocated as cacheable. It can optionally be
allocated as write-combining instead by passing flag cudaHostAllocWriteCombined
to cudaHostAlloc(). Write-combining memory frees up the host's L1 and L2 cache
resources, making more cache available to the rest of the application. In addition, write-
combining memory is not snooped during transfers across the PCI Express bus, which
can improve transfer performance by up to 40%.
Reading from write-combining memory from the host is prohibitively slow, so write-
combining memory should in general be used for memory that the host only writes to.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 34
Programming Interface
3.2.5.3. Mapped Memory
A block of page-locked host memory can also be mapped into the address space
of the device by passing flag cudaHostAllocMapped to cudaHostAlloc() or by
passing flag cudaHostRegisterMapped to cudaHostRegister(). Such a block
has therefore in general two addresses: one in host memory that is returned by
cudaHostAlloc() or malloc(), and one in device memory that can be retrieved
using cudaHostGetDevicePointer() and then used to access the block from within a
kernel. The only exception is for pointers allocated with cudaHostAlloc() and when a
unified address space is used for the host and the device as mentioned in Unified Virtual
Address Space.
Accessing host memory directly from within a kernel does not provide the same
bandwidth as device memory, but does have some advantages:
‣ There is no need to allocate a block in device memory and copy data between this
block and the block in host memory; data transfers are implicitly performed as
needed by the kernel;
‣ There is no need to use streams (see Concurrent Data Transfers) to overlap data
transfers with kernel execution; the kernel-originated data transfers automatically
overlap with kernel execution.
Since mapped page-locked memory is shared between host and device however,
the application must synchronize memory accesses using streams or events (see
Asynchronous Concurrent Execution) to avoid any potential read-after-write, write-
after-read, or write-after-write hazards.
To be able to retrieve the device pointer to any mapped page-locked memory, page-
locked memory mapping must be enabled by calling cudaSetDeviceFlags() with
the cudaDeviceMapHost flag before any other CUDA call is performed. Otherwise,
cudaHostGetDevicePointer() will return an error.
cudaHostGetDevicePointer() also returns an error if the device does not support
mapped page-locked host memory. Applications may query this capability by checking
the canMapHostMemory device property (see Device Enumeration), which is equal to 1
for devices that support mapped page-locked host memory.
Note that atomic functions (see Atomic Functions) operating on mapped page-locked
memory are not atomic from the point of view of the host or other devices.
Also note that CUDA runtime requires that 1-byte, 2-byte, 4-byte, and 8-byte naturally
aligned loads and stores to host memory initiated from the device are preserved as
single accesses from the point of view of the host and other devices. On some platforms,
atomics to memory may be broken by the hardware into separate load and store
operations. These component load and store operations have the same requirements on
preservation of naturally aligned accesses. As an example, the CUDA runtime does not
support a PCI Express bus topology where a PCI Express bridge splits 8-byte naturally
aligned writes into two 4-byte writes between the device and the host.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 35
Programming Interface
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 36
Programming Interface
Kernels that use many textures or a large amount of local memory are less likely to
execute concurrently with other kernels.
3.2.6.5. Streams
Applications manage the concurrent operations described above through streams. A
stream is a sequence of commands (possibly issued by different host threads) that
execute in order. Different streams, on the other hand, may execute their commands out
of order with respect to one another or concurrently; this behavior is not guaranteed and
should therefore not be relied upon for correctness (e.g., inter-kernel communication is
undefined). The commands issued on a stream may execute when all the dependencies
of the command are met. The dependencies could be previously launched commands
on same stream or dependencies from other streams. The successful completion of
synchronize call guarantees that all the commands launched are completed.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 37
Programming Interface
Each of these streams is defined by the following code sample as a sequence of one
memory copy from host to device, one kernel launch, and one memory copy from device
to host:
for (int i = 0; i < 2; ++i) {
cudaMemcpyAsync(inputDevPtr + i * size, hostPtr + i * size,
size, cudaMemcpyHostToDevice, stream[i]);
MyKernel <<<100, 512, 0, stream[i]>>>
(outputDevPtr + i * size, inputDevPtr + i * size, size);
cudaMemcpyAsync(hostPtr + i * size, outputDevPtr + i * size,
size, cudaMemcpyDeviceToHost, stream[i]);
}
Each stream copies its portion of input array hostPtr to array inputDevPtr in device
memory, processes inputDevPtr on the device by calling MyKernel(), and copies
the result outputDevPtr back to the same portion of hostPtr. Overlapping Behavior
describes how the streams overlap in this example depending on the capability of the
device. Note that hostPtr must point to page-locked host memory for any overlap to
occur.
Streams are released by calling cudaStreamDestroy().
for (int i = 0; i < 2; ++i)
cudaStreamDestroy(stream[i]);
In case the device is still doing work in the stream when cudaStreamDestroy() is
called, the function will return immediately and the resources associated with the stream
will be released automatically once the device has completed all work in the stream.
3.2.6.5.2. Default Stream
Kernel launches and host <-> device memory copies that do not specify any stream
parameter, or equivalently that set the stream parameter to zero, are issued to the default
stream. They are therefore executed in order.
For code that is compiled using the --default-stream per-thread compilation flag
(or that defines the CUDA_API_PER_THREAD_DEFAULT_STREAM macro before including
CUDA headers (cuda.h and cuda_runtime.h)), the default stream is a regular stream
and each host thread has its own default stream.
For code that is compiled using the --default-stream legacy compilation flag, the
default stream is a special stream called the NULL stream and each device has a single
NULL stream used for all host threads. The NULL stream is special as it causes implicit
synchronization as described in Implicit Synchronization.
For code that is compiled without specifying a --default-stream compilation flag, --
default-stream legacy is assumed as the default.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 38
Programming Interface
3.2.6.5.3. Explicit Synchronization
There are various ways to explicitly synchronize streams with each other.
cudaDeviceSynchronize() waits until all preceding commands in all streams of all
host threads have completed.
cudaStreamSynchronize()takes a stream as a parameter and waits until all preceding
commands in the given stream have completed. It can be used to synchronize the host
with a specific stream, allowing other streams to continue executing on the device.
cudaStreamWaitEvent()takes a stream and an event as parameters (see Events for
a description of events)and makes all the commands added to the given stream after
the call to cudaStreamWaitEvent()delay their execution until the given event has
completed.
cudaStreamQuery()provides applications with a way to know if all preceding
commands in a stream have completed.
3.2.6.5.4. Implicit Synchronization
Two commands from different streams cannot run concurrently if any one of the
following operations is issued in-between them by the host thread:
‣ a page-locked host memory allocation,
‣ a device memory allocation,
‣ a device memory set,
‣ a memory copy between two addresses to the same device memory,
‣ any CUDA command to the NULL stream,
‣ a switch between the L1/shared memory configurations described in Compute
Capability 3.x and Compute Capability 7.x.
For devices that support concurrent kernel execution and are of compute capability 3.0
or lower, any operation that requires a dependency check to see if a streamed kernel
launch is complete:
‣ Can start executing only when all thread blocks of all prior kernel launches from any
stream in the CUDA context have started executing;
‣ Blocks all later kernel launches from any stream in the CUDA context until the
kernel launch being checked is complete.
Operations that require a dependency check include any other commands within the
same stream as the launch being checked and any call to cudaStreamQuery() on that
stream. Therefore, applications should follow these guidelines to improve their potential
for concurrent kernel execution:
‣ All independent operations should be issued before dependent operations,
‣ Synchronization of any kind should be delayed as long as possible.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 39
Programming Interface
3.2.6.5.5. Overlapping Behavior
The amount of execution overlap between two streams depends on the order in which
the commands are issued to each stream and whether or not the device supports
overlap of data transfer and kernel execution (see Overlap of Data Transfer and Kernel
Execution), concurrent kernel execution (see Concurrent Kernel Execution), and/or
concurrent data transfers (see Concurrent Data Transfers).
For example, on devices that do not support concurrent data transfers, the two streams
of the code sample of Creation and Destruction do not overlap at all because the
memory copy from host to device is issued to stream[1] after the memory copy from
device to host is issued to stream[0], so it can only start once the memory copy from
device to host issued to stream[0] has completed. If the code is rewritten the following
way (and assuming the device supports overlap of data transfer and kernel execution)
for (int i = 0; i < 2; ++i)
cudaMemcpyAsync(inputDevPtr + i * size, hostPtr + i * size,
size, cudaMemcpyHostToDevice, stream[i]);
for (int i = 0; i < 2; ++i)
MyKernel<<<100, 512, 0, stream[i]>>>
(outputDevPtr + i * size, inputDevPtr + i * size, size);
for (int i = 0; i < 2; ++i)
cudaMemcpyAsync(hostPtr + i * size, outputDevPtr + i * size,
size, cudaMemcpyDeviceToHost, stream[i]);
then the memory copy from host to device issued to stream[1] overlaps with the kernel
launch issued to stream[0].
On devices that do support concurrent data transfers, the two streams of the code
sample of Creation and Destruction do overlap: The memory copy from host to device
issued to stream[1] overlaps with the memory copy from device to host issued to
stream[0] and even with the kernel launch issued to stream[0] (assuming the device
supports overlap of data transfer and kernel execution). However, for devices of
compute capability 3.0 or lower, the kernel executions cannot possibly overlap because
the second kernel launch is issued to stream[1] after the memory copy from device
to host is issued to stream[0], so it is blocked until the first kernel launch issued to
stream[0] is complete as per Implicit Synchronization. If the code is rewritten as
above, the kernel executions overlap (assuming the device supports concurrent kernel
execution) since the second kernel launch is issued to stream[1] before the memory copy
from device to host is issued to stream[0]. In that case however, the memory copy from
device to host issued to stream[0] only overlaps with the last thread blocks of the kernel
launch issued to stream[1] as per Implicit Synchronization, which can represent only a
small portion of the total execution time of the kernel.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 40
Programming Interface
memory copy into each stream. The function will begin execution on the host after each
of the device-to-host memory copies completes.
The commands that are issued in a stream after a host function do not start executing
before the function has completed.
A host function enqueued into a stream must not make CUDA API calls (directly
or indirectly), as it might end up waiting on itself if it makes such a call leading to a
deadlock.
3.2.6.5.7. Stream Priorities
The relative priorities of streams can be specified at creation using
cudaStreamCreateWithPriority(). The range of allowable priorities,
ordered as [ highest priority, lowest priority ] can be obtained using the
cudaDeviceGetStreamPriorityRange() function. At runtime, pending work in
higher-priority streams takes preference over pending work in low-priority streams.
The following code sample obtains the allowable range of priorities for the current
device, and creates streams with the highest and lowest available priorities.
// get the range of stream priorities for this device
int priority_high, priority_low;
cudaDeviceGetStreamPriorityRange(&priority_low, &priority_high);
// create streams with highest and lowest available priorities
cudaStream_t st_high, st_low;
cudaStreamCreateWithPriority(&st_high, cudaStreamNonBlocking, priority_high);
cudaStreamCreateWithPriority(&st_low, cudaStreamNonBlocking, priority_low);
3.2.6.6. CUDA Graphs
CUDA Graphs present a new model for work submission in CUDA. A graph is a series
of operations, such as kernel launches, connected by dependencies, which is defined
separately from its execution. This allows a graph to be defined once and then launched
repeatedly. Separating out the definition of a graph from its execution enables a number
of optimizations: first, CPU launch costs are reduced compared to streams, because
much of the setup is done in advance; second, presenting the whole workflow to CUDA
enables optimizations which might not be possible with the piecewise work submission
mechanism of streams.
To see the optimizations possible with graphs, consider what happens in a stream: when
you place a kernel into a stream, the host driver performs a sequence of operations in
preparation for the execution of the kernel on the GPU. These operations, necessary for
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 41
Programming Interface
setting up and launching the kernel, are an overhead cost which must be paid for each
kernel that is issued. For a GPU kernel with a short execution time, this overhead cost
can be a significant fraction of the overall end-to-end execution time.
Work submission using graphs is separated into three distinct stages: definition,
instantiation, and execution.
‣ During the definition phase, a program creates a description of the operations in the
graph along with the dependencies between them.
‣ Instantiation takes a snapshot of the graph template, validates it, and performs
much of the setup and initialization of work with the aim of minimizing what needs
to be done at launch. The resulting instance is known as an executable graph.
‣ An executable graph may be launched into a stream, similar to any other CUDA
work. It may be launched any number of times without repeating the instantiation.
3.2.6.6.1. Graph Structure
An operation forms a node in a graph. The dependencies between the operations are the
edges. These dependencies constrain the execution sequence of the operations.
An operation may be scheduled at any time once the nodes on which it depends are
complete. Scheduling is left up to the CUDA system.
3.2.6.6.1.1. Node Types
A graph node can be one of:
‣ kernel
‣ CPU function call
‣ memory copy
‣ memset
‣ empty node
‣ child graph: To execute a separate nested graph. See Figure 9.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 42
Programming Interface
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 43
Programming Interface
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 44
Programming Interface
cudaStreamBeginCapture(stream);
cudaStreamEndCapture(stream, &graph);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 45
Programming Interface
When a stream is taken out of capture mode, the next non-captured item in the
stream (if any) will still have a dependency on the most recent prior non-captured
item, despite intermediate items having been removed.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 46
Programming Interface
It is invalid to merge two separate capture graphs by waiting on a captured event from
a stream which is being captured and is associated with a different capture graph than
the event. It is invalid to wait on a non-captured event from a stream which is being
captured.
A small number of APIs that enqueue asynchronous operations into streams are not
currently supported in graphs and will return an error if called with a stream which is
being captured, such as cudaStreamAttachMemAsync().
3.2.6.6.3.3. Invalidation
When an invalid operation is attempted during stream capture, any associated capture
graphs are invalidated. When a capture graph is invalidated, further use of any streams
which are being captured or captured events associated with the graph is invalid and
will return an error, until stream capture is ended with cudaStreamEndCapture().
This call will take the associated streams out of capture mode, but will also return an
error value and a NULL graph.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 47
Programming Interface
and comparisons for unchanged nodes, so it can be more efficient in many cases. The
following sections explain each approach in more detail.
3.2.6.6.4.1. Graph Update Limitations
Kernel nodes:
‣ The function must not change, however kernel arguments and launch parameters
may be updated.
cudaMemset and cudaMemcpy nodes:
‣ The CUDA device(s) to which the operand(s) was allocated/mapped cannot change.
‣ The source/destination memory must be allocated from the same context as the
original source/destination memory.
‣ Only 1D cudaMemset/cudaMemcpy nodes can be changed.
Additional memcpy node restrictions:
‣ Changing either the source or destination memory type (i.e., cudaPitchedPtr,
cudaArray_t, etc.), or the type of transfer (i.e., cudaMemcpyKind) is not supported.
There are no restrictions on host node updates.
3.2.6.6.4.2. Whole Graph Update
cudaGraphExecUpdate() allows an instantiated graph (the "original graph") to be
updated with the parameters from a topologically identical graph (the "updating"
graph). The topology of the updating graph must be identical to the original graph used
to instantiate the cudaGraphExec_t. In addition, the order in which nodes were added
to, or removed from, the original graph must match the order in which the nodes were
added to (or removed from) the updating graph. Therefore, when using stream capture,
the nodes must be captured in the same order and when using the explicit graph node
creation APIs, all nodes must be added and/or deleted in the same order.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 48
Programming Interface
The following example shows how the API could be used to update an instantiated
graph:
cudaGraphExec_t graphExec = NULL;
cudaStreamEndCapture(stream, &graph);
cudaGraphDestroy(graph);
cudaGraphLaunch(graphExec, stream);
cudaStreamSynchronize(stream);
}
A typical workflow is to create the initial cudaGraph_t using either the stream capture
or graph API. The cudaGraph_t is then instantiated and launched as normal. After the
initial launch, a new cudaGraph_t is created using the same method as the initial graph
and cudaGraphExecUpdate() is called. If the graph update is successful, indicated by
the updateResult parameter in the above example, the updated cudaGraphExec_t
is launched. If the update fails for any reason, the cudaGraphExecDestroy() and
cudaGraphInstantiate() are called to destroy the original cudaGraphExec_t and
instantiate a new one.
It is also possible to update the cudaGraph_t nodes directly (i.e., Using
cudaGraphKernelNodeSetParams()) and subsequently update the
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 49
Programming Interface
cudaGraphExec_t, however it is more efficient to use the explicit node update APIs
covered in the next section.
Graphs containing child graph nodes or empty nodes cannot currently be updated
using cudaGraphExecUpdate().
Please see the Graph API for more information on usage and current limitations.
3.2.6.6.4.3. Individual node update
Instantiated graph node parameters can be updated directly. This eliminates the
overhead of instantiation as well as the overhead of creating a new cudaGraph_t. If the
number of nodes requiring update is small relative to the total number of nodes in the
graph, it is better to update the nodes individually. The following methods are available
for updating cudaGraphExec_t nodes:
‣ cudaGraphExecKernelNodeSetParams()
‣ cudaGraphExecMemcpyNodeSetParams()
‣ cudaGraphExecMemsetNodeSetParams()
‣ cudaGraphExecHostNodeSetParams()
Please see the Graph API for more information on usage and current limitations.
3.2.6.7. Events
The runtime also provides a way to closely monitor the device's progress, as well as
perform accurate timing, by letting the application asynchronously record events at
any point in the program, and query when these events are completed. An event has
completed when all tasks - or optionally, all commands in a given stream - preceding the
event have completed. Events in stream zero are completed after all preceding tasks and
commands in all streams are completed.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 50
Programming Interface
3.2.6.7.2. Elapsed Time
The events created in Creation and Destruction can be used to time the code sample of
Creation and Destruction the following way:
cudaEventRecord(start, 0);
for (int i = 0; i < 2; ++i) {
cudaMemcpyAsync(inputDev + i * size, inputHost + i * size,
size, cudaMemcpyHostToDevice, stream[i]);
MyKernel<<<100, 512, 0, stream[i]>>>
(outputDev + i * size, inputDev + i * size, size);
cudaMemcpyAsync(outputHost + i * size, outputDev + i * size,
size, cudaMemcpyDeviceToHost, stream[i]);
}
cudaEventRecord(stop, 0);
cudaEventSynchronize(stop);
float elapsedTime;
cudaEventElapsedTime(&elapsedTime, start, stop);
3.2.6.8. Synchronous Calls
When a synchronous function is called, control is not returned to the host thread before
the device has completed the requested task. Whether the host thread will then yield,
block, or spin can be specified by calling cudaSetDeviceFlags()with some specific
flags (see reference manual for details) before any other CUDA call is performed by the
host thread.
3.2.7. Multi-Device System
3.2.7.1. Device Enumeration
A host system can have multiple devices. The following code sample shows how to
enumerate these devices, query their properties, and determine the number of CUDA-
enabled devices.
int deviceCount;
cudaGetDeviceCount(&deviceCount);
int device;
for (device = 0; device < deviceCount; ++device) {
cudaDeviceProp deviceProp;
cudaGetDeviceProperties(&deviceProp, device);
printf("Device %d has compute capability %d.%d.\n",
device, deviceProp.major, deviceProp.minor);
}
3.2.7.2. Device Selection
A host thread can set the device it operates on at any time by calling cudaSetDevice().
Device memory allocations and kernel launches are made on the currently set device;
streams and events are created in association with the currently set device. If no call to
cudaSetDevice() is made, the current device is device 0.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 51
Programming Interface
The following code sample illustrates how setting the current device affects memory
allocation and kernel execution.
size_t size = 1024 * sizeof(float);
cudaSetDevice(0); // Set device 0 as current
float* p0;
cudaMalloc(&p0, size); // Allocate memory on device 0
MyKernel<<<1000, 128>>>(p0); // Launch kernel on device 0
cudaSetDevice(1); // Set device 1 as current
float* p1;
cudaMalloc(&p1, size); // Allocate memory on device 1
MyKernel<<<1000, 128>>>(p1); // Launch kernel on device 1
A memory copy will succeed even if it is issued to a stream that is not associated to the
current device.
cudaEventRecord() will fail if the input event and input stream are associated to
different devices.
cudaEventElapsedTime() will fail if the two input events are associated to different
devices.
cudaEventSynchronize() and cudaEventQuery() will succeed even if the input
event is associated to a device that is different from the current device.
cudaStreamWaitEvent() will succeed even if the input stream and input event are
associated to different devices. cudaStreamWaitEvent() can therefore be used to
synchronize multiple devices with each other.
Each device has its own default stream (see Default Stream), so commands issued to
the default stream of a device may execute out of order or concurrently with respect to
commands issued to the default stream of any other device.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 52
Programming Interface
3.2.7.4.1. IOMMU on Linux
On Linux only, CUDA and the display driver does not support IOMMU-enabled
bare-metal PCIe peer to peer memory copy. However, CUDA and the display driver
does support IOMMU via VM pass through. As a consequence, users on Linux, when
running on a native bare metal system, should disable the IOMMU. The IOMMU should
be enabled and the VFIO driver be used as a PCIe pass through for virtual machines.
On Windows the above limitation does not exist.
See also Allocating DMA Buffers on 64-bit Platforms.
A copy (in the implicit NULL stream) between the memories of two different devices:
‣ does not start until all commands previously issued to either device have completed
and
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 53
Programming Interface
3.2.9. Interprocess Communication
Any device memory pointer or event handle created by a host thread can be directly
referenced by any other thread within the same process. It is not valid outside this
process however, and therefore cannot be directly referenced by threads belonging to a
different process.
To share device memory pointers and events across processes, an application must
use the Inter Process Communication API, which is described in detail in the reference
manual. The IPC API is only supported for 64-bit processes on Linux and for devices
of compute capability 2.0 and higher. Note that the IPC API is not supported for
cudaMallocManaged allocations.
Using this API, an application can get the IPC handle for a given device memory
pointer using cudaIpcGetMemHandle(), pass it to another process using
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 54
Programming Interface
standard IPC mechanisms (e.g., interprocess shared memory or files), and use
cudaIpcOpenMemHandle() to retrieve a device pointer from the IPC handle that is a
valid pointer within this other process. Event handles can be shared using similar entry
points.
Note that allocations made by cudaMalloc() may be sub-allocated from a larger
block of memory for performance reasons. In such case, CUDA IPC APIs will share the
entire underlying memory block which may cause other sub-allocations to be shared,
which can potentially lead to information disclosure between processes. To prevent this
behavior, it is recommended to only share allocations with a 2MiB aligned size.
An example of using the IPC API is where a single master process generates a batch
of input data, making the data available to multiple slave processes without requiring
regeneration or copying.
Applications using CUDA IPC to communicate with each other should be compiled,
linked, and run with the same CUDA driver and runtime.
3.2.10. Error Checking
All runtime functions return an error code, but for an asynchronous function (see
Asynchronous Concurrent Execution), this error code cannot possibly report any of the
asynchronous errors that could occur on the device since the function returns before the
device has completed the task; the error code only reports errors that occur on the host
prior to executing the task, typically related to parameter validation; if an asynchronous
error occurs, it will be reported by some subsequent unrelated runtime function call.
The only way to check for asynchronous errors just after some asynchronous
function call is therefore to synchronize just after the call by calling
cudaDeviceSynchronize() (or by using any other synchronization mechanisms
described in Asynchronous Concurrent Execution) and checking the error code returned
by cudaDeviceSynchronize().
The runtime maintains an error variable for each host thread that is initialized to
cudaSuccess and is overwritten by the error code every time an error occurs (be it
a parameter validation error or an asynchronous error). cudaPeekAtLastError()
returns this variable. cudaGetLastError() returns this variable and resets it to
cudaSuccess.
Kernel launches do not return any error code, so cudaPeekAtLastError() or
cudaGetLastError() must be called just after the kernel launch to retrieve any
pre-launch errors. To ensure that any error returned by cudaPeekAtLastError()
or cudaGetLastError() does not originate from calls prior to the kernel launch,
one has to make sure that the runtime error variable is set to cudaSuccess just before
the kernel launch, for example, by calling cudaGetLastError() just before the
kernel launch. Kernel launches are asynchronous, so to check for asynchronous
errors, the application must synchronize in-between the kernel launch and the call to
cudaPeekAtLastError() or cudaGetLastError().
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 55
Programming Interface
3.2.11. Call Stack
On devices of compute capability 2.x and higher, the size of the call stack can be queried
using cudaDeviceGetLimit() and set using cudaDeviceSetLimit().
When the call stack overflows, the kernel call fails with a stack overflow error if the
application is run via a CUDA debugger (cuda-gdb, Nsight) or an unspecified launch
error, otherwise.
3.2.12.1. Texture Memory
Texture memory is read from kernels using the device functions described in Texture
Functions. The process of reading a texture calling one of these functions is called a
texture fetch. Each texture fetch specifies a parameter called a texture object for the texture
object API or a texture reference for the texture reference API.
The texture object or the texture reference specifies:
‣ The texture, which is the piece of texture memory that is fetched. Texture objects are
created at runtime and the texture is specified when creating the texture object as
described in Texture Object API. Texture references are created at compile time and
the texture is specified at runtime by bounding the texture reference to the texture
through runtime functions as described in Texture Reference API; several distinct
texture references might be bound to the same texture or to textures that overlap in
memory. A texture can be any region of linear memory or a CUDA array (described
in CUDA Arrays).
‣ Its dimensionality that specifies whether the texture is addressed as a one
dimensional array using one texture coordinate, a two-dimensional array using two
texture coordinates, or a three-dimensional array using three texture coordinates.
Elements of the array are called texels, short for texture elements. The texture width,
height, and depth refer to the size of the array in each dimension. Table 15 lists the
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 56
Programming Interface
maximum texture width, height, and depth depending on the compute capability of
the device.
‣ The type of a texel, which is restricted to the basic integer and single-precision
floating-point types and any of the 1-, 2-, and 4-component vector types defined in
Built-in Vector Types that are derived from the basic integer and single-precision
floating-point types.
‣ The read mode, which is equal to cudaReadModeNormalizedFloat or
cudaReadModeElementType. If it is cudaReadModeNormalizedFloat and the
type of the texel is a 16-bit or 8-bit integer type, the value returned by the texture
fetch is actually returned as floating-point type and the full range of the integer type
is mapped to [0.0, 1.0] for unsigned integer type and [-1.0, 1.0] for signed integer
type; for example, an unsigned 8-bit texture element with the value 0xff reads as 1. If
it is cudaReadModeElementType, no conversion is performed.
‣ Whether texture coordinates are normalized or not. By default, textures
are referenced (by the functions of Texture Functions) using floating-point
coordinates in the range [0, N-1] where N is the size of the texture in the dimension
corresponding to the coordinate. For example, a texture that is 64x32 in size will
be referenced with coordinates in the range [0, 63] and [0, 31] for the x and y
dimensions, respectively. Normalized texture coordinates cause the coordinates
to be specified in the range [0.0, 1.0-1/N] instead of [0, N-1], so the same 64x32
texture would be addressed by normalized coordinates in the range [0, 1-1/N] in
both the x and y dimensions. Normalized texture coordinates are a natural fit to
some applications' requirements, if it is preferable for the texture coordinates to be
independent of the texture size.
‣ The addressing mode. It is valid to call the device functions of Section B.8 with
coordinates that are out of range. The addressing mode defines what happens
in that case. The default addressing mode is to clamp the coordinates to the
valid range: [0, N) for non-normalized coordinates and [0.0, 1.0) for normalized
coordinates. If the border mode is specified instead, texture fetches with out-
of-range texture coordinates return zero. For normalized coordinates, the wrap
mode and the mirror mode are also available. When using the wrap mode, each
coordinate x is converted to frac(x)=x floor(x) where floor(x) is the largest integer
not greater than x. When using the mirror mode, each coordinate x is converted
to frac(x) if floor(x) is even and 1-frac(x) if floor(x) is odd. The addressing mode is
specified as an array of size three whose first, second, and third elements specify the
addressing mode for the first, second, and third texture coordinates, respectively;
the addressing mode are cudaAddressModeBorder, cudaAddressModeClamp,
cudaAddressModeWrap, and cudaAddressModeMirror; cudaAddressModeWrap
and cudaAddressModeMirror are only supported for normalized texture
coordinates
‣ The filtering mode which specifies how the value returned when fetching the texture
is computed based on the input texture coordinates. Linear texture filtering may be
done only for textures that are configured to return floating-point data. It performs
low-precision interpolation between neighboring texels. When enabled, the texels
surrounding a texture fetch location are read and the return value of the texture
fetch is interpolated based on where the texture coordinates fell between the texels.
Simple linear interpolation is performed for one-dimensional textures, bilinear
interpolation for two-dimensional textures, and trilinear interpolation for three-
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 57
Programming Interface
dimensional textures. Texture Fetching gives more details on texture fetching. The
filtering mode is equal to cudaFilterModePoint or cudaFilterModeLinear. If it
is cudaFilterModePoint, the returned value is the texel whose texture coordinates
are the closest to the input texture coordinates. If it is cudaFilterModeLinear, the
returned value is the linear interpolation of the two (for a one-dimensional texture),
four (for a two dimensional texture), or eight (for a three dimensional texture)
texels whose texture coordinates are the closest to the input texture coordinates.
cudaFilterModeLinear is only valid for returned values of floating-point type.
Texture Object API introduces the texture object API.
Texture Reference API introduces the texture reference API.
16-Bit Floating-Point Textures explains how to deal with 16-bit floating-point textures.
Textures can also be layered as described in Layered Textures.
Cubemap Textures and Cubemap Layered Textures describe a special type of texture,
the cubemap texture.
Texture Gather describes a special texture fetch, texture gather.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 58
Programming Interface
The following code sample applies some simple transformation kernel to a texture.
// Simple transformation kernel
__global__ void transformKernel(float* output,
cudaTextureObject_t texObj,
int width, int height,
float theta)
{
// Calculate normalized texture coordinates
unsigned int x = blockIdx.x * blockDim.x + threadIdx.x;
unsigned int y = blockIdx.y * blockDim.y + threadIdx.y;
float u = x / (float)width;
float v = y / (float)height;
// Transform coordinates
u -= 0.5f;
v -= 0.5f;
float tu = u * cosf(theta) - v * sinf(theta) + 0.5f;
float tv = v * cosf(theta) + u * sinf(theta) + 0.5f;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 59
Programming Interface
// Host code
int main()
{
// Allocate CUDA array in device memory
cudaChannelFormatDesc channelDesc =
cudaCreateChannelDesc(32, 0, 0, 0,
cudaChannelFormatKindFloat);
cudaArray* cuArray;
cudaMallocArray(&cuArray, &channelDesc, width, height);
// Specify texture
struct cudaResourceDesc resDesc;
memset(&resDesc, 0, sizeof(resDesc));
resDesc.resType = cudaResourceTypeArray;
resDesc.res.array.array = cuArray;
// Invoke kernel
dim3 dimBlock(16, 16);
dim3 dimGrid((width + dimBlock.x - 1) / dimBlock.x,
(height + dimBlock.y - 1) / dimBlock.y);
transformKernel<<<dimGrid, dimBlock>>>(output,
texObj, width, height,
angle);
return 0;
}
where:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 60
Programming Interface
where x, y, z, and w are equal to the number of bits of each component of the
returned value and f is:
‣ cudaChannelFormatKindSigned if these components are of signed integer
type,
‣ cudaChannelFormatKindUnsigned if they are of unsigned integer type,
‣ cudaChannelFormatKindFloat if they are of floating point type.
‣ See reference manual for sRGB, maxAnisotropy, mipmapFilterMode,
mipmapLevelBias, minMipmapLevelClamp, and maxMipmapLevelClamp.
normalized, addressMode, and filterMode may be directly modified in host code.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 61
Programming Interface
Before a kernel can use a texture reference to read from texture memory, the
texture reference must be bound to a texture using cudaBindTexture() or
cudaBindTexture2D() for linear memory, or cudaBindTextureToArray() for CUDA
arrays. cudaUnbindTexture() is used to unbind a texture reference. Once a texture
reference has been unbound, it can be safely rebound to another array, even if kernels
that use the previously bound texture have not completed. It is recommended to allocate
two-dimensional textures in linear memory using cudaMallocPitch() and use the
pitch returned by cudaMallocPitch() as input parameter to cudaBindTexture2D().
The following code samples bind a 2D texture reference to linear memory pointed to by
devPtr:
‣ Using the low-level API:
texture<float, cudaTextureType2D,
cudaReadModeElementType> texRef;
textureReference* texRefPtr;
cudaGetTextureReference(&texRefPtr, &texRef);
cudaChannelFormatDesc channelDesc =
cudaCreateChannelDesc<float>();
size_t offset;
cudaBindTexture2D(&offset, texRefPtr, devPtr, &channelDesc,
width, height, pitch);
‣ Using the high-level API:
texture<float, cudaTextureType2D,
cudaReadModeElementType> texRef;
cudaChannelFormatDesc channelDesc =
cudaCreateChannelDesc<float>();
size_t offset;
cudaBindTexture2D(&offset, texRef, devPtr, channelDesc,
width, height, pitch);
The following code samples bind a 2D texture reference to a CUDA array cuArray:
‣ Using the low-level API:
texture<float, cudaTextureType2D,
cudaReadModeElementType> texRef;
textureReference* texRefPtr;
cudaGetTextureReference(&texRefPtr, &texRef);
cudaChannelFormatDesc channelDesc;
cudaGetChannelDesc(&channelDesc, cuArray);
cudaBindTextureToArray(texRef, cuArray, &channelDesc);
‣ Using the high-level API:
texture<float, cudaTextureType2D,
cudaReadModeElementType> texRef;
cudaBindTextureToArray(texRef, cuArray);
The format specified when binding a texture to a texture reference must match the
parameters specified when declaring the texture reference; otherwise, the results of
texture fetches are undefined.
There is a limit to the number of textures that can be bound to a kernel as specified in
Table 15.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 62
Programming Interface
The following code sample applies some simple transformation kernel to a texture.
// 2D float texture
texture<float, cudaTextureType2D, cudaReadModeElementType> texRef;
float u = x / (float)width;
float v = y / (float)height;
// Transform coordinates
u -= 0.5f;
v -= 0.5f;
float tu = u * cosf(theta) - v * sinf(theta) + 0.5f;
float tv = v * cosf(theta) + u * sinf(theta) + 0.5f;
// Host code
int main()
{
// Allocate CUDA array in device memory
cudaChannelFormatDesc channelDesc =
cudaCreateChannelDesc(32, 0, 0, 0,
cudaChannelFormatKindFloat);
cudaArray* cuArray;
cudaMallocArray(&cuArray, &channelDesc, width, height);
// Invoke kernel
dim3 dimBlock(16, 16);
dim3 dimGrid((width + dimBlock.x - 1) / dimBlock.x,
(height + dimBlock.y - 1) / dimBlock.y);
transformKernel<<<dimGrid, dimBlock>>>(output, width, height,
angle);
return 0;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 63
Programming Interface
3.2.12.1.4. Layered Textures
A one-dimensional or two-dimensional layered texture (also known as texture array in
Direct3D and array texture in OpenGL) is a texture made up of a sequence of layers, all of
which are regular textures of same dimensionality, size, and data type.
A one-dimensional layered texture is addressed using an integer index and a floating-
point texture coordinate; the index denotes a layer within the sequence and the
coordinate addresses a texel within that layer. A two-dimensional layered texture is
addressed using an integer index and two floating-point texture coordinates; the index
denotes a layer within the sequence and the coordinates address a texel within that layer.
A layered texture can only be a CUDA array by calling cudaMalloc3DArray() with the
cudaArrayLayered flag (and a height of zero for one-dimensional layered texture).
Layered textures are fetched using the device functions described in tex1DLayered(),
tex1DLayered(), tex2DLayered(), and tex2DLayered(). Texture filtering (see Texture
Fetching) is done only within a layer, not across layers.
Layered textures are only supported on devices of compute capability 2.0 and higher.
3.2.12.1.5. Cubemap Textures
A cubemap texture is a special type of two-dimensional layered texture that has six layers
representing the faces of a cube:
‣ The width of a layer is equal to its height.
‣ The cubemap is addressed using three texture coordinates x, y, and z that are
interpreted as a direction vector emanating from the center of the cube and pointing
to one face of the cube and a texel within the layer corresponding to that face. More
specifically, the face is selected by the coordinate with largest magnitude m and the
corresponding layer is addressed using coordinates (s/m+1)/2 and (t/m+1)/2 where s
and t are defined in Table 2.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 64
Programming Interface
face m s t
x>0 0 x -z -y
|x| > |y| and |x| > |z|
x<0 1 -x z -y
y>0 2 y x z
|y| > |x| and |y| > |z|
y<0 3 -y x -z
z>0 4 z x -y
|z| > |x| and |z| > |y|
z<0 5 -z -x -y
A layered texture can only be a CUDA array by calling cudaMalloc3DArray() with the
cudaArrayCubemap flag.
Cubemap textures are fetched using the device function described in texCubemap() and
texCubemap().
Cubemap textures are only supported on devices of compute capability 2.0 and higher.
3.2.12.1.7. Texture Gather
Texture gather is a special texture fetch that is available for two-dimensional textures
only. It is performed by the tex2Dgather() function, which has the same parameters
as tex2D(), plus an additional comp parameter equal to 0, 1, 2, or 3 (see tex2Dgather()
and tex2Dgather()). It returns four 32-bit numbers that correspond to the value of the
component comp of each of the four texels that would have been used for bilinear
filtering during a regular texture fetch. For example, if these texels are of values
(253, 20, 31, 255), (250, 25, 29, 254), (249, 16, 37, 253), (251, 22, 30, 250), and comp is 2,
tex2Dgather() returns (31, 29, 37, 30).
Note that texture coordinates are computed with only 8 bits of fractional precision.
tex2Dgather() may therefore return unexpected results for cases where tex2D()
would use 1.0 for one of its weights (α or β, see Linear Filtering). For example, with an
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 65
Programming Interface
3.2.12.2. Surface Memory
For devices of compute capability 2.0 and higher, a CUDA array (described in Cubemap
Surfaces), created with the cudaArraySurfaceLoadStore flag, can be read and written
via a surface object or surface reference using the functions described in Surface Functions.
Table 15 lists the maximum surface width, height, and depth depending on the compute
capability of the device.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 66
Programming Interface
The following code sample applies some simple transformation kernel to a texture.
// Simple copy kernel
__global__ void copyKernel(cudaSurfaceObject_t inputSurfObj,
cudaSurfaceObject_t outputSurfObj,
int width, int height)
{
// Calculate surface coordinates
unsigned int x = blockIdx.x * blockDim.x + threadIdx.x;
unsigned int y = blockIdx.y * blockDim.y + threadIdx.y;
if (x < width && y < height) {
uchar4 data;
// Read from input surface
surf2Dread(&data, inputSurfObj, x * 4, y);
// Write to output surface
surf2Dwrite(data, outputSurfObj, x * 4, y);
}
}
// Host code
int main()
{
// Allocate CUDA arrays in device memory
cudaChannelFormatDesc channelDesc =
cudaCreateChannelDesc(8, 8, 8, 8,
cudaChannelFormatKindUnsigned);
cudaArray* cuInputArray;
cudaMallocArray(&cuInputArray, &channelDesc, width, height,
cudaArraySurfaceLoadStore);
cudaArray* cuOutputArray;
cudaMallocArray(&cuOutputArray, &channelDesc, width, height,
cudaArraySurfaceLoadStore);
// Specify surface
struct cudaResourceDesc resDesc;
memset(&resDesc, 0, sizeof(resDesc));
resDesc.resType = cudaResourceTypeArray;
// Invoke kernel
dim3 dimBlock(16, 16);
dim3 dimGrid((width + dimBlock.x - 1) / dimBlock.x,
(height + dimBlock.y - 1) / dimBlock.y);
copyKernel<<<dimGrid, dimBlock>>>(inputSurfObj,
outputSurfObj,
width, height);
return 0;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 67
Programming Interface
where Type specifies the type of the surface reference and is equal to
cudaSurfaceType1D, cudaSurfaceType2D, cudaSurfaceType3D,
cudaSurfaceTypeCubemap, cudaSurfaceType1DLayered,
cudaSurfaceType2DLayered, or cudaSurfaceTypeCubemapLayered; Type is an
optional argument which defaults to cudaSurfaceType1D. A surface reference can only
be declared as a static global variable and cannot be passed as an argument to a function.
Before a kernel can use a surface reference to access a CUDA array, the surface reference
must be bound to the CUDA array using cudaBindSurfaceToArray().
The following code samples bind a surface reference to a CUDA array cuArray:
‣ Using the low-level API:
surface<void, cudaSurfaceType2D> surfRef;
surfaceReference* surfRefPtr;
cudaGetSurfaceReference(&surfRefPtr, "surfRef");
cudaChannelFormatDesc channelDesc;
cudaGetChannelDesc(&channelDesc, cuArray);
cudaBindSurfaceToArray(surfRef, cuArray, &channelDesc);
‣ Using the high-level API:
surface<void, cudaSurfaceType2D> surfRef;
cudaBindSurfaceToArray(surfRef, cuArray);
A CUDA array must be read and written using surface functions of matching
dimensionality and type and via a surface reference of matching dimensionality;
otherwise, the results of reading and writing the CUDA array are undefined.
Unlike texture memory, surface memory uses byte addressing. This means that
the x-coordinate used to access a texture element via texture functions needs to be
multiplied by the byte size of the element to access the same element via a surface
function. For example, the element at texture coordinate x of a one-dimensional
floating-point CUDA array bound to a texture reference texRef and a surface reference
surfRef is read using tex1d(texRef, x) via texRef, but surf1Dread(surfRef,
4*x) via surfRef. Similarly, the element at texture coordinate x and y of a two-
dimensional floating-point CUDA array bound to a texture reference texRef and a
surface reference surfRef is accessed using tex2d(texRef, x, y) via texRef, but
surf2Dread(surfRef, 4*x, y) via surfRef (the byte offset of the y-coordinate is
internally calculated from the underlying line pitch of the CUDA array).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 68
Programming Interface
The following code sample applies some simple transformation kernel to a texture.
// 2D surfaces
surface<void, 2> inputSurfRef;
surface<void, 2> outputSurfRef;
// Host code
int main()
{
// Allocate CUDA arrays in device memory
cudaChannelFormatDesc channelDesc =
cudaCreateChannelDesc(8, 8, 8, 8,
cudaChannelFormatKindUnsigned);
cudaArray* cuInputArray;
cudaMallocArray(&cuInputArray, &channelDesc, width, height,
cudaArraySurfaceLoadStore);
cudaArray* cuOutputArray;
cudaMallocArray(&cuOutputArray, &channelDesc, width, height,
cudaArraySurfaceLoadStore);
// Invoke kernel
dim3 dimBlock(16, 16);
dim3 dimGrid((width + dimBlock.x - 1) / dimBlock.x,
(height + dimBlock.y - 1) / dimBlock.y);
copyKernel<<<dimGrid, dimBlock>>>(width, height);
return 0;
}
3.2.12.2.3. Cubemap Surfaces
Cubemap surfaces are accessed usingsurfCubemapread() and surfCubemapwrite()
(surfCubemapread and surfCubemapwrite) as a two-dimensional layered surface,
i.e., using an integer index denoting a face and two floating-point texture coordinates
addressing a texel within the layer corresponding to this face. Faces are ordered as
indicated in Table 2.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 69
Programming Interface
3.2.12.3. CUDA Arrays
CUDA arrays are opaque memory layouts optimized for texture fetching. They are one
dimensional, two dimensional, or three-dimensional and composed of elements, each of
which has 1, 2 or 4 components that may be signed or unsigned 8-, 16-, or 32-bit integers,
16-bit floats, or 32-bit floats. CUDA arrays are only accessible by kernels through texture
fetching as described in Texture Memory or surface reading and writing as described in
Surface Memory.
3.2.12.4. Read/Write Coherency
The texture and surface memory is cached (see Device Memory Accesses) and within
the same kernel call, the cache is not kept coherent with respect to global memory
writes and surface memory writes, so any texture fetch or surface read to an address
that has been written to via a global write or a surface write in the same kernel call
returns undefined data. In other words, a thread can safely read some texture or surface
memory location only if this memory location has been updated by a previous kernel
call or memory copy, but not if it has been previously updated by the same thread or
another thread from the same kernel call.
3.2.13. Graphics Interoperability
Some resources from OpenGL and Direct3D may be mapped into the address space of
CUDA, either to enable CUDA to read data written by OpenGL or Direct3D, or to enable
CUDA to write data for consumption by OpenGL or Direct3D.
A resource must be registered to CUDA before it can be mapped using the
functions mentioned in OpenGL Interoperability and Direct3D Interoperability.
These functions return a pointer to a CUDA graphics resource of type struct
cudaGraphicsResource. Registering a resource is potentially high-overhead and
therefore typically called only once per resource. A CUDA graphics resource is
unregistered using cudaGraphicsUnregisterResource(). Each CUDA context which
intends to use the resource is required to register it separately.
Once a resource is registered to CUDA, it can be mapped and unmapped
as many times as necessary using cudaGraphicsMapResources() and
cudaGraphicsUnmapResources(). cudaGraphicsResourceSetMapFlags() can be
called to specify usage hints (write-only, read-only) that the CUDA driver can use to
optimize resource management.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 70
Programming Interface
A mapped resource can be read from or written to by kernels using the device memory
address returned by cudaGraphicsResourceGetMappedPointer() for buffers and
cudaGraphicsSubResourceGetMappedArray() for CUDA arrays.
Accessing a resource through OpenGL, Direct3D, or another CUDA context while
it is mapped produces undefined results. OpenGL Interoperability and Direct3D
Interoperability give specifics for each graphics API and some code samples. SLI
Interoperability gives specifics for when the system is in SLI mode.
3.2.13.1. OpenGL Interoperability
The OpenGL resources that may be mapped into the address space of CUDA are
OpenGL buffer, texture, and renderbuffer objects.
A buffer object is registered using cudaGraphicsGLRegisterBuffer(). In CUDA,
it appears as a device pointer and can therefore be read and written by kernels or via
cudaMemcpy() calls.
A texture or renderbuffer object is registered using
cudaGraphicsGLRegisterImage(). In CUDA, it appears as a CUDA array. Kernels
can read from the array by binding it to a texture or surface reference. They can also
write to it via the surface write functions if the resource has been registered with
the cudaGraphicsRegisterFlagsSurfaceLoadStore flag. The array can also be
read and written via cudaMemcpy2D() calls. cudaGraphicsGLRegisterImage()
supports all texture formats with 1, 2, or 4 components and an internal type of float
(e.g., GL_RGBA_FLOAT32), normalized integer (e.g., GL_RGBA8, GL_INTENSITY16), and
unnormalized integer (e.g., GL_RGBA8UI) (please note that since unnormalized integer
formats require OpenGL 3.0, they can only be written by shaders, not the fixed function
pipeline).
The OpenGL context whose resources are being shared has to be current to the host
thread making any OpenGL interoperability API calls.
Please note: When an OpenGL texture is made bindless (say for example by requesting
an image or texture handle using the glGetTextureHandle*/glGetImageHandle* APIs)
it cannot be registered with CUDA. The application needs to register the texture for
interop before requesting an image or texture handle.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 71
Programming Interface
The following code sample uses a kernel to dynamically modify a 2D width x height
grid of vertices stored in a vertex buffer object:
GLuint positionsVBO;
struct cudaGraphicsResource* positionsVBO_CUDA;
int main()
{
// Initialize OpenGL and GLUT for device 0
// and make the OpenGL context current
...
glutDisplayFunc(display);
...
}
void display()
{
// Map buffer object for writing from CUDA
float4* positions;
cudaGraphicsMapResources(1, &positionsVBO_CUDA, 0);
size_t num_bytes;
cudaGraphicsResourceGetMappedPointer((void**)&positions,
&num_bytes,
positionsVBO_CUDA));
// Execute kernel
dim3 dimBlock(16, 16, 1);
dim3 dimGrid(width / dimBlock.x, height / dimBlock.y, 1);
createVertices<<<dimGrid, dimBlock>>>(positions, time,
width, height);
// Swap buffers
glutSwapBuffers();
glutPostRedisplay();
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 72
Programming Interface
void deleteVBO()
{
cudaGraphicsUnregisterResource(positionsVBO_CUDA);
glDeleteBuffers(1, &positionsVBO);
}
// Calculate uv coordinates
float u = x / (float)width;
float v = y / (float)height;
u = u * 2.0f - 1.0f;
v = v * 2.0f - 1.0f;
// Write positions
positions[y * width + x] = make_float4(u, w, v, 1.0f);
}
On Windows and for Quadro GPUs, cudaWGLGetDevice() can be used to retrieve the
CUDA device associated to the handle returned by wglEnumGpusNV(). Quadro GPUs
offer higher performance OpenGL interoperability than GeForce and Tesla GPUs in a
multi-GPU configuration where OpenGL rendering is performed on the Quadro GPU
and CUDA computations are performed on other GPUs in the system.
3.2.13.2. Direct3D Interoperability
Direct3D interoperability is supported for Direct3D 9Ex, Direct3D 10, and Direct3D 11.
A CUDA context may interoperate only with Direct3D devices that
fulfill the following criteria: Direct3D 9Ex devices must be created with
DeviceType set to D3DDEVTYPE_HAL and BehaviorFlags with the
D3DCREATE_HARDWARE_VERTEXPROCESSING flag; Direct3D 10 and Direct3D 11 devices
must be created with DriverType set to D3D_DRIVER_TYPE_HARDWARE.
The Direct3D resources that may be mapped into the address space of
CUDA are Direct3D buffers, textures, and surfaces. These resources
are registered using cudaGraphicsD3D9RegisterResource(),
cudaGraphicsD3D10RegisterResource(), and
cudaGraphicsD3D11RegisterResource().
The following code sample uses a kernel to dynamically modify a 2D width x height
grid of vertices stored in a vertex buffer object.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 73
Programming Interface
3.2.13.2.1. Direct3D 9 Version
IDirect3D9* D3D;
IDirect3DDevice9* device;
struct CUSTOMVERTEX {
FLOAT x, y, z;
DWORD color;
};
IDirect3DVertexBuffer9* positionsVB;
struct cudaGraphicsResource* positionsVB_CUDA;
int main()
{
int dev;
// Initialize Direct3D
D3D = Direct3DCreate9Ex(D3D_SDK_VERSION);
// Create device
...
D3D->CreateDeviceEx(adapter, D3DDEVTYPE_HAL, hWnd,
D3DCREATE_HARDWARE_VERTEXPROCESSING,
¶ms, NULL, &device);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 74
Programming Interface
void Render()
{
// Map vertex buffer for writing from CUDA
float4* positions;
cudaGraphicsMapResources(1, &positionsVB_CUDA, 0);
size_t num_bytes;
cudaGraphicsResourceGetMappedPointer((void**)&positions,
&num_bytes,
positionsVB_CUDA));
// Execute kernel
dim3 dimBlock(16, 16, 1);
dim3 dimGrid(width / dimBlock.x, height / dimBlock.y, 1);
createVertices<<<dimGrid, dimBlock>>>(positions, time,
width, height);
void releaseVB()
{
cudaGraphicsUnregisterResource(positionsVB_CUDA);
positionsVB->Release();
}
// Calculate uv coordinates
float u = x / (float)width;
float v = y / (float)height;
u = u * 2.0f - 1.0f;
v = v * 2.0f - 1.0f;
// Write positions
positions[y * width + x] =
make_float4(u, w, v, __int_as_float(0xff00ff00));
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 75
Programming Interface
3.2.13.2.2. Direct3D 10 Version
ID3D10Device* device;
struct CUSTOMVERTEX {
FLOAT x, y, z;
DWORD color;
};
ID3D10Buffer* positionsVB;
struct cudaGraphicsResource* positionsVB_CUDA;
int main()
{
int dev;
// Get a CUDA-enabled adapter
IDXGIFactory* factory;
CreateDXGIFactory(__uuidof(IDXGIFactory), (void**)&factory);
IDXGIAdapter* adapter = 0;
for (unsigned int i = 0; !adapter; ++i) {
if (FAILED(factory->EnumAdapters(i, &adapter))
break;
if (cudaD3D10GetDevice(&dev, adapter) == cudaSuccess)
break;
adapter->Release();
}
factory->Release();
cudaGraphicsResourceSetMapFlags(positionsVB_CUDA,
cudaGraphicsMapFlagsWriteDiscard);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 76
Programming Interface
void Render()
{
// Map vertex buffer for writing from CUDA
float4* positions;
cudaGraphicsMapResources(1, &positionsVB_CUDA, 0);
size_t num_bytes;
cudaGraphicsResourceGetMappedPointer((void**)&positions,
&num_bytes,
positionsVB_CUDA));
// Execute kernel
dim3 dimBlock(16, 16, 1);
dim3 dimGrid(width / dimBlock.x, height / dimBlock.y, 1);
createVertices<<<dimGrid, dimBlock>>>(positions, time,
width, height);
void releaseVB()
{
cudaGraphicsUnregisterResource(positionsVB_CUDA);
positionsVB->Release();
}
// Calculate uv coordinates
float u = x / (float)width;
float v = y / (float)height;
u = u * 2.0f - 1.0f;
v = v * 2.0f - 1.0f;
// Write positions
positions[y * width + x] =
make_float4(u, w, v, __int_as_float(0xff00ff00));
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 77
Programming Interface
3.2.13.2.3. Direct3D 11 Version
ID3D11Device* device;
struct CUSTOMVERTEX {
FLOAT x, y, z;
DWORD color;
};
ID3D11Buffer* positionsVB;
struct cudaGraphicsResource* positionsVB_CUDA;
int main()
{
int dev;
// Get a CUDA-enabled adapter
IDXGIFactory* factory;
CreateDXGIFactory(__uuidof(IDXGIFactory), (void**)&factory);
IDXGIAdapter* adapter = 0;
for (unsigned int i = 0; !adapter; ++i) {
if (FAILED(factory->EnumAdapters(i, &adapter))
break;
if (cudaD3D11GetDevice(&dev, adapter) == cudaSuccess)
break;
adapter->Release();
}
factory->Release();
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 78
Programming Interface
void Render()
{
// Map vertex buffer for writing from CUDA
float4* positions;
cudaGraphicsMapResources(1, &positionsVB_CUDA, 0);
size_t num_bytes;
cudaGraphicsResourceGetMappedPointer((void**)&positions,
&num_bytes,
positionsVB_CUDA));
// Execute kernel
dim3 dimBlock(16, 16, 1);
dim3 dimGrid(width / dimBlock.x, height / dimBlock.y, 1);
createVertices<<<dimGrid, dimBlock>>>(positions, time,
width, height);
void releaseVB()
{
cudaGraphicsUnregisterResource(positionsVB_CUDA);
positionsVB->Release();
}
// Calculate uv coordinates
float u = x / (float)width;
float v = y / (float)height;
u = u * 2.0f - 1.0f;
v = v * 2.0f - 1.0f;
// Write positions
positions[y * width + x] =
make_float4(u, w, v, __int_as_float(0xff00ff00));
}
3.2.13.3. SLI Interoperability
In a system with multiple GPUs, all CUDA-enabled GPUs are accessible via the CUDA
driver and runtime as separate devices. There are however special considerations as
described below when the system is in SLI mode.
First, an allocation in one CUDA device on one GPU will consume memory on other
GPUs that are part of the SLI configuration of the Direct3D or OpenGL device. Because
of this, allocations may fail earlier than otherwise expected.
Second, applications should create multiple CUDA contexts, one for each GPU in the SLI
configuration. While this is not a strict requirement, it avoids unnecessary data transfers
between devices. The application can use the cudaD3D[9|10|11]GetDevices() for
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 79
Programming Interface
Direct3D and cudaGLGetDevices() for OpenGL set of calls to identify the CUDA
device handle(s) for the device(s) that are performing the rendering in the current
and next frame. Given this information the application will typically choose the
appropriate device and map Direct3D or OpenGL resources to the CUDA device
returned by cudaD3D[9|10|11]GetDevices() or cudaGLGetDevices() when the
deviceList parameter is set to cudaD3D[9|10|11]DeviceListCurrentFrame or
cudaGLDeviceListCurrentFrame.
Please note that resource returned from cudaGraphicsD9D[9|10|
11]RegisterResource and cudaGraphicsGLRegister[Buffer|Image] must be
only used on device the registration happened. Therefore on SLI configurations when
data for different frames is computed on different CUDA devices it is necessary to
register the resources for each separatly.
See Direct3D Interoperability and OpenGL Interoperability for details on how the
CUDA runtime interoperate with Direct3D and OpenGL, respectively.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 80
Programming Interface
3.2.14.1. Vulkan Interoperability
3.2.14.1.1. Matching device UUIDs
When importing memory and synchronization objects exported by Vulkan, they must be
imported and mapped on the same device as they were created on. The CUDA device
that corresponds to the Vulkan physical device on which the objects were created can
be determined by comparing the UUID of a CUDA device with that of the Vulkan
physical device, as shown in the following code sample. Note that the Vulkan physical
device should not be part of a device group that contains more than one Vulkan physical
device. The device group as returned by vkEnumeratePhysicalDeviceGroups that
contains the given Vulkan physical device must have a physical device count of 1.
vkGetPhysicalDeviceProperties2(vkPhysicalDevice,
&vkPhysicalDeviceProperties2);
int cudaDeviceCount;
cudaGetDeviceCount(&cudaDeviceCount);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 81
Programming Interface
assumes ownership of the file descriptor once it is imported. Using the file descriptor
after a successful import results in undefined behavior.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeOpaqueFd;
desc.handle.fd = fd;
desc.size = size;
if (isDedicated) {
desc.flags |= cudaExternalMemoryDedicated;
}
cudaImportExternalMemory(&extMem, &desc);
// Input parameter 'fd' should not be used beyond this point as CUDA has
assumed ownership of it
return extMem;
}
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeOpaqueWin32;
desc.handle.win32.handle = handle;
desc.size = size;
if (isDedicated) {
desc.flags |= cudaExternalMemoryDedicated;
}
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 82
Programming Interface
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeOpaqueWin32;
desc.handle.win32.name = (void *)name;
desc.size = size;
if (isDedicated) {
desc.flags |= cudaExternalMemoryDedicated;
}
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeOpaqueWin32Kmt;
desc.handle.win32.handle = (void *)handle;
desc.size = size;
if (isDedicated) {
desc.flags |= cudaExternalMemoryDedicated;
}
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 83
Programming Interface
using the corresponding Vulkan API. All mapped device pointers must be freed using
cudaFree().
memset(&desc, 0, sizeof(desc));
desc.offset = offset;
desc.size = size;
return ptr;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 84
Programming Interface
convert Vulkan parameters into the corresponding CUDA parameters when mapping
mipmapped arrays onto imported memory objects.
cudaMipmappedArray_t mapMipmappedArrayOntoExternalMemory(cudaExternalMemory_t
extMem, unsigned long long offset, cudaChannelFormatDesc *formatDesc,
cudaExtent *extent, unsigned int flags, unsigned int numLevels) {
cudaMipmappedArray_t mipmap = NULL;
cudaExternalMemoryMipmappedArrayDesc desc = {};
memset(&desc, 0, sizeof(desc));
desc.offset = offset;
desc.formatDesc = *formatDesc;
desc.extent = *extent;
desc.flags = flags;
desc.numLevels = numLevels;
return mipmap;
}
memset(&d, 0, sizeof(d));
switch (format) {
case VK_FORMAT_R8_UINT: d.x = 8; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R8_SINT: d.x = 8; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R8G8_UINT: d.x = 8; d.y = 8; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R8G8_SINT: d.x = 8; d.y = 8; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R8G8B8A8_UINT: d.x = 8; d.y = 8; d.z = 8; d.w = 8;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R8G8B8A8_SINT: d.x = 8; d.y = 8; d.z = 8; d.w = 8;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R16_UINT: d.x = 16; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R16_SINT: d.x = 16; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R16G16_UINT: d.x = 16; d.y = 16; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R16G16_SINT: d.x = 16; d.y = 16; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R16G16B16A16_UINT: d.x = 16; d.y = 16; d.z = 16; d.w = 16;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R16G16B16A16_SINT: d.x = 16; d.y = 16; d.z = 16; d.w = 16;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R32_UINT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R32_SINT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R32_SFLOAT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindFloat; break;
case VK_FORMAT_R32G32_UINT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R32G32_SINT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R32G32_SFLOAT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindFloat; break;
case VK_FORMAT_R32G32B32A32_UINT: d.x = 32; d.y = 32; d.z = 32; d.w = 32;
d.f = cudaChannelFormatKindUnsigned; break;
case VK_FORMAT_R32G32B32A32_SINT: d.x = 32; d.y = 32; d.z = 32; d.w = 32;
d.f = cudaChannelFormatKindSigned; break;
case VK_FORMAT_R32G32B32A32_SFLOAT: d.x =
www.nvidia.com 32; d.y = 32; d.z = 32; d.w = 32;
d.f C++
CUDA = Programming
cudaChannelFormatKindFloat;
Guide break; PG-02829-001_v11.0 | 85
default: assert(0);
}
Programming Interface
return d;
}
switch (vkImageViewType) {
case VK_IMAGE_VIEW_TYPE_1D: e.width = vkExt.width; e.height = 0;
e.depth = 0; break;
case VK_IMAGE_VIEW_TYPE_2D: e.width = vkExt.width; e.height =
vkExt.height; e.depth = 0; break;
case VK_IMAGE_VIEW_TYPE_3D: e.width = vkExt.width; e.height =
vkExt.height; e.depth = vkExt.depth; break;
case VK_IMAGE_VIEW_TYPE_CUBE: e.width = vkExt.width; e.height =
vkExt.height; e.depth = arrayLayers; break;
case VK_IMAGE_VIEW_TYPE_1D_ARRAY: e.width = vkExt.width; e.height = 0;
e.depth = arrayLayers; break;
case VK_IMAGE_VIEW_TYPE_2D_ARRAY: e.width = vkExt.width; e.height =
vkExt.height; e.depth = arrayLayers; break;
case VK_IMAGE_VIEW_TYPE_CUBE_ARRAY: e.width = vkExt.width; e.height =
vkExt.height; e.depth = arrayLayers; break;
default: assert(0);
}
return e;
}
switch (vkImageViewType) {
case VK_IMAGE_VIEW_TYPE_CUBE: flags |= cudaArrayCubemap;
break;
case VK_IMAGE_VIEW_TYPE_CUBE_ARRAY: flags |= cudaArrayCubemap |
cudaArrayLayered; break;
case VK_IMAGE_VIEW_TYPE_1D_ARRAY: flags |= cudaArrayLayered;
break;
case VK_IMAGE_VIEW_TYPE_2D_ARRAY: flags |= cudaArrayLayered;
break;
default: break;
}
if (allowSurfaceLoadStore) {
flags |= cudaArraySurfaceLoadStore;
}
return flags;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 86
Programming Interface
assumes ownership of the file descriptor once it is imported. Using the file descriptor
after a successful import results in undefined behavior.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeOpaqueFd;
desc.handle.fd = fd;
cudaImportExternalSemaphore(&extSem, &desc);
// Input parameter 'fd' should not be used beyond this point as CUDA has
assumed ownership of it
return extSem;
}
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeOpaqueWin32;
desc.handle.win32.handle = handle;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 87
Programming Interface
cudaExternalSemaphore_t importVulkanSemaphoreObjectFromNamedNTHandle(LPCWSTR
name) {
cudaExternalSemaphore_t extSem = NULL;
cudaExternalSemaphoreHandleDesc desc = {};
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeOpaqueWin32;
desc.handle.win32.name = (void *)name;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeOpaqueWin32Kmt;
desc.handle.win32.handle = (void *)handle;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
memset(¶ms, 0, sizeof(params));
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 88
Programming Interface
to the unsignaled state. The corresponding signal that this wait is waiting on must be
issued in Vulkan. Additionally, the signal must be issued before this wait can be issued.
memset(¶ms, 0, sizeof(params));
3.2.14.2. OpenGL Interoperability
Traditional OpenGL-CUDA interop as outlined in section 3.2.12.1 works by CUDA
directly consuming handles created in OpenGL. However, since OpenGL can also
consume memory and synchronization objects created in Vulkan, there exists an
alternative approach to doing OpenGL-CUDA interop. Essentially, memory and
synchronization objects exported by Vulkan could be imported into both, OpenGL and
CUDA, and then used to coordinate memory accesses between OpenGL and CUDA.
Please refer to the following OpenGL extensions for further details on how to import
memory and synchronization objects exported by Vulkan:
GL_EXT_memory_object
GL_EXT_memory_object_fd
GL_EXT_memory_object_win32
GL_EXT_semaphore
GL_EXT_semaphore_fd
GL_EXT_semaphore_win32
3.2.14.3. Direct3D 12 Interoperability
3.2.14.3.1. Matching device LUIDs
When importing memory and synchronization objects exported by Direct3D 12, they
must be imported and mapped on the same device as they were created on. The CUDA
device that corresponds to the Direct3D 12 device on which the objects were created
can be determined by comparing the LUID of a CUDA device with that of the Direct3D
12 device, as shown in the following code sample. Note that the Direct3D 12 device
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 89
Programming Interface
must not be created on a linked node adapter. I.e. the node count as returned by
ID3D12Device::GetNodeCount must be 1.
int cudaDeviceCount;
cudaGetDeviceCount(&cudaDeviceCount);
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeD3D12Heap;
desc.handle.win32.handle = (void *)handle;
desc.size = size;
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 90
Programming Interface
A shareable Direct3D 12 heap memory object can also be imported using a named
handle if one exists as shown below.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeD3D12Heap;
desc.handle.win32.name = (void *)name;
desc.size = size;
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeD3D12Resource;
desc.handle.win32.handle = (void *)handle;
desc.size = size;
desc.flags |= cudaExternalMemoryDedicated;
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 91
Programming Interface
A shareable Direct3D 12 committed resource can also be imported using a named handle
if one exists as shown below.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeD3D12Resource;
desc.handle.win32.name = (void *)name;
desc.size = size;
desc.flags |= cudaExternalMemoryDedicated;
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
memset(&desc, 0, sizeof(desc));
desc.offset = offset;
desc.size = size;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 92
Programming Interface
to convert Vulkan parameters into the corresponding CUDA parameters when mapping
mipmapped arrays onto imported memory objects.
cudaMipmappedArray_t mapMipmappedArrayOntoExternalMemory(cudaExternalMemory_t
extMem, unsigned long long offset, cudaChannelFormatDesc *formatDesc,
cudaExtent *extent, unsigned int flags, unsigned int numLevels) {
cudaMipmappedArray_t mipmap = NULL;
cudaExternalMemoryMipmappedArrayDesc desc = {};
memset(&desc, 0, sizeof(desc));
desc.offset = offset;
desc.formatDesc = *formatDesc;
desc.extent = *extent;
desc.flags = flags;
desc.numLevels = numLevels;
return mipmap;
}
cudaChannelFormatDesc getCudaChannelFormatDescForDxgiFormat(DXGI_FORMAT
dxgiFormat)
{
cudaChannelFormatDesc d;
memset(&d, 0, sizeof(d));
switch (dxgiFormat) {
case DXGI_FORMAT_R8_UINT: d.x = 8; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R8_SINT: d.x = 8; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R8G8_UINT: d.x = 8; d.y = 8; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R8G8_SINT: d.x = 8; d.y = 8; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R8G8B8A8_UINT: d.x = 8; d.y = 8; d.z = 8; d.w = 8;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R8G8B8A8_SINT: d.x = 8; d.y = 8; d.z = 8; d.w = 8;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R16_UINT: d.x = 16; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R16_SINT: d.x = 16; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R16G16_UINT: d.x = 16; d.y = 16; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R16G16_SINT: d.x = 16; d.y = 16; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R16G16B16A16_UINT: d.x = 16; d.y = 16; d.z = 16; d.w = 16;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R16G16B16A16_SINT: d.x = 16; d.y = 16; d.z = 16; d.w = 16;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R32_UINT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R32_SINT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R32_FLOAT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindFloat; break;
case DXGI_FORMAT_R32G32_UINT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R32G32_SINT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R32G32_FLOAT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindFloat; break;
case DXGI_FORMAT_R32G32B32A32_UINT: d.x = 32; d.y = 32; d.z = 32; d.w = 32;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R32G32B32A32_SINT: d.x = 32; d.y = 32; d.z = 32; d.w = 32;
d.f = cudaChannelFormatKindSigned;
www.nvidia.com break;
CUDA case DXGI_FORMAT_R32G32B32A32_FLOAT:
C++ Programming Guide d.x = 32; d.y = 32; d.zPG-02829-001_v11.0 | 93
= 32; d.w = 32;
d.f = cudaChannelFormatKindFloat; break;
default: assert(0);
Programming Interface
return d;
}
switch (d3d12SRVDimension) {
case D3D12_SRV_DIMENSION_TEXTURE1D: e.width = width; e.height = 0;
e.depth = 0; break;
case D3D12_SRV_DIMENSION_TEXTURE2D: e.width = width; e.height =
height; e.depth = 0; break;
case D3D12_SRV_DIMENSION_TEXTURE3D: e.width = width; e.height =
height; e.depth = depthOrArraySize; break;
case D3D12_SRV_DIMENSION_TEXTURECUBE: e.width = width; e.height =
height; e.depth = depthOrArraySize; break;
case D3D12_SRV_DIMENSION_TEXTURE1DARRAY: e.width = width; e.height = 0;
e.depth = depthOrArraySize; break;
case D3D12_SRV_DIMENSION_TEXTURE2DARRAY: e.width = width; e.height =
height; e.depth = depthOrArraySize; break;
case D3D12_SRV_DIMENSION_TEXTURECUBEARRAY: e.width = width; e.height =
height; e.depth = depthOrArraySize; break;
default: assert(0);
}
return e;
}
switch (d3d12SRVDimension) {
case D3D12_SRV_DIMENSION_TEXTURECUBE: flags |= cudaArrayCubemap;
break;
case D3D12_SRV_DIMENSION_TEXTURECUBEARRAY: flags |= cudaArrayCubemap |
cudaArrayLayered; break;
case D3D12_SRV_DIMENSION_TEXTURE1DARRAY: flags |= cudaArrayLayered;
break;
case D3D12_SRV_DIMENSION_TEXTURE2DARRAY: flags |= cudaArrayLayered;
break;
default: break;
}
return flags;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 94
Programming Interface
anymore. The NT handle holds a reference to the resource, so it must be explicitly freed
before the underlying semaphore can be freed.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeD3D12Fence;
desc.handle.win32.handle = handle;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
A shareable Direct3D 12 fence object can also be imported using a named handle if one
exists as shown below.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeD3D12Fence;
desc.handle.win32.name = (void *)name;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
memset(¶ms, 0, sizeof(params));
params.params.fence.value = value;
An imported Direct3D 12 fence object can be waited on as shown below. Waiting on such
a fence object waits until its value becomes greater than or equal to the specified value.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 95
Programming Interface
The corresponding signal that this wait is waiting on must be issued in Direct3D 12.
Additionally, the signal must be issued before this wait can be issued.
memset(¶ms, 0, sizeof(params));
params.params.fence.value = value;
3.2.14.4. Direct3D 11 Interoperability
3.2.14.4.1. Matching device LUIDs
When importing memory and synchronization objects exported by Direct3D 11, they
must be imported and mapped on the same device as they were created on. The CUDA
device that corresponds to the Direct3D 11 device on which the objects were created can
be determined by comparing the LUID of a CUDA device with that of the Direct3D 11
device, as shown in the following code sample.
IDXGIAdapter *dxgiAdapter;
dxgiDevice->GetAdapter(&dxgiAdapter);
DXGI_ADAPTER_DESC dxgiAdapterDesc;
dxgiAdapter->GetDesc(&dxgiAdapterDesc);
int cudaDeviceCount;
cudaGetDeviceCount(&cudaDeviceCount);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 96
Programming Interface
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeD3D11Resource;
desc.handle.win32.handle = (void *)handle;
desc.size = size;
desc.flags |= cudaExternalMemoryDedicated;
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
A shareable Direct3D 11 resource can also be imported using a named handle if one
exists as shown below.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeD3D11Resource;
desc.handle.win32.name = (void *)name;
desc.size = size;
desc.flags |= cudaExternalMemoryDedicated;
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 97
Programming Interface
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalMemoryHandleTypeD3D11ResourceKmt;
desc.handle.win32.handle = (void *)handle;
desc.size = size;
desc.flags |= cudaExternalMemoryDedicated;
cudaImportExternalMemory(&extMem, &desc);
return extMem;
}
memset(&desc, 0, sizeof(desc));
desc.offset = offset;
desc.size = size;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 98
Programming Interface
how to convert Direct3D 11 parameters into the corresponding CUDA parameters when
mapping mipmapped arrays onto imported memory objects.
cudaMipmappedArray_t mapMipmappedArrayOntoExternalMemory(cudaExternalMemory_t
extMem, unsigned long long offset, cudaChannelFormatDesc *formatDesc,
cudaExtent *extent, unsigned int flags, unsigned int numLevels) {
cudaMipmappedArray_t mipmap = NULL;
cudaExternalMemoryMipmappedArrayDesc desc = {};
memset(&desc, 0, sizeof(desc));
desc.offset = offset;
desc.formatDesc = *formatDesc;
desc.extent = *extent;
desc.flags = flags;
desc.numLevels = numLevels;
return mipmap;
}
cudaChannelFormatDesc getCudaChannelFormatDescForDxgiFormat(DXGI_FORMAT
dxgiFormat)
{
cudaChannelFormatDesc d;
memset(&d, 0, sizeof(d));
switch (dxgiFormat) {
case DXGI_FORMAT_R8_UINT: d.x = 8; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R8_SINT: d.x = 8; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R8G8_UINT: d.x = 8; d.y = 8; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R8G8_SINT: d.x = 8; d.y = 8; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R8G8B8A8_UINT: d.x = 8; d.y = 8; d.z = 8; d.w = 8;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R8G8B8A8_SINT: d.x = 8; d.y = 8; d.z = 8; d.w = 8;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R16_UINT: d.x = 16; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R16_SINT: d.x = 16; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R16G16_UINT: d.x = 16; d.y = 16; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R16G16_SINT: d.x = 16; d.y = 16; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R16G16B16A16_UINT: d.x = 16; d.y = 16; d.z = 16; d.w = 16;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R16G16B16A16_SINT: d.x = 16; d.y = 16; d.z = 16; d.w = 16;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R32_UINT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R32_SINT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R32_FLOAT: d.x = 32; d.y = 0; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindFloat; break;
case DXGI_FORMAT_R32G32_UINT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R32G32_SINT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R32G32_FLOAT: d.x = 32; d.y = 32; d.z = 0; d.w = 0;
d.f = cudaChannelFormatKindFloat; break;
case DXGI_FORMAT_R32G32B32A32_UINT: d.x = 32; d.y = 32; d.z = 32; d.w = 32;
d.f = cudaChannelFormatKindUnsigned; break;
case DXGI_FORMAT_R32G32B32A32_SINT: d.x = 32; d.y = 32; d.z = 32; d.w = 32;
d.f = cudaChannelFormatKindSigned; break;
case DXGI_FORMAT_R32G32B32A32_FLOAT: d.x = 32; d.y = 32; d.z = 32; d.w = 32;
d.f = cudaChannelFormatKindFloat;
www.nvidia.com break;
CUDA default: assert(0);
C++ Programming Guide PG-02829-001_v11.0 | 99
}
Programming Interface
return d;
}
switch (d3d11SRVDimension) {
case D3D11_SRV_DIMENSION_TEXTURE1D: e.width = width; e.height = 0;
e.depth = 0; break;
case D3D11_SRV_DIMENSION_TEXTURE2D: e.width = width; e.height =
height; e.depth = 0; break;
case D3D11_SRV_DIMENSION_TEXTURE3D: e.width = width; e.height =
height; e.depth = depthOrArraySize; break;
case D3D11_SRV_DIMENSION_TEXTURECUBE: e.width = width; e.height =
height; e.depth = depthOrArraySize; break;
case D3D11_SRV_DIMENSION_TEXTURE1DARRAY: e.width = width; e.height = 0;
e.depth = depthOrArraySize; break;
case D3D11_SRV_DIMENSION_TEXTURE2DARRAY: e.width = width; e.height =
height; e.depth = depthOrArraySize; break;
case D3D11_SRV_DIMENSION_TEXTURECUBEARRAY: e.width = width; e.height =
height; e.depth = depthOrArraySize; break;
default: assert(0);
}
return e;
}
switch (d3d11SRVDimension) {
case D3D11_SRV_DIMENSION_TEXTURECUBE: flags |= cudaArrayCubemap;
break;
case D3D11_SRV_DIMENSION_TEXTURECUBEARRAY: flags |= cudaArrayCubemap |
cudaArrayLayered; break;
case D3D11_SRV_DIMENSION_TEXTURE1DARRAY: flags |= cudaArrayLayered;
break;
case D3D11_SRV_DIMENSION_TEXTURE2DARRAY: flags |= cudaArrayLayered;
break;
default: break;
}
if (allowSurfaceLoadStore) {
flags |= cudaArraySurfaceLoadStore;
}
return flags;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 100
Programming Interface
anymore. The NT handle holds a reference to the resource, so it must be explicitly freed
before the underlying semaphore can be freed.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeD3D11Fence;
desc.handle.win32.handle = handle;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
A shareable Direct3D 11 fence object can also be imported using a named handle if one
exists as shown below.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeD3D11Fence;
desc.handle.win32.name = (void *)name;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeKeyedMutex;
desc.handle.win32.handle = handle;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 101
Programming Interface
A shareable Direct3D 11 keyed mutex object can also be imported using a named handle
if one exists as shown below.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeKeyedMutex;
desc.handle.win32.name = (void *)name;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
A shareable Direct3D 11 keyed mutex object can be imported into CUDA using the
globally shared D3DKMT handle associated with that object as shown below. Since a
globally shared D3DKMT handle does not hold a reference to the underlying memory it
is automatically destroyed when all other references to the resource are destroyed.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeKeyedMutexKmt;
desc.handle.win32.handle = handle;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
memset(¶ms, 0, sizeof(params));
params.params.fence.value = value;
An imported Direct3D 11 fence object can be waited on as shown below. Waiting on such
a fence object waits until its value becomes greater than or equal to the specified value.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 102
Programming Interface
The corresponding signal that this wait is waiting on must be issued in Direct3D 11.
Additionally, the signal must be issued before this wait can be issued.
memset(¶ms, 0, sizeof(params));
params.params.fence.value = value;
An imported Direct3D 11 keyed mutex object can be signaled as shown below. Signaling
such a keyed mutex object by specifying a key value releases the keyed mutex for that
value. The corresponding wait that waits on this signal must be issued in Direct3D 11
with the same key value. Additionally, the Direct3D 11 wait must be issued after this
signal has been issued.
memset(¶ms, 0, sizeof(params));
params.params.keyedmutex.key = key;
memset(¶ms, 0, sizeof(params));
params.params.keyedmutex.key = key;
params.params.keyedmutex.timeoutMs = timeoutMs;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 103
Programming Interface
NvSciBufObj createNvSciBufObject() {
// Raw Buffer Attributes for CUDA
NvSciBufType bufType = NvSciBufType_RawBuffer;
uint64_t rawsize = SIZE;
uint64_t align = 0;
bool cpuaccess_flag = true;
NvSciBufAttrValAccessPerm perm = NvSciBufAccessPerm_ReadWrite;
// Fill in values
NvSciBufAttrKeyValuePair rawbuffattrs[] = {
{ NvSciBufGeneralAttrKey_Types, &bufType, sizeof(bufType) },
{ NvSciBufRawBufferAttrKey_Size, &rawsize, sizeof(rawsize) },
{ NvSciBufRawBufferAttrKey_Align, &align, sizeof(align) },
{ NvSciBufGeneralAttrKey_NeedCpuAccess, &cpuaccess_flag,
sizeof(cpuaccess_flag) },
{ NvSciBufGeneralAttrKey_RequiredPerm, &perm, sizeof(perm) },
{ NvSciBufGeneralAttrKey_GpuId, &gpuid, sizeof(gpuId) },
};
NvSciBufAttrListCreate(NvSciBufModule, &attrListBuffer);
The allocated NvSciBuf memory object can be imported in CUDA using the
NvSciBufObj handle as shown below. Application should query the allocated
NvSciBufObj for attributes required for filling CUDA External Memory Descriptor. Note
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 104
Programming Interface
that the attribute list and NvSciBuf objects should be maintained by the application.
If the NvSciBuf object imported into CUDA is also mapped by other drivers, then the
application must use NvSciSync objects (Refer 3.2.13.5.4 Importing synchronization
objects) as appropriate barriers to maintain coherence between CUDA and the other
drivers.
// Fill up CUDA_EXTERNAL_MEMORY_HANDLE_DESC
cudaExternalMemoryHandleDesc memHandleDesc;
memset(&memHandleDesc, 0, sizeof(memHandleDesc));
memHandleDesc.type = cudaExternalMemoryHandleTypeNvSciBuf;
memHandleDesc.handle.nvSciBufObject = bufferObjRaw;
memHandleDesc.size = ret_size;
cudaImportExternalMemory(&extMemBuffer, &memHandleDesc);
return extMemBuffer;
}
memset(&desc, 0, sizeof(desc));
desc.offset = offset;
desc.size = size;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 105
Programming Interface
shows how to convert NvSciBuf attributes into the corresponding CUDA parameters
when mapping mipmapped arrays onto imported memory objects.
cudaMipmappedArray_t mapMipmappedArrayOntoExternalMemory(cudaExternalMemory_t
extMem, unsigned long long offset, cudaChannelFormatDesc *formatDesc,
cudaExtent *extent, unsigned int flags, unsigned int numLevels) {
cudaMipmappedArray_t mipmap = NULL;
cudaExternalMemoryMipmappedArrayDesc desc = {};
memset(&desc, 0, sizeof(desc));
desc.offset = offset;
desc.formatDesc = *formatDesc;
desc.extent = *extent;
desc.flags = flags;
desc.numLevels = numLevels;
return mipmap;
}
NvSciSyncObj createNvSciSyncObject() {
NvSciSyncObj nvSciSyncObj
int cudaDev0 = 0;
int cudaDev1 = 1;
NvSciSyncAttrList signalerAttrList = NULL;
NvSciSyncAttrList waiterAttrList = NULL;
NvSciSyncAttrList reconciledList = NULL;
NvSciSyncAttrList newConflictList = NULL;
NvSciSyncAttrListCreate(module, &signalerAttrList);
NvSciSyncAttrListCreate(module, &waiterAttrList);
NvSciSyncAttrList unreconciledList[2] = {NULL, NULL};
unreconciledList[0] = signalerAttrList;
unreconciledList[1] = waiterAttrList;
cudaDeviceGetNvSciSyncAttributes(signalerAttrList, cudaDev0,
CUDA_NVSCISYNC_ATTR_SIGNAL);
cudaDeviceGetNvSciSyncAttributes(waiterAttrList, cudaDev1,
CUDA_NVSCISYNC_ATTR_WAIT);
NvSciSyncAttrListReconcile(unreconciledList, 2, &reconciledList,
&newConflictList);
NvSciSyncObjAlloc(reconciledList, &nvSciSyncObj);
return nvSciSyncObj;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 106
Programming Interface
An NvSciSync object (created as above) can be imported into CUDA using the
NvSciSyncObj handle as shown below. Note that ownership of the NvSciSyncObj handle
continues to lie with the application even after it is imported.
memset(&desc, 0, sizeof(desc));
desc.type = cudaExternalSemaphoreHandleTypeNvSciSync;
desc.handle.nvSciSyncObj = nvSciSyncObj;
cudaImportExternalSemaphore(&extSem, &desc);
return extSem;
}
memset(&signalParams, 0, sizeof(signalParams));
signalParams.params.nvSciSync.fence = (void*)fence;
signalParams.flags = 0; //OR cudaExternalSemaphoreSignalSkipNvSciBufMemSync
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 107
Programming Interface
memory synchronization operations (over all the imported NvSciBuf in this process)
that are executed as a part of the wait operation by default are skipped.
memset(&waitParams, 0, sizeof(waitParams));
waitParams.params.nvSciSync.fence = (void*)fence;
waitParams.flags = 0; //OR cudaExternalSemaphoreWaitSkipNvSciBufMemSync
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 108
Programming Interface
Compatible Incompatible
3.4. Compute Modes
On Tesla solutions running Windows Server 2008 and later or Linux, one can set
any device in a system in one of the three following modes using NVIDIA's System
Management Interface (nvidia-smi), which is a tool distributed as part of the driver:
‣ Default compute mode: Multiple host threads can use the device (by calling
cudaSetDevice() on this device, when using the runtime API, or by making
current a context associated to the device, when using the driver API) at the same
time.
‣ Exclusive-process compute mode: Only one CUDA context may be created on the
device across all processes in the system. The context may be current to as many
threads as desired within the process that created that context.
‣ Prohibited compute mode: No CUDA context can be created on the device.
This means, in particular, that a host thread using the runtime API without explicitly
calling cudaSetDevice() might be associated with a device other than device 0 if
device 0 turns out to be in prohibited mode or in exclusive-process mode and used
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 109
Programming Interface
3.5. Mode Switches
GPUs that have a display output dedicate some DRAM memory to the so-called primary
surface, which is used to refresh the display device whose output is viewed by the user.
When users initiate a mode switch of the display by changing the resolution or bit depth
of the display (using NVIDIA control panel or the Display control panel on Windows),
the amount of memory needed for the primary surface changes. For example, if the
user changes the display resolution from 1280x1024x32-bit to 1600x1200x32-bit, the
system must dedicate 7.68 MB to the primary surface rather than 5.24 MB. (Full-screen
graphics applications running with anti-aliasing enabled may require much more
display memory for the primary surface.) On Windows, other events that may initiate
display mode switches include launching a full-screen DirectX application, hitting Alt
+Tab to task switch away from a full-screen DirectX application, or hitting Ctrl+Alt+Del
to lock the computer.
If a mode switch increases the amount of memory needed for the primary surface, the
system may have to cannibalize memory allocations dedicated to CUDA applications.
Therefore, a mode switch results in any call to the CUDA runtime to fail and return an
invalid context error.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 110
Programming Interface
‣ It makes it possible to use these GPUs in cluster nodes with non-NVIDIA integrated
graphics;
‣ It makes these GPUs available via Remote Desktop, both directly and via cluster
management systems that rely on Remote Desktop;
‣ It makes these GPUs available to applications running as a Windows service (i.e., in
Session 0).
However, the TCC mode removes support for any graphics functionality.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 111
Chapter 4.
HARDWARE IMPLEMENTATION
4.1. SIMT Architecture
The multiprocessor creates, manages, schedules, and executes threads in groups of 32
parallel threads called warps. Individual threads composing a warp start together at
the same program address, but they have their own instruction address counter and
register state and are therefore free to branch and execute independently. The term warp
originates from weaving, the first parallel thread technology. A half-warp is either the
first or second half of a warp. A quarter-warp is either the first, second, third, or fourth
quarter of a warp.
When a multiprocessor is given one or more thread blocks to execute, it partitions
them into warps and each warp gets scheduled by a warp scheduler for execution. The
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 112
Hardware Implementation
way a block is partitioned into warps is always the same; each warp contains threads
of consecutive, increasing thread IDs with the first warp containing thread 0. Thread
Hierarchy describes how thread IDs relate to thread indices in the block.
A warp executes one common instruction at a time, so full efficiency is realized when
all 32 threads of a warp agree on their execution path. If threads of a warp diverge via a
data-dependent conditional branch, the warp executes each branch path taken, disabling
threads that are not on that path. Branch divergence occurs only within a warp; different
warps execute independently regardless of whether they are executing common or
disjoint code paths.
The SIMT architecture is akin to SIMD (Single Instruction, Multiple Data) vector
organizations in that a single instruction controls multiple processing elements. A key
difference is that SIMD vector organizations expose the SIMD width to the software,
whereas SIMT instructions specify the execution and branching behavior of a single
thread. In contrast with SIMD vector machines, SIMT enables programmers to write
thread-level parallel code for independent, scalar threads, as well as data-parallel code
for coordinated threads. For the purposes of correctness, the programmer can essentially
ignore the SIMT behavior; however, substantial performance improvements can be
realized by taking care that the code seldom requires threads in a warp to diverge. In
practice, this is analogous to the role of cache lines in traditional code: Cache line size
can be safely ignored when designing for correctness but must be considered in the code
structure when designing for peak performance. Vector architectures, on the other hand,
require the software to coalesce loads into vectors and manage divergence manually.
Prior to Volta, warps used a single program counter shared amongst all 32 threads in the
warp together with an active mask specifying the active threads of the warp. As a result,
threads from the same warp in divergent regions or different states of execution cannot
signal each other or exchange data, and algorithms requiring fine-grained sharing of
data guarded by locks or mutexes can easily lead to deadlock, depending on which warp
the contending threads come from.
Starting with the Volta architecture, Independent Thread Scheduling allows full
concurrency between threads, regardless of warp. With Independent Thread Scheduling,
the GPU maintains execution state per thread, including a program counter and call
stack, and can yield execution at a per-thread granularity, either to make better use of
execution resources or to allow one thread to wait for data to be produced by another.
A schedule optimizer determines how to group active threads from the same warp
together into SIMT units. This retains the high throughput of SIMT execution as in prior
NVIDIA GPUs, but with much more flexibility: threads can now diverge and reconverge
at sub-warp granularity.
Independent Thread Scheduling can lead to a rather different set of threads participating
in the executed code than intended if the developer made assumptions about warp-
synchronicity2 of previous hardware architectures. In particular, any warp-synchronous
code (such as synchronization-free, intra-warp reductions) should be revisited to ensure
compatibility with Volta and beyond. See Compute Capability 7.x for further details.
2
The term warp-synchronous refers to code that implicitly assumes threads in the same warp are synchronized at every
instruction.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 113
Hardware Implementation
Notes
The threads of a warp that are participating in the current instruction are called the
active threads, whereas threads not on the current instruction are inactive (disabled).
Threads can be inactive for a variety of reasons including having exited earlier than
other threads of their warp, having taken a different branch path than the branch path
currently executed by the warp, or being the last threads of a block whose number of
threads is not a multiple of the warp size.
If a non-atomic instruction executed by a warp writes to the same location in global or
shared memory for more than one of the threads of the warp, the number of serialized
writes that occur to that location varies depending on the compute capability of the
device (see Compute Capability 3.x, Compute Capability 5.x, Compute Capability 6.x,
and Compute Capability 7.x), and which thread performs the final write is undefined.
If an atomic instruction executed by a warp reads, modifies, and writes to the same
location in global memory for more than one of the threads of the warp, each read/
modify/write to that location occurs and they are all serialized, but the order in which
they occur is undefined.
4.2. Hardware Multithreading
The execution context (program counters, registers, etc.) for each warp processed by a
multiprocessor is maintained on-chip during the entire lifetime of the warp. Therefore,
switching from one execution context to another has no cost, and at every instruction
issue time, a warp scheduler selects a warp that has threads ready to execute its next
instruction (the active threads of the warp) and issues the instruction to those threads.
In particular, each multiprocessor has a set of 32-bit registers that are partitioned among
the warps, and a parallel data cache or shared memory that is partitioned among the thread
blocks.
The number of blocks and warps that can reside and be processed together on the
multiprocessor for a given kernel depends on the amount of registers and shared
memory used by the kernel and the amount of registers and shared memory available
on the multiprocessor. There are also a maximum number of resident blocks and a
maximum number of resident warps per multiprocessor. These limits as well the amount
of registers and shared memory available on the multiprocessor are a function of the
compute capability of the device and are given in Appendix Compute Capabilities. If
there are not enough registers or shared memory available per multiprocessor to process
at least one block, the kernel will fail to launch.
The total number of warps in a block is as follows:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 114
Hardware Implementation
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 115
Chapter 5.
PERFORMANCE GUIDELINES
5.2. Maximize Utilization
To maximize utilization the application should be structured in a way that it exposes
as much parallelism as possible and efficiently maps this parallelism to the various
components of the system to keep them busy most of the time.
5.2.1. Application Level
At a high level, the application should maximize parallel execution between the host, the
devices, and the bus connecting the host to the devices, by using asynchronous functions
calls and streams as described in Asynchronous Concurrent Execution. It should assign
to each processor the type of work it does best: serial workloads to the host; parallel
workloads to the devices.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 116
Performance Guidelines
For the parallel workloads, at points in the algorithm where parallelism is broken
because some threads need to synchronize in order to share data with each other,
there are two cases: Either these threads belong to the same block, in which case they
should use __syncthreads() and share data through shared memory within the same
kernel invocation, or they belong to different blocks, in which case they must share
data through global memory using two separate kernel invocations, one for writing to
and one for reading from global memory. The second case is much less optimal since it
adds the overhead of extra kernel invocations and global memory traffic. Its occurrence
should therefore be minimized by mapping the algorithm to the CUDA programming
model in such a way that the computations that require inter-thread communication are
performed within a single thread block as much as possible.
5.2.2. Device Level
At a lower level, the application should maximize parallel execution between the
multiprocessors of a device.
Multiple kernels can execute concurrently on a device, so maximum utilization can
also be achieved by using streams to enable enough kernels to execute concurrently as
described in Asynchronous Concurrent Execution.
5.2.3. Multiprocessor Level
At an even lower level, the application should maximize parallel execution between the
various functional units within a multiprocessor.
As described in Hardware Multithreading, a GPU multiprocessor primarily relies on
thread-level parallelism to maximize utilization of its functional units. Utilization is
therefore directly linked to the number of resident warps. At every instruction issue
time, a warp scheduler selects an instruction that is ready to execute. This instruction
can be another independent instruction of the same warp, exploiting instruction-level
parallelism, or more commonly an instruction of another warp, exploiting thread-level
parallelism. If a ready to execute instruction is selected it is issued to the active threads
of the warp. The number of clock cycles it takes for a warp to be ready to execute its next
instruction is called the latency, and full utilization is achieved when all warp schedulers
always have some instruction to issue for some warp at every clock cycle during that
latency period, or in other words, when latency is completely "hidden". The number
of instructions required to hide a latency of L clock cycles depends on the respective
throughputs of these instructions (see Arithmetic Instructions for the throughputs of
various arithmetic instructions). If we assume instructions with maximum throughput, it
is equal to:
‣ 4L for devices of compute capability 5.x, 6.1, 6.2, 7.x and 8.0 since for these devices,
a multiprocessor issues one instruction per warp over one clock cycle for four warps
at a time, as mentioned in Compute Capabilities.
‣ 2L for devices of compute capability 6.0 since for these devices, the two instructions
issued every cycle are one instruction for two different warps.
‣ 8L for devices of compute capability 3.x since for these devices, the eight instructions
issued every cycle are four pairs for four different warps, each pair being for the
same warp.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 117
Performance Guidelines
The most common reason a warp is not ready to execute its next instruction is that the
instruction's input operands are not available yet.
If all input operands are registers, latency is caused by register dependencies, i.e., some
of the input operands are written by some previous instruction(s) whose execution has
not completed yet. In this case, the latency is equal to the execution time of the previous
instruction and the warp schedulers must schedule instructions of other warps during
that time. Execution time varies depending on the instruction. On devices of compute
capability 7.x, for most arithmetic instructions, it is typically 4 clock cycles. This means
that 16 active warps per multiprocessor (4 cycles, 4 warp schedulers) are required to
hide arithmetic instruction latencies (assuming that warps execute instructions with
maximum throughput, otherwise fewer warps are needed). If the individual warps
exhibit instruction-level parallelism, i.e. have multiple independent instructions in their
instruction stream, fewer warps are needed because multiple independent instructions
from a single warp can be issued back to back.
If some input operand resides in off-chip memory, the latency is much higher: typically
hundreds of clock cycles. The number of warps required to keep the warp schedulers
busy during such high latency periods depends on the kernel code and its degree of
instruction-level parallelism. In general, more warps are required if the ratio of the
number of instructions with no off-chip memory operands (i.e., arithmetic instructions
most of the time) to the number of instructions with off-chip memory operands is low
(this ratio is commonly called the arithmetic intensity of the program).
Another reason a warp is not ready to execute its next instruction is that it is waiting
at some memory fence (Memory Fence Functions) or synchronization point (Memory
Fence Functions). A synchronization point can force the multiprocessor to idle as
more and more warps wait for other warps in the same block to complete execution of
instructions prior to the synchronization point. Having multiple resident blocks per
multiprocessor can help reduce idling in this case, as warps from different blocks do not
need to wait for each other at synchronization points.
The number of blocks and warps residing on each multiprocessor for a given kernel
call depends on the execution configuration of the call (Execution Configuration), the
memory resources of the multiprocessor, and the resource requirements of the kernel as
described in Hardware Multithreading. Register and shared memory usage are reported
by the compiler when compiling with the -ptxas-options=-v option.
The total amount of shared memory required for a block is equal to the sum of the
amount of statically allocated shared memory and the amount of dynamically allocated
shared memory.
The number of registers used by a kernel can have a significant impact on the number
of resident warps. For example, for devices of compute capability 6.x, if a kernel uses
64 registers and each block has 512 threads and requires very little shared memory,
then two blocks (i.e., 32 warps) can reside on the multiprocessor since they require
2x512x64 registers, which exactly matches the number of registers available on the
multiprocessor. But as soon as the kernel uses one more register, only one block (i.e.,
16 warps) can be resident since two blocks would require 2x512x65 registers, which are
more registers than are available on the multiprocessor. Therefore, the compiler attempts
to minimize register usage while keeping register spilling (see Device Memory Accesses)
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 118
Performance Guidelines
and the number of instructions to a minimum. Register usage can be controlled using
the maxrregcount compiler option or launch bounds as described in Launch Bounds.
The register file is organized as 32-bit registers. So, each variable stored in a register
needs at least one 32-bit register, e.g. a double variable uses two 32-bit registers.
The effect of execution configuration on performance for a given kernel call generally
depends on the kernel code. Experimentation is therefore recommended. Applications
can also parameterize execution configurations based on register file size and shared
memory size, which depends on the compute capability of the device, as well as on the
number of multiprocessors and memory bandwidth of the device, all of which can be
queried using the runtime (see reference manual).
The number of threads per block should be chosen as a multiple of the warp size to
avoid wasting computing resources with under-populated warps as much as possible.
5.2.3.1. Occupancy Calculator
Several API functions exist to assist programmers in choosing thread block size based on
register and shared memory requirements.
‣ The occupancy calculator API,
cudaOccupancyMaxActiveBlocksPerMultiprocessor, can provide an
occupancy prediction based on the block size and shared memory usage of a kernel.
This function reports occupancy in terms of the number of concurrent thread blocks
per multiprocessor.
‣ Note that this value can be converted to other metrics. Multiplying by
the number of warps per block yields the number of concurrent warps
per multiprocessor; further dividing concurrent warps by max warps per
multiprocessor gives the occupancy as a percentage.
‣ The occupancy-based launch configurator APIs,
cudaOccupancyMaxPotentialBlockSize and
cudaOccupancyMaxPotentialBlockSizeVariableSMem, heuristically calculate
an execution configuration that achieves the maximum multiprocessor-level
occupancy.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 119
Performance Guidelines
The following code sample calculates the occupancy of MyKernel. It then reports the
occupancy level with the ratio between concurrent warps versus maximum warps per
multiprocessor.
// Device code
__global__ void MyKernel(int *d, int *a, int *b)
{
int idx = threadIdx.x + blockIdx.x * blockDim.x;
d[idx] = a[idx] * b[idx];
}
// Host code
int main()
{
int numBlocks; // Occupancy in terms of active blocks
int blockSize = 32;
cudaGetDevice(&device);
cudaGetDeviceProperties(&prop, device);
cudaOccupancyMaxActiveBlocksPerMultiprocessor(
&numBlocks,
MyKernel,
blockSize,
0);
std::cout << "Occupancy: " << (double)activeWarps / maxWarps * 100 << "%" <<
std::endl;
return 0;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 120
Performance Guidelines
// Host code
int launchMyKernel(int *array, int arrayCount)
{
int blockSize; // The launch configurator returned block size
int minGridSize; // The minimum grid size needed to achieve the
// maximum occupancy for a full device
// launch
int gridSize; // The actual grid size needed, based on input
// size
cudaOccupancyMaxPotentialBlockSize(
&minGridSize,
&blockSize,
(void*)MyKernel,
0,
arrayCount);
return 0;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 121
Performance Guidelines
L2 cache available on devices of compute capability 2.x and higher, texture cache and
constant cache available on all devices).
Shared memory is equivalent to a user-managed cache: The application explicitly
allocates and accesses it. As illustrated in CUDA Runtime, a typical programming
pattern is to stage data coming from device memory into shared memory; in other
words, to have each thread of a block:
‣ Load data from device memory to shared memory,
‣ Synchronize with all the other threads of the block so that each thread can safely
read shared memory locations that were populated by different threads,
‣ Process the data in shared memory,
‣ Synchronize again if necessary to make sure that shared memory has been updated
with the results,
‣ Write the results back to device memory.
For some applications (e.g., for which global memory access patterns are data-
dependent), a traditional hardware-managed cache is more appropriate to exploit data
locality. As mentioned in #unique_211, Compute Capability 7.x and Compute Capability
8.0, for devices of compute capability 3.x, 7.x and 8.0, the same on-chip memory is used
for both L1 and shared memory, and how much of it is dedicated to L1 versus shared
memory is configurable for each kernel call.
The throughput of memory accesses by a kernel can vary by an order of magnitude
depending on access pattern for each type of memory. The next step in maximizing
memory throughput is therefore to organize memory accesses as optimally as possible
based on the optimal memory access patterns described in Device Memory Accesses.
This optimization is especially important for global memory accesses as global memory
bandwidth is low compared to available on-chip bandwidths and arithmetic instruction
throughput, so non-optimal global memory accesses generally have a high impact on
performance.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 122
Performance Guidelines
mapped memory. For maximum performance, these memory accesses must be coalesced
as with accesses to global memory (see Device Memory Accesses). Assuming that they
are and that the mapped memory is read or written only once, using mapped page-
locked memory instead of explicit copies between device and host memory can be a win
for performance.
On integrated systems where device memory and host memory are physically the same,
any copy between host and device memory is superfluous and mapped page-locked
memory should be used instead. Applications may query a device is integrated by
checking that the integrated device property (see Device Enumeration) is equal to 1.
Global Memory
Global memory resides in device memory and device memory is accessed via 32-, 64-,
or 128-byte memory transactions. These memory transactions must be naturally aligned:
Only the 32-, 64-, or 128-byte segments of device memory that are aligned to their size
(i.e., whose first address is a multiple of their size) can be read or written by memory
transactions.
When a warp executes an instruction that accesses global memory, it coalesces the
memory accesses of the threads within the warp into one or more of these memory
transactions depending on the size of the word accessed by each thread and the
distribution of the memory addresses across the threads. In general, the more
transactions are necessary, the more unused words are transferred in addition to the
words accessed by the threads, reducing the instruction throughput accordingly. For
example, if a 32-byte memory transaction is generated for each thread's 4-byte access,
throughput is divided by 8.
How many transactions are necessary and how much throughput is ultimately
affected varies with the compute capability of the device. Compute Capability 3.x,
Compute Capability 5.x, Compute Capability 6.x, Compute Capability 7.x and Compute
Capability 8.0 give more details on how global memory accesses are handled for various
compute capabilities.
To maximize global memory throughput, it is therefore important to maximize
coalescing by:
‣ Following the most optimal access patterns based on Compute Capability 3.x,
Compute Capability 5.x, Compute Capability 6.x, Compute Capability 7.x and
Compute Capability 8.0
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 123
Performance Guidelines
‣ Using data types that meet the size and alignment requirement detailed in the
section Size and Alignment Requirement below,
‣ Padding data in some cases, for example, when accessing a two-dimensional array
as described in the section Two-Dimensional Arrays below.
or
struct __align__(16) {
float x;
float y;
float z;
};
Any address of a variable residing in global memory or returned by one of the memory
allocation routines from the driver or runtime API is always aligned to at least 256 bytes.
Reading non-naturally aligned 8-byte or 16-byte words produces incorrect results (off by
a few words), so special care must be taken to maintain alignment of the starting address
of any value or array of values of these types. A typical case where this might be easily
overlooked is when using some custom global memory allocation scheme, whereby the
allocations of multiple arrays (with multiple calls to cudaMalloc() or cuMemAlloc())
is replaced by the allocation of a single large block of memory partitioned into multiple
arrays, in which case the starting address of each array is offset from the block's starting
address.
Two-Dimensional Arrays
A common global memory access pattern is when each thread of index (tx,ty) uses the
following address to access one element of a 2D array of width width, located at address
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 124
Performance Guidelines
BaseAddress of type type* (where type meets the requirement described in Maximize
Utilization):
BaseAddress + width * ty + tx
For these accesses to be fully coalesced, both the width of the thread block and the width
of the array must be a multiple of the warp size.
In particular, this means that an array whose width is not a multiple of this size will be
accessed much more efficiently if it is actually allocated with a width rounded up to the
closest multiple of this size and its rows padded accordingly. The cudaMallocPitch()
and cuMemAllocPitch() functions and associated memory copy functions described in
the reference manual enable programmers to write non-hardware-dependent code to
allocate arrays that conform to these constraints.
Local Memory
Local memory accesses only occur for some automatic variables as mentioned in
Variable Memory Space Specifiers. Automatic variables that the compiler is likely to
place in local memory are:
‣ Arrays for which it cannot determine that they are indexed with constant quantities,
‣ Large structures or arrays that would consume too much register space,
‣ Any variable if the kernel uses more registers than available (this is also known as
register spilling).
Inspection of the PTX assembly code (obtained by compiling with the -ptx or-
keep option) will tell if a variable has been placed in local memory during the first
compilation phases as it will be declared using the .local mnemonic and accessed
using the ld.local and st.local mnemonics. Even if it has not, subsequent
compilation phases might still decide otherwise though if they find it consumes too
much register space for the targeted architecture: Inspection of the cubin object using
cuobjdump will tell if this is the case. Also, the compiler reports total local memory
usage per kernel (lmem) when compiling with the --ptxas-options=-v option. Note
that some mathematical functions have implementation paths that might access local
memory.
The local memory space resides in device memory, so local memory accesses have the
same high latency and low bandwidth as global memory accesses and are subject to the
same requirements for memory coalescing as described in Device Memory Accesses.
Local memory is however organized such that consecutive 32-bit words are accessed
by consecutive thread IDs. Accesses are therefore fully coalesced as long as all threads
in a warp access the same relative address (e.g., same index in an array variable, same
member in a structure variable).
On some devices of compute capability 3.x local memory accesses are always cached in
L1 and L2 in the same way as global memory accesses (see Compute Capability 3.x).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 125
Performance Guidelines
On devices of compute capability 5.x and 6.x, local memory accesses are always cached
in L2 in the same way as global memory accesses (see Compute Capability 5.x and
Compute Capability 6.x).
Shared Memory
Because it is on-chip, shared memory has much higher bandwidth and much lower
latency than local or global memory.
To achieve high bandwidth, shared memory is divided into equally-sized memory
modules, called banks, which can be accessed simultaneously. Any memory read or
write request made of n addresses that fall in n distinct memory banks can therefore be
serviced simultaneously, yielding an overall bandwidth that is n times as high as the
bandwidth of a single module.
However, if two addresses of a memory request fall in the same memory bank, there is a
bank conflict and the access has to be serialized. The hardware splits a memory request
with bank conflicts into as many separate conflict-free requests as necessary, decreasing
throughput by a factor equal to the number of separate memory requests. If the number
of separate memory requests is n, the initial memory request is said to cause n-way bank
conflicts.
To get maximum performance, it is therefore important to understand how memory
addresses map to memory banks in order to schedule the memory requests so as
to minimize bank conflicts. This is described in Compute Capability 3.x, Compute
Capability 5.x, Compute Capability 6.x, Compute Capability 7.x, and Compute
Capability 8.0 for devices of compute capability 3.x, 5.x, 6.x, 7.x and 8.0, respectively.
Constant Memory
The constant memory space resides in device memory and is cached in the constant
cache.
A request is then split into as many separate requests as there are different memory
addresses in the initial request, decreasing throughput by a factor equal to the number
of separate requests.
The resulting requests are then serviced at the throughput of the constant cache in case
of a cache hit, or at the throughput of device memory otherwise.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 126
Performance Guidelines
Also, it is designed for streaming fetches with a constant latency; a cache hit reduces
DRAM bandwidth demand but not fetch latency.
Reading device memory through texture or surface fetching present some benefits
that can make it an advantageous alternative to reading device memory from global or
constant memory:
‣ If the memory reads do not follow the access patterns that global or constant
memory reads must follow to get good performance, higher bandwidth can be
achieved providing that there is locality in the texture fetches or surface reads;
‣ Addressing calculations are performed outside the kernel by dedicated units;
‣ Packed data may be broadcast to separate variables in a single operation;
‣ 8-bit and 16-bit integer input data may be optionally converted to 32 bit floating-
point values in the range [0.0, 1.0] or [-1.0, 1.0] (see Texture Memory).
5.4.1. Arithmetic Instructions
Table 3 gives the throughputs of the arithmetic instructions that are natively supported
in hardware for devices of various compute capabilities.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 127
Performance Guidelines
Compute Capability
3.5, 3.7 5.0, 5.2 5.3 6.0 6.1 6.2 7.x 8.0
16-bit
floating-
point
3
add, N/A N/A 256 128 2 256 128 256
multiply,
multiply-
add
32-bit
floating-
point
add, 192 128 128 64 128 128 64 64
multiply,
multiply-
add
64-bit
floating-
point
4 5
add, 64 4 4 32 4 4 32 32
multiply,
multiply-
add
32-bit
floating-
point
reciprocal,
reciprocal
square
root,
base-2
logarithm 32 32 32 16 32 32 16 16
(__log2f),
base 2
exponential
(exp2f),
sine
(__sinf),
cosine
(__cosf)
32-bit
integer
add,
extended-
precision
160 128 128 64 128 128 64 64
add,
subtract,
extended-
precision
subtract
3
128 for __nv_bfloat16
4
8 for GeForce GPUs, except for Titan GPUs
5
2 for compute capability 7.5 GPUs
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 128
Performance Guidelines
Compute Capability
3.5, 3.7 5.0, 5.2 5.3 6.0 6.1 6.2 7.x 8.0
32-bit
integer
multiply,
multiply-
Multiple Multiple Multiple Multiple Multiple 6 7
add, 32 64 64
instruct. instruct. instruct. instruct. instruct.
extended-
precision
multiply-
add
24-bit
integer Multiple Multiple Multiple Multiple Multiple Multiple Multiple Multiple
multiply instruct. instruct. instruct. instruct. instruct. instruct. instruct. instruct.
(__[u]mul24)
32-bit
8
integer 64 64 64 32 64 64 64 64
shift
compare,
minimum, 160 64 64 32 64 64 64 64
maximum
32-bit
integer
32 64 64 32 64 64 16 16
bit
reverse
Bit field
Multiple Multiple
extract/ 32 64 64 32 64 64
Instruct. Instruct.
insert
32-bit
bitwise
160 128 128 64 128 128 64 64
AND,
OR, XOR
count of
leading
zeros,
most 32 32 32 16 32 32 16 16
significant
non-
sign bit
population
32 32 32 16 32 32 16 16
count
warp 9
32 32 32 32 32 32 32 32
shuffle
warp Multiple Multiple Multiple Multiple Multiple Multiple Multiple
16
reduce instruct. instruct. instruct. instruct. instruct. instruct. instruct.
6
32 for extended-precision
7
32 for extended-precision
8
32 for GeForce GPUs, except for Titan GPUs
9
16 for compute capabilities 7.5 GPUs
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 129
Performance Guidelines
Compute Capability
3.5, 3.7 5.0, 5.2 5.3 6.0 6.1 6.2 7.x 8.0
sum of
absolute 32 64 64 32 64 64 64 64
difference
SIMD
video Multiple Multiple Multiple Multiple Multiple Multiple Multiple
160
instructions instruct. instruct. instruct. instruct. instruct. instruct. instruct.
vabsdiff2
SIMD
video Multiple Multiple Multiple Multiple Multiple
160 64 64
instructions instruct. instruct. instruct. instruct. instruct.
vabsdiff4
All other
SIMD Multiple Multiple Multiple Multiple Multiple Multiple Multiple
32
video instruct. instruct. instruct. instruct. instruct. instruct. instruct.
instructions
Type
conversions
from 8-
bit and
128 32 32 16 32 32 16 16
16-bit
integer
to 32-
bit types
Type
conversions
10 11
from and 32 4 4 16 4 4 16 16
to 64-
bit types
All other
type 32 32 32 16 32 32 16 16
conversions
Other instructions and functions are implemented on top of the native instructions.
The implementation may be different for devices of different compute capabilities, and
the number of native instructions after compilation may fluctuate with every compiler
version. For complicated functions, there can be multiple code paths depending on
input. cuobjdump can be used to inspect a particular implementation in a cubin object.
The implementation of some functions are readily available on the CUDA header files
(math_functions.h, device_functions.h, ...).
In general, code compiled with -ftz=true (denormalized numbers are flushed to zero)
tends to have higher performance than code compiled with -ftz=false. Similarly,
code compiled with -prec div=false (less precise division) tends to have higher
performance code than code compiled with -prec div=true, and code compiled
with -prec-sqrt=false (less precise square root) tends to have higher performance
10
8 for GeForce GPUs, except for Titan GPUs
11
2 for compute capabilities 7.5 GPUs
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 130
Performance Guidelines
than code compiled with -prec-sqrt=true. The nvcc user manual describes these
compilation flags in more details.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 131
Performance Guidelines
Due to the lengthy computations and use of local memory in the slow path, the
throughput of these trigonometric functions is lower by one order of magnitude when
the slow path reduction is required as opposed to the fast path reduction.
Integer Arithmetic
Integer division and modulo operation are costly as they compile to up to 20
instructions. They can be replaced with bitwise operations in some cases: If n is a power
of 2, (i/n) is equivalent to (i>>log2(n)) and (i%n) is equivalent to (i&(n-1)); the
compiler will perform these conversions if n is literal.
__brev and __popc map to a single instruction and __brevll and __popcll to a few
instructions.
__[u]mul24 are legacy intrinsic functions that no longer have any reason to be used.
The intrinsic __halves2half2 is provided to convert two half precision values to the
half2 datatype.
Type Conversion
Sometimes, the compiler must insert conversion instructions, introducing additional
execution cycles. This is the case for:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 132
Performance Guidelines
follow different execution paths). If this happens, the different executions paths have to
be serialized, increasing the total number of instructions executed for this warp.
To obtain best performance in cases where the control flow depends on the thread
ID, the controlling condition should be written so as to minimize the number of
divergent warps. This is possible because the distribution of the warps across the block
is deterministic as mentioned in SIMT Architecture. A trivial example is when the
controlling condition only depends on (threadIdx / warpSize) where warpSize is
the warp size. In this case, no warp diverges since the controlling condition is perfectly
aligned with the warps.
Sometimes, the compiler may unroll loops or it may optimize out short if or switch
blocks by using branch predication instead, as detailed below. In these cases, no warp
can ever diverge. The programmer can also control loop unrolling using the #pragma
unroll directive (see #pragma unroll).
When using branch predication none of the instructions whose execution depends on
the controlling condition gets skipped. Instead, each of them is associated with a per-
thread condition code or predicate that is set to true or false based on the controlling
condition and although each of these instructions gets scheduled for execution, only
the instructions with a true predicate are actually executed. Instructions with a false
predicate do not write results, and also do not evaluate addresses or read operands.
5.4.3. Synchronization Instruction
Throughput for __syncthreads() is 128 operations per clock cycle for devices of
compute capability 3.x, 32 operations per clock cycle for devices of compute capability
6.0, 16 operations per clock cycle for devices of compute capability 7.x as well as 8.0 and
64 operations per clock cycle for devices of compute capability 5.x, 6.1 and 6.2.
Note that __syncthreads() can impact performance by forcing the multiprocessor to
idle as detailed in Device Memory Accesses.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 133
Appendix A.
CUDA-ENABLED GPUS
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 134
Appendix B.
C++ LANGUAGE EXTENSIONS
B.1.1. __global__
The __global__ execution space specifier declares a function as being a kernel. Such a
function is:
B.1.2. __device__
The __device__ execution space specifier declares a function that is:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 135
C++ Language Extensions
B.1.3. __host__
The __host__ execution space specifier declares a function that is:
B.1.4. Undefined behavior
A 'cross-execution space' call has undefined behavior when:
12
When the enclosing __host__ function is a template, nvcc may currently fail to issue a diagnostic message in some cases;
this behavior may change in the future.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 136
C++ Language Extensions
The __forceinline__ function qualifier can be used to force the compiler to inline the
function.
The __noinline__ and __forceinline__ function qualifiers cannot be used together,
and neither function qualifier can be applied to an inline function.
B.2.1. __device__
The __device__ memory space specifier declares a variable that resides on the device.
At most one of the other memory space specifiers defined in the next three sections may
be used together with __device__ to further denote which memory space the variable
belongs to. If none of them is present, the variable:
B.2.2. __constant__
The __constant__ memory space specifier, optionally used together with __device__,
declares a variable that:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 137
C++ Language Extensions
B.2.3. __shared__
The __shared__ memory space specifier, optionally used together with __device__,
declares a variable that:
the size of the array is determined at launch time (see Execution Configuration). All
variables declared in this fashion, start at the same address in memory, so that the layout
of the variables in the array must be explicitly managed through offsets. For example, if
one wants the equivalent of
short array0[128];
float array1[64];
int array2[256];
in dynamically allocated shared memory, one could declare and initialize the arrays the
following way:
extern __shared__ float array[];
__device__ void func() // __device__ or __global__ function
{
short* array0 = (short*)array;
float* array1 = (float*)&array0[128];
int* array2 = (int*)&array1[64];
}
Note that pointers need to be aligned to the type they point to, so the following code, for
example, does not work since array1 is not aligned to 4 bytes.
extern __shared__ float array[];
__device__ void func() // __device__ or __global__ function
{
short* array0 = (short*)array;
float* array1 = (float*)&array0[127];
}
Alignment requirements for the built-in vector types are listed in Table 4.
B.2.4. __managed__
The __managed__ memory space specifier, optionally used together with __device__,
declares a variable that:
‣ Can be referenced from both device and host code, e.g., its address can be taken or it
can be read or written directly from a device or host function.
‣ Has the lifetime of an application.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 138
C++ Language Extensions
B.2.5. __restrict__
nvcc supports restricted pointers via the __restrict__ keyword.
Restricted pointers were introduced in C99 to alleviate the aliasing problem that exists in
C-type languages, and which inhibits all kind of optimization from code re-ordering to
common sub-expression elimination.
Here is an example subject to the aliasing issue, where use of restricted pointer can help
the compiler to reduce the number of instructions:
void foo(const float* a,
const float* b,
float* c)
{
c[0] = a[0] * b[0];
c[1] = a[0] * b[0];
c[2] = a[0] * b[0] * a[1];
c[3] = a[0] * a[1];
c[4] = a[0] * b[0];
c[5] = b[0];
...
}
In C-type languages, the pointers a, b, and c may be aliased, so any write through c
could modify elements of a or b. This means that to guarantee functional correctness, the
compiler cannot load a[0] and b[0] into registers, multiply them, and store the result
to both c[0] and c[1], because the results would differ from the abstract execution
model if, say, a[0] is really the same location as c[0]. So the compiler cannot take
advantage of the common sub-expression. Likewise, the compiler cannot just reorder the
computation of c[4] into the proximity of the computation of c[0] and c[1] because
the preceding write to c[3] could change the inputs to the computation of c[4].
By making a, b, and c restricted pointers, the programmer asserts to the compiler that
the pointers are in fact not aliased, which in this case means writes through c would
never overwrite elements of a or b. This changes the function prototype as follows:
void foo(const float* __restrict__ a,
const float* __restrict__ b,
float* __restrict__ c);
Note that all pointer arguments need to be made restricted for the compiler optimizer
to derive any benefit. With the __restrict__ keywords added, the compiler can now
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 139
C++ Language Extensions
The effects here are a reduced number of memory accesses and reduced number of
computations. This is balanced by an increase in register pressure due to "cached" loads
and common sub-expressions.
Since register pressure is a critical issue in many CUDA codes, use of restricted pointers
can have negative performance impact on CUDA code, due to reduced occupancy.
Type Alignment
char1, uchar1 1
char2, uchar2 2
char3, uchar3 1
char4, uchar4 4
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 140
C++ Language Extensions
Type Alignment
short1, ushort1 2
short2, ushort2 4
short3, ushort3 2
short4, ushort4 8
int1, uint1 4
int2, uint2 8
int3, uint3 4
int4, uint4 16
long4, ulong4 16
longlong1, ulonglong1 8
longlong2, ulonglong2 16
longlong3, ulonglong3 8
longlong4, ulonglong4 16
float1 4
float2 8
float3 4
float4 16
double1 8
double2 16
double3 8
double4 16
B.3.2. dim3
This type is an integer vector type based on uint3 that is used to specify dimensions.
When defining a variable of type dim3, any component left unspecified is initialized to 1.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 141
C++ Language Extensions
B.4. Built-in Variables
Built-in variables specify the grid and block dimensions and the block and thread
indices. They are only valid within functions that are executed on the device.
B.4.1. gridDim
This variable is of type dim3 (see dim3) and contains the dimensions of the grid.
B.4.2. blockIdx
This variable is of type uint3 (see char, short, int, long, longlong, float, double) and
contains the block index within the grid.
B.4.3. blockDim
This variable is of type dim3 (see dim3) and contains the dimensions of the block.
B.4.4. threadIdx
This variable is of type uint3 (see char, short, int, long, longlong, float, double ) and
contains the thread index within the block.
B.4.5. warpSize
This variable is of type int and contains the warp size in threads (see SIMT Architecture
for the definition of a warp).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 142
C++ Language Extensions
Memory fence functions can be used to enforce some ordering on memory accesses. The
memory fence functions differ in the scope in which the orderings are enforced but they
are independent of the accessed memory space (shared memory, global memory, page-
locked host memory, and the memory of a peer device).
void __threadfence_block();
ensures that:
‣ All writes to all memory made by the calling thread before the call to
__threadfence_block() are observed by all threads in the block of the calling
thread as occurring before all writes to all memory made by the calling thread after
the call to __threadfence_block();
‣ All reads from all memory made by the calling thread before the call to
__threadfence_block() are ordered before all reads from all memory made by
the calling thread after the call to __threadfence_block().
void __threadfence();
acts as __threadfence_block() for all threads in the block of the calling thread and
also ensures that no writes to all memory made by the calling thread after the call to
__threadfence() are observed by any thread in the device as occurring before any
write to all memory made by the calling thread before the call to __threadfence().
Note that for this ordering guarantee to be true, the observing threads must truly
observe the memory and not cached versions of it; this is ensured by using the
volatile keyword as detailed in Volatile Qualifier.
void __threadfence_system();
acts as __threadfence_block() for all threads in the block of the calling thread and
also ensures that all writes to all memory made by the calling thread before the call to
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 143
C++ Language Extensions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 144
C++ Language Extensions
the code sample below, the visibility of memory operations on the result variable is
ensured by declaring it as volatile (see Volatile Qualifier).
if (threadIdx.x == 0) {
if (isLastBlockDone) {
if (threadIdx.x == 0) {
B.6. Synchronization Functions
void __syncthreads();
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 145
C++ Language Extensions
waits until all threads in the thread block have reached this point and all global and
shared memory accesses made by these threads prior to __syncthreads() are visible
to all threads in the block.
__syncthreads() is used to coordinate communication between the threads of the
same block. When some threads within a block access the same addresses in shared
or global memory, there are potential read-after-write, write-after-read, or write-after-
write hazards for some of these memory accesses. These data hazards can be avoided by
synchronizing threads in-between these accesses.
__syncthreads() is allowed in conditional code but only if the conditional evaluates
identically across the entire thread block, otherwise the code execution is likely to hang
or produce unintended side effects.
Devices of compute capability 2.x and higher support three variations of
__syncthreads() described below.
int __syncthreads_count(int predicate);
will cause the executing thread to wait until all warp lanes named in mask have
executed a __syncwarp() (with the same mask) before resuming execution. All non-
exited threads named in mask must execute a corresponding __syncwarp() with the
same mask, or the result is undefined.
Executing __syncwarp() guarantees memory ordering among threads participating in
the barrier. Thus, threads within a warp that wish to communicate via memory can store
to memory, execute __syncwarp(), and then safely read values stored by other threads
in the warp.
For .target sm_6x or below, all threads in mask must execute the same
__syncwarp() in convergence, and the union of all values in mask must be equal to
the active mask. Otherwise, the behavior is undefined.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 146
C++ Language Extensions
B.7. Mathematical Functions
The reference manual lists all C/C++ standard library mathematical functions that are
supported in device code and all intrinsic functions that are only supported in device
code.
Mathematical Functions provides accuracy information for some of these functions
when relevant.
B.8. Texture Functions
Texture objects are described in Texture Object API
Texture references are described in Texture Reference API
Texture fetching is described in Texture Fetching.
fetches from the region of linear memory specified by the one-dimensional texture
object texObj using integer texture coordinate x. tex1Dfetch() only works with non-
normalized coordinates, so only the border and clamp addressing modes are supported.
It does not perform any texture filtering. For integer types, it may optionally promote
the integer to single-precision floating point.
B.8.1.2. tex1D()
template<class T>
T tex1D(cudaTextureObject_t texObj, float x);
fetches from the CUDA array specified by the one-dimensional texture object texObj
using texture coordinate x.
B.8.1.3. tex1DLod()
template<class T>
T tex1DLod(cudaTextureObject_t texObj, float x, float level);
fetches from the CUDA array specified by the one-dimensional texture object texObj
using texture coordinate x at the level-of-detail level.
B.8.1.4. tex1DGrad()
template<class T>
T tex1DGrad(cudaTextureObject_t texObj, float x, float dx, float dy);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 147
C++ Language Extensions
fetches from the CUDA array specified by the one-dimensional texture object texObj
using texture coordinate x. The level-of-detail is derived from the X-gradient dx and Y-
gradient dy.
B.8.1.5. tex2D()
template<class T>
T tex2D(cudaTextureObject_t texObj, float x, float y);
fetches from the CUDA array or the region of linear memory specified by the two-
dimensional texture object texObj using texture coordinate (x,y).
B.8.1.6. tex2DLod()
template<class T>
tex2DLod(cudaTextureObject_t texObj, float x, float y, float level);
fetches from the CUDA array or the region of linear memory specified by the two-
dimensional texture object texObj using texture coordinate (x,y) at level-of-detail
level.
B.8.1.7. tex2DGrad()
template<class T>
T tex2DGrad(cudaTextureObject_t texObj, float x, float y,
float2 dx, float2 dy);
fetches from the CUDA array specified by the two-dimensional texture object texObj
using texture coordinate (x,y). The level-of-detail is derived from the dx and dy
gradients.
B.8.1.8. tex3D()
template<class T>
T tex3D(cudaTextureObject_t texObj, float x, float y, float z);
fetches from the CUDA array specified by the three-dimensional texture object texObj
using texture coordinate (x,y,z).
B.8.1.9. tex3DLod()
template<class T>
T tex3DLod(cudaTextureObject_t texObj, float x, float y, float z, float level);
fetches from the CUDA array or the region of linear memory specified by the three-
dimensional texture object texObj using texture coordinate (x,y,z) at level-of-detail
level.
B.8.1.10. tex3DGrad()
template<class T>
T tex3DGrad(cudaTextureObject_t texObj, float x, float y, float z,
float4 dx, float4 dy);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 148
C++ Language Extensions
fetches from the CUDA array specified by the three-dimensional texture object texObj
using texture coordinate (x,y,z) at a level-of-detail derived from the X and Y gradients
dx and dy.
B.8.1.11. tex1DLayered()
template<class T>
T tex1DLayered(cudaTextureObject_t texObj, float x, int layer);
fetches from the CUDA array specified by the one-dimensional texture object texObj
using texture coordinate x and index layer, as described in Layered Textures
B.8.1.12. tex1DLayeredLod()
template<class T>
T tex1DLayeredLod(cudaTextureObject_t texObj, float x, int layer, float level);
fetches from the CUDA array specified by the one-dimensional layered texture at layer
layer using texture coordinate x and level-of-detail level.
B.8.1.13. tex1DLayeredGrad()
template<class T>
T tex1DLayeredGrad(cudaTextureObject_t texObj, float x, int layer,
float dx, float dy);
fetches from the CUDA array specified by the one-dimensional layered texture at layer
layer using texture coordinate x and a level-of-detail derived from the dx and dy
gradients.
B.8.1.14. tex2DLayered()
template<class T>
T tex2DLayered(cudaTextureObject_t texObj,
float x, float y, int layer);
fetches from the CUDA array specified by the two-dimensional texture object texObj
using texture coordinate (x,y) and index layer, as described in Layered Textures.
B.8.1.15. tex2DLayeredLod()
template<class T>
T tex2DLayeredLod(cudaTextureObject_t texObj, float x, float y, int layer,
float level);
fetches from the CUDA array specified by the two-dimensional layered texture at layer
layer using texture coordinate (x,y).
B.8.1.16. tex2DLayeredGrad()
template<class T>
T tex2DLayeredGrad(cudaTextureObject_t texObj, float x, float y, int layer,
float2 dx, float2 dy);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 149
C++ Language Extensions
fetches from the CUDA array specified by the two-dimensional layered texture at layer
layer using texture coordinate (x,y) and a level-of-detail derived from the dx and dy
X and Y gradients.
B.8.1.17. texCubemap()
template<class T>
T texCubemap(cudaTextureObject_t texObj, float x, float y, float z);
fetches the CUDA array specified by the three-dimensional texture object texObj using
texture coordinate (x,y,z), as described in Cubemap Textures.
B.8.1.18. texCubemapLod()
template<class T>
T texCubemapLod(cudaTextureObject_t texObj, float x, float, y, float z,
float level);
fetches from the CUDA array specified by the three-dimensional texture object texObj
using texture coordinate (x,y,z) as described in Cubemap Textures. The level-of-detail
used is given by level.
B.8.1.19. texCubemapLayered()
template<class T>
T texCubemapLayered(cudaTextureObject_t texObj,
float x, float y, float z, int layer);
fetches from the CUDA array specified by the cubemap layered texture object texObj
using texture coordinates (x,y,z), and index layer, as described in Cubemap Layered
Textures.
B.8.1.20. texCubemapLayeredLod()
template<class T>
T texCubemapLayeredLod(cudaTextureObject_t texObj, float x, float y, float z,
int layer, float level);
fetches from the CUDA array specified by the cubemap layered texture object texObj
using texture coordinate (x,y,z) and index layer, as described in Cubemap Layered
Textures, at level-of-detail level level.
B.8.1.21. tex2Dgather()
template<class T>
T tex2Dgather(cudaTextureObject_t texObj,
float x, float y, int comp = 0);
fetches from the CUDA array specified by the 2D texture object texObj using texture
coordinates x and y and the comp parameter as described in Texture Gather.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 150
C++ Language Extensions
float tex1Dfetch(
texture<unsigned char, cudaTextureType1D,
cudaReadModeNormalizedFloat> texRef,
int x);
float tex1Dfetch(
texture<signed char, cudaTextureType1D,
cudaReadModeNormalizedFloat> texRef,
int x);
float tex1Dfetch(
texture<unsigned short, cudaTextureType1D,
cudaReadModeNormalizedFloat> texRef,
int x);
float tex1Dfetch(
texture<signed short, cudaTextureType1D,
cudaReadModeNormalizedFloat> texRef,
int x);
fetches from the region of linear memory bound to the one-dimensional texture
reference texRef using integer texture coordinate x. tex1Dfetch() only works with
non-normalized coordinates, so only the border and clamp addressing modes are
supported. It does not perform any texture filtering. For integer types, it may optionally
promote the integer to single-precision floating point.
Besides the functions shown above, 2-, and 4-tuples are supported; for example:
float4 tex1Dfetch(
texture<uchar4, cudaTextureType1D,
cudaReadModeNormalizedFloat> texRef,
int x);
fetches from the region of linear memory bound to texture reference texRef using
texture coordinate x.
B.8.2.2. tex1D()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex1D(texture<DataType, cudaTextureType1D, readMode> texRef,
float x);
fetches from the CUDA array bound to the one-dimensional texture reference texRef
using texture coordinate x. Type is equal to DataType except when readMode is equal
to cudaReadModeNormalizedFloat (see Texture Reference API), in which case Type is
equal to the matching floating-point type.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 151
C++ Language Extensions
B.8.2.3. tex1DLod()
template<class DataType, enum
cudaTextureReadMode readMode>
Type tex1DLod(texture<DataType, cudaTextureType1D, readMode> texRef, float x,
float level);
fetches from the CUDA array bound to the one-dimensional texture reference texRef
using texture coordinate x. The level-of-detail is given by level. Type is the same as
DataType except when readMode is cudaReadModeNormalizedFloat (see Texture
Reference API), in which case Type is the corresponding floating-point type.
B.8.2.4. tex1DGrad()
template<class DataType, enum
cudaTextureReadMode readMode>
Type tex1DGrad(texture<DataType, cudaTextureType1D, readMode> texRef, float x,
float dx, float dy);
fetches from the CUDA array bound to the one-dimensional texture reference
texRef using texture coordinate x. The level-of-detail is derived from the dx and
dy X- and Y-gradients. Type is the same as DataType except when readMode is
cudaReadModeNormalizedFloat (see Texture Reference API), in which case Type is
the corresponding floating-point type.
B.8.2.5. tex2D()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex2D(texture<DataType, cudaTextureType2D, readMode> texRef,
float x, float y);
fetches from the CUDA array or the region of linear memory bound to the two-
dimensional texture reference texRef using texture coordinates x and y. Type is equal
to DataType except when readMode is equal to cudaReadModeNormalizedFloat (see
Texture Reference API), in which case Type is equal to the matching floating-point type.
B.8.2.6. tex2DLod()
template<class DataType, enum
cudaTextureReadMode readMode>
Type tex2DLod(texture<DataType, cudaTextureType2D, readMode> texRef,
float x, float y, float level);
fetches from the CUDA array bound to the two-dimensional texture reference texRef
using texture coordinate (x,y). The level-of-detail is given by level. Type is the same
as DataType except when readMode is cudaReadModeNormalizedFloat (see Texture
Reference API), in which case Type is the corresponding floating-point type.
B.8.2.7. tex2DGrad()
template<class DataType, enum
cudaTextureReadMode readMode>
Type tex2DGrad(texture<DataType, cudaTextureType2D, readMode> texRef,
float x, float y, float2 dx, float2 dy);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 152
C++ Language Extensions
fetches from the CUDA array bound to the two-dimensional texture reference
texRef using texture coordinate (x,y). The level-of-detail is derived from the dx
and dy X- and Y-gradients. Type is the same as DataType except when readMode is
cudaReadModeNormalizedFloat (see Texture Reference API), in which case Type is
the corresponding floating-point type.
B.8.2.8. tex3D()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex3D(texture<DataType, cudaTextureType3D, readMode> texRef,
float x, float y, float z);
fetches from the CUDA array bound to the three-dimensional texture reference texRef
using texture coordinates x, y, and z. Type is equal to DataType except when readMode
is equal to cudaReadModeNormalizedFloat (see Texture Reference API), in which case
Type is equal to the matching floating-point type.
B.8.2.9. tex3DLod()
template<class DataType, enum
cudaTextureReadMode readMode>
Type tex3DLod(texture<DataType, cudaTextureType3D, readMode> texRef,
float x, float y, float z, float level);
fetches from the CUDA array bound to the two-dimensional texture reference texRef
using texture coordinate (x,y,z). The level-of-detail is given by level. Type is the
same as DataType except when readMode is cudaReadModeNormalizedFloat (see
Texture Reference API), in which case Type is the corresponding floating-point type.
B.8.2.10. tex3DGrad()
template<class DataType, enum
cudaTextureReadMode readMode>
Type tex3DGrad(texture<DataType, cudaTextureType3D, readMode> texRef,
float x, float y, float z, float4 dx, float4 dy);
fetches from the CUDA array bound to the two-dimensional texture reference texRef
using texture coordinate (x,y,z). The level-of-detail is derived from the dx and
dy X- and Y-gradients. Type is the same as DataType except when readMode is
cudaReadModeNormalizedFloat (see Texture Reference API), in which case Type is
the corresponding floating-point type.
B.8.2.11. tex1DLayered()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex1DLayered(
texture<DataType, cudaTextureType1DLayered, readMode> texRef,
float x, int layer);
fetches from the CUDA array bound to the one-dimensional layered texture
reference texRef using texture coordinate x and index layer, as described in
Layered Textures. Type is equal to DataType except when readMode is equal to
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 153
C++ Language Extensions
B.8.2.12. tex1DLayeredLod()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex1DLayeredLod(texture<DataType, cudaTextureType1D, readMode> texRef,
float x, int layer, float level);
fetches from the CUDA array bound to the one-dimensional texture reference texRef
using texture coordinate x and index layer as described in Layered Textures. The level-
of-detail is given by level. Type is the same as DataType except when readMode is
cudaReadModeNormalizedFloat (see Texture Reference API), in which case Type is
the corresponding floating-point type.
B.8.2.13. tex1DLayeredGrad()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex1DLayeredGrad(texture<DataType, cudaTextureType1D, readMode> texRef,
float x, int layer, float dx, float dy);
fetches from the CUDA array bound to the one-dimensional texture reference texRef
using texture coordinate x and index layer as described in Layered Textures. The
level-of-detail is derived from the dx and dy X- and Y-gradients. Type is the same as
DataType except when readMode is cudaReadModeNormalizedFloat (see Texture
Reference API), in which case Type is the corresponding floating-point type.
B.8.2.14. tex2DLayered()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex2DLayered(
texture<DataType, cudaTextureType2DLayered, readMode> texRef,
float x, float y, int layer);
fetches from the CUDA array bound to the two-dimensional layered texture
reference texRef using texture coordinates x and y, and index layer, as described
in Texture Memory. Type is equal to DataType except when readMode is equal to
cudaReadModeNormalizedFloat (see Texture Reference API), in which case Type is
equal to the matching floating-point type.
B.8.2.15. tex2DLayeredLod()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex2DLayeredLod(texture<DataType, cudaTextureType2D, readMode> texRef,
float x, float y, int layer, float level);
fetches from the CUDA array bound to the two-dimensional texture reference texRef
using texture coordinate (x,y) and index layer as described in Layered Textures. The
level-of-detail is given by level. Type is the same as DataType except when readMode
is cudaReadModeNormalizedFloat (see Texture Reference API), in which case Type is
the corresponding floating-point type.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 154
C++ Language Extensions
B.8.2.16. tex2DLayeredGrad()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex2DLayeredGrad(texture<DataType, cudaTextureType2D, readMode> texRef,
float x, float y, int layer, float2 dx, float2 dy);
fetches from the CUDA array bound to the two-dimensional texture reference texRef
using texture coordinate (x,y) and index layer as described in Layered Textures. The
level-of-detail is derived from the dx and dy X- and Y-gradients. Type is the same as
DataType except when readMode is cudaReadModeNormalizedFloat (see Texture
Reference API), in which case Type is the corresponding floating-point type.
B.8.2.17. texCubemap()
template<class DataType, enum cudaTextureReadMode readMode>
Type texCubemap(
texture<DataType, cudaTextureTypeCubemap, readMode> texRef,
float x, float y, float z);
fetches from the CUDA array bound to the cubemap texture reference texRef using
texture coordinates x, y, and z, as described in Cubemap Textures. Type is equal to
DataType except when readMode is equal to cudaReadModeNormalizedFloat (see
Texture Reference API), in which case Type is equal to the matching floating-point type.
B.8.2.18. texCubemapLod()
template<class DataType, enum cudaTextureReadMode readMode>
Type texCubemapLod(texture<DataType, cudaTextureType3D, readMode> texRef,
float x, float y, float z, float level);
fetches from the CUDA array bound to the two-dimensional texture reference texRef
using texture coordinate (x,y,z). The level-of-detail is given by level. Type is the
same as DataType except when readMode is cudaReadModeNormalizedFloat (see
Texture Reference API), in which case Type is the corresponding floating-point type.
B.8.2.19. texCubemapLayered()
template<class DataType, enum cudaTextureReadMode readMode>
Type texCubemapLayered(
texture<DataType, cudaTextureTypeCubemapLayered, readMode> texRef,
float x, float y, float z, int layer);
fetches from the CUDA array bound to the cubemap layered texture reference texRef
using texture coordinates x, y, and z, and index layer, as described in Cubemap
Layered Textures. Type is equal to DataType except when readMode is equal to
cudaReadModeNormalizedFloat (see Texture Reference API), in which case Type is
equal to the matching floating-point type.
B.8.2.20. texCubemapLayeredLod()
template<class DataType, enum cudaTextureReadMode readMode>
Type texCubemapLayeredLod(texture<DataType, cudaTextureType3D, readMode> texRef,
float x, float y, float z, int layer, float level);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 155
C++ Language Extensions
fetches from the CUDA array bound to the two-dimensional texture reference texRef
using texture coordinate (x,y,z) and index layer as described in Layered Textures.
The level-of-detail is given by level. Type is the same as DataType except when
readMode is cudaReadModeNormalizedFloat (see Texture Reference API), in which
case Type is the corresponding floating-point type.
B.8.2.21. tex2Dgather()
template<class DataType, enum cudaTextureReadMode readMode>
Type tex2Dgather(
texture<DataType, cudaTextureType2D, readMode> texRef,
float x, float y, int comp = 0);
fetches from the CUDA array bound to the 2D texture reference texRef using texture
coordinates x and y and the comp parameter as described in Texture Gather. Type is a 4-
component vector type. It is based on the base type of DataType except when readMode
is equal to cudaReadModeNormalizedFloat (see Texture Reference API), in which case
it is always float4.
B.9. Surface Functions
Surface functions are only supported by devices of compute capability 2.0 and higher.
Surface objects are described in described in Surface Object API
Surface references are described in Surface Reference API.
In the sections below, boundaryMode specifies the boundary mode, that is how out-of-
range surface coordinates are handled; it is equal to either cudaBoundaryModeClamp,
in which case out-of-range coordinates are clamped to the valid range, or
cudaBoundaryModeZero, in which case out-of-range reads return zero and out-of-range
writes are ignored, or cudaBoundaryModeTrap, in which case out-of-range accesses
cause the kernel execution to fail.
reads the CUDA array specified by the one-dimensional surface object surfObj using
coordinate x.
B.9.1.2. surf1Dwrite
template<class T>
void surf1Dwrite(T data,
cudaSurfaceObject_t surfObj,
int x,
boundaryMode = cudaBoundaryModeTrap);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 156
C++ Language Extensions
writes value data to the CUDA array specified by the one-dimensional surface object
surfObj at coordinate x.
B.9.1.3. surf2Dread()
template<class T>
T surf2Dread(cudaSurfaceObject_t surfObj,
int x, int y,
boundaryMode = cudaBoundaryModeTrap);
template<class T>
void surf2Dread(T* data,
cudaSurfaceObject_t surfObj,
int x, int y,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array specified by the two-dimensional surface object surfObj using
coordinates x and y.
B.9.1.4. surf2Dwrite()
template<class T>
void surf2Dwrite(T data,
cudaSurfaceObject_t surfObj,
int x, int y,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array specified by the two-dimensional surface object
surfObj at coordinate x and y.
B.9.1.5. surf3Dread()
template<class T>
T surf3Dread(cudaSurfaceObject_t surfObj,
int x, int y, int z,
boundaryMode = cudaBoundaryModeTrap);
template<class T>
void surf3Dread(T* data,
cudaSurfaceObject_t surfObj,
int x, int y, int z,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array specified by the three-dimensional surface object surfObj using
coordinates x, y, and z.
B.9.1.6. surf3Dwrite()
template<class T>
void surf3Dwrite(T data,
cudaSurfaceObject_t surfObj,
int x, int y, int z,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array specified by the three-dimensional object surfObj
at coordinate x, y, and z.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 157
C++ Language Extensions
B.9.1.7. surf1DLayeredread()
template<class T>
T surf1DLayeredread(
cudaSurfaceObject_t surfObj,
int x, int layer,
boundaryMode = cudaBoundaryModeTrap);
template<class T>
void surf1DLayeredread(T data,
cudaSurfaceObject_t surfObj,
int x, int layer,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array specified by the one-dimensional layered surface object surfObj
using coordinate x and index layer.
B.9.1.8. surf1DLayeredwrite()
template<class Type>
void surf1DLayeredwrite(T data,
cudaSurfaceObject_t surfObj,
int x, int layer,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array specified by the two-dimensional layered surface
object surfObj at coordinate x and index layer.
B.9.1.9. surf2DLayeredread()
template<class T>
T surf2DLayeredread(
cudaSurfaceObject_t surfObj,
int x, int y, int layer,
boundaryMode = cudaBoundaryModeTrap);
template<class T>
void surf2DLayeredread(T data,
cudaSurfaceObject_t surfObj,
int x, int y, int layer,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array specified by the two-dimensional layered surface object surfObj
using coordinate x and y, and index layer.
B.9.1.10. surf2DLayeredwrite()
template<class T>
void surf2DLayeredwrite(T data,
cudaSurfaceObject_t surfObj,
int x, int y, int layer,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array specified by the one-dimensional layered surface
object surfObj at coordinate x and y, and index layer.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 158
C++ Language Extensions
B.9.1.11. surfCubemapread()
template<class T>
T surfCubemapread(
cudaSurfaceObject_t surfObj,
int x, int y, int face,
boundaryMode = cudaBoundaryModeTrap);
template<class T>
void surfCubemapread(T data,
cudaSurfaceObject_t surfObj,
int x, int y, int face,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array specified by the cubemap surface object surfObj using
coordinate x and y, and face index face.
B.9.1.12. surfCubemapwrite()
template<class T>
void surfCubemapwrite(T data,
cudaSurfaceObject_t surfObj,
int x, int y, int face,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array specified by the cubemap object surfObj at
coordinate x and y, and face index face.
B.9.1.13. surfCubemapLayeredread()
template<class T>
T surfCubemapLayeredread(
cudaSurfaceObject_t surfObj,
int x, int y, int layerFace,
boundaryMode = cudaBoundaryModeTrap);
template<class T>
void surfCubemapLayeredread(T data,
cudaSurfaceObject_t surfObj,
int x, int y, int layerFace,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array specified by the cubemap layered surface object surfObj using
coordinate x and y, and index layerFace.
B.9.1.14. surfCubemapLayeredwrite()
template<class T>
void surfCubemapLayeredwrite(T data,
cudaSurfaceObject_t surfObj,
int x, int y, int layerFace,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array specified by the cubemap layered object surfObj at
coordinate x and y, and index layerFace.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 159
C++ Language Extensions
reads the CUDA array bound to the one-dimensional surface reference surfRef using
coordinate x.
B.9.2.2. surf1Dwrite
template<class Type>
void surf1Dwrite(Type data,
surface<void, cudaSurfaceType1D> surfRef,
int x,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array bound to the one-dimensional surface reference
surfRef at coordinate x.
B.9.2.3. surf2Dread()
template<class Type>
Type surf2Dread(surface<void, cudaSurfaceType2D> surfRef,
int x, int y,
boundaryMode = cudaBoundaryModeTrap);
template<class Type>
void surf2Dread(Type* data,
surface<void, cudaSurfaceType2D> surfRef,
int x, int y,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array bound to the two-dimensional surface reference surfRef using
coordinates x and y.
B.9.2.4. surf2Dwrite()
template<class Type>
void surf3Dwrite(Type data,
surface<void, cudaSurfaceType3D> surfRef,
int x, int y, int z,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array bound to the two-dimensional surface reference
surfRef at coordinate x and y.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 160
C++ Language Extensions
B.9.2.5. surf3Dread()
template<class Type>
Type surf3Dread(surface<void, cudaSurfaceType3D> surfRef,
int x, int y, int z,
boundaryMode = cudaBoundaryModeTrap);
template<class Type>
void surf3Dread(Type* data,
surface<void, cudaSurfaceType3D> surfRef,
int x, int y, int z,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array bound to the three-dimensional surface reference surfRef using
coordinates x, y, and z.
B.9.2.6. surf3Dwrite()
template<class Type>
void surf3Dwrite(Type data,
surface<void, cudaSurfaceType3D> surfRef,
int x, int y, int z,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array bound to the three-dimensional surface reference
surfRef at coordinate x, y, and z.
B.9.2.7. surf1DLayeredread()
template<class Type>
Type surf1DLayeredread(
surface<void, cudaSurfaceType1DLayered> surfRef,
int x, int layer,
boundaryMode = cudaBoundaryModeTrap);
template<class Type>
void surf1DLayeredread(Type data,
surface<void, cudaSurfaceType1DLayered> surfRef,
int x, int layer,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array bound to the one-dimensional layered surface reference surfRef
using coordinate x and index layer.
B.9.2.8. surf1DLayeredwrite()
template<class Type>
void surf1DLayeredwrite(Type data,
surface<void, cudaSurfaceType1DLayered> surfRef,
int x, int layer,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array bound to the two-dimensional layered surface
reference surfRef at coordinate x and index layer.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 161
C++ Language Extensions
B.9.2.9. surf2DLayeredread()
template<class Type>
Type surf2DLayeredread(
surface<void, cudaSurfaceType2DLayered> surfRef,
int x, int y, int layer,
boundaryMode = cudaBoundaryModeTrap);
template<class Type>
void surf2DLayeredread(Type data,
surface<void, cudaSurfaceType2DLayered> surfRef,
int x, int y, int layer,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array bound to the two-dimensional layered surface reference surfRef
using coordinate x and y, and index layer.
B.9.2.10. surf2DLayeredwrite()
template<class Type>
void surf2DLayeredwrite(Type data,
surface<void, cudaSurfaceType2DLayered> surfRef,
int x, int y, int layer,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array bound to the one-dimensional layered surface
reference surfRef at coordinate x and y, and index layer.
B.9.2.11. surfCubemapread()
template<class Type>
Type surfCubemapread(
surface<void, cudaSurfaceTypeCubemap> surfRef,
int x, int y, int face,
boundaryMode = cudaBoundaryModeTrap);
template<class Type>
void surfCubemapread(Type data,
surface<void, cudaSurfaceTypeCubemap> surfRef,
int x, int y, int face,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array bound to the cubemap surface reference surfRef using
coordinate x and y, and face index face.
B.9.2.12. surfCubemapwrite()
template<class Type>
void surfCubemapwrite(Type data,
surface<void, cudaSurfaceTypeCubemap> surfRef,
int x, int y, int face,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array bound to the cubemap reference surfRef at
coordinate x and y, and face index face.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 162
C++ Language Extensions
B.9.2.13. surfCubemapLayeredread()
template<class Type>
Type surfCubemapLayeredread(
surface<void, cudaSurfaceTypeCubemapLayered> surfRef,
int x, int y, int layerFace,
boundaryMode = cudaBoundaryModeTrap);
template<class Type>
void surfCubemapLayeredread(Type data,
surface<void, cudaSurfaceTypeCubemapLayered> surfRef,
int x, int y, int layerFace,
boundaryMode = cudaBoundaryModeTrap);
reads the CUDA array bound to the cubemap layered surface reference surfRef using
coordinate x and y, and index layerFace.
B.9.2.14. surfCubemapLayeredwrite()
template<class Type>
void surfCubemapLayeredwrite(Type data,
surface<void, cudaSurfaceTypeCubemapLayered> surfRef,
int x, int y, int layerFace,
boundaryMode = cudaBoundaryModeTrap);
writes value data to the CUDA array bound to the cubemap layered reference surfRef
at coordinate x and y, and index layerFace.
returns the data of type T located at address address, where T is char, signed char,
short, int, long, long long unsigned char, unsigned short, unsigned int,
unsigned long, unsigned long long, char2, char4, short2, short4, int2, int4,
longlong2 uchar2, uchar4, ushort2, ushort4, uint2, uint4, ulonglong2 float,
float2, float4, double, or double2. With the cuda_fp16.h header included, T can
be __half or __half2. Similarly, with the cuda_bf16.h header included, T can also
be __nv_bfloat16 or __nv_bfloat162. The operation is cached in the read-only data
cache (see Global Memory).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 163
C++ Language Extensions
T __ldcg(const T* address);
T __ldca(const T* address);
T __ldcs(const T* address);
T __ldlu(const T* address);
T __ldcv(const T* address);
returns the data of type T located at address address, where T is char, signed char,
short, int, long, long long unsigned char, unsigned short, unsigned int,
unsigned long, unsigned long long, char2, char4, short2, short4, int2, int4,
longlong2 uchar2, uchar4, ushort2, ushort4, uint2, uint4, ulonglong2 float,
float2, float4, double, or double2. With the cuda_fp16.h header included, T can
be __half or __half2. Similarly, with the cuda_bf16.h header included, T can also be
__nv_bfloat16 or __nv_bfloat162. The operation is using the corresponding cache
operator (see PTX ISA)
stores the value argument of type T to the location at address address, where T is
char, signed char, short, int, long, long long unsigned char, unsigned
short, unsigned int, unsigned long, unsigned long long, char2, char4,
short2, short4, int2, int4, longlong2 uchar2, uchar4, ushort2, ushort4,
uint2, uint4, ulonglong2 float, float2, float4, double, or double2. With
the cuda_fp16.h header included, T can be __half or __half2. Similarly, with the
cuda_bf16.h header included, T can also be __nv_bfloat16 or __nv_bfloat162. The
operation is using the corresponding cache operator (see PTX ISA )
B.13. Time Function
clock_t clock();
long long int clock64();
when executed in device code, returns the value of a per-multiprocessor counter that is
incremented every clock cycle. Sampling this counter at the beginning and at the end of
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 164
C++ Language Extensions
a kernel, taking the difference of the two samples, and recording the result per thread
provides a measure for each thread of the number of clock cycles taken by the device to
completely execute the thread, but not of the number of clock cycles the device actually
spent executing thread instructions. The former number is greater than the latter since
threads are time sliced.
B.14. Atomic Functions
An atomic function performs a read-modify-write atomic operation on one 32-bit or 64-
bit word residing in global or shared memory. For example, atomicAdd() reads a word
at some address in global or shared memory, adds a number to it, and writes the result
back to the same address. The operation is atomic in the sense that it is guaranteed to
be performed without interference from other threads. In other words, no other thread
can access this address until the operation is complete. Atomic functions do not act as
memory fences and do not imply synchronization or ordering constraints for memory
operations (see Memory Fence Functions for more details on memory fences). Atomic
functions can only be used in device functions.
On GPU architectures with compute capability lower than 6.x, atomics operations done
from the GPU are atomic only with respect to that GPU. If the GPU attempts an atomic
operation to a peer GPU’s memory, the operation appears as a regular read followed
by a write to the peer GPU, and the two operations are not done as one single atomic
operation. Similarly, atomic operations from the GPU to CPU memory will not be atomic
with respect to CPU initiated atomic operations.
Compute capability 6.x introduces new type of atomics which allows developers to
widen or narrow the scope of an atomic operation. For example, atomicAdd_system
guarantees that the instruction is atomic with respect to other CPUs and GPUs in the
system. atomicAdd_block implies that the instruction is atomic only with respect
atomics from other threads in the same thread block. In the following example both CPU
and GPU can atomically update integer value at address addr:
void foo() {
int *addr;
cudaMallocManaged(&addr, 4);
*addr = 0;
mykernel<<<...>>>(addr);
__sync_fetch_and_add(addr, 10); // CPU atomic operation
}
System wide atomics are not supported on Tegra devices with compute capability less
than 7.2.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 165
C++ Language Extensions
The new scoped versions of atomics are available for all atomics listed below only for
compute capabilities 6.x and later.
Note that any atomic operation can be implemented based on atomicCAS() (Compare
And Swap). For example, atomicAdd() for double-precision floating-point numbers
is not available on devices with compute capability lower than 6.0 but it can be
implemented as follows:
#if __CUDA_ARCH__ < 600
__device__ double atomicAdd(double* address, double val)
{
unsigned long long int* address_as_ull =
(unsigned long long int*)address;
unsigned long long int old = *address_as_ull, assumed;
do {
assumed = old;
old = atomicCAS(address_as_ull, assumed,
__double_as_longlong(val +
__longlong_as_double(assumed)));
// Note: uses integer comparison to avoid hang in case of NaN (since NaN !=
NaN)
} while (assumed != old);
return __longlong_as_double(old);
}
#endif
B.14.1. Arithmetic Functions
B.14.1.1. atomicAdd()
int atomicAdd(int* address, int val);
unsigned int atomicAdd(unsigned int* address,
unsigned int val);
unsigned long long int atomicAdd(unsigned long long int* address,
unsigned long long int val);
float atomicAdd(float* address, float val);
double atomicAdd(double* address, double val);
__half2 atomicAdd(__half2 *address, __half2 val);
__half atomicAdd(__half *address, __half val);
__nv_bfloat162 atomicAdd(__nv_bfloat162 *address, __nv_bfloat162 val);
__nv_bfloat16 atomicAdd(__nv_bfloat16 *address, __nv_bfloat16 val);
reads the 16-bit, 32-bit or 64-bit word old located at the address address in global or
shared memory, computes (old + val), and stores the result back to memory at the
same address. These three operations are performed in one atomic transaction. The
function returns old.
The 32-bit floating-point version of atomicAdd() is only supported by devices of
compute capability 2.x and higher.
The 64-bit floating-point version of atomicAdd() is only supported by devices of
compute capability 6.x and higher.
The 32-bit __half2 floating-point version of atomicAdd() is only supported by devices
of compute capability 6.x and higher. The atomicity of the __half2 or __nv_bfloat162
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 166
C++ Language Extensions
add operation is guaranteed separately for each of the two __half or __nv_bfloat16
elements; the entire __half2 or __nv_bfloat162 is not guaranteed to be atomic as a
single 32-bit access.
The 16-bit __half floating-point version of atomicAdd() is only supported by devices
of compute capability 7.x and higher.
The 16-bit __nv_bfloat16 floating-point version of atomicAdd() is only supported by
devices of compute capability 8.x and higher.
B.14.1.2. atomicSub()
int atomicSub(int* address, int val);
unsigned int atomicSub(unsigned int* address,
unsigned int val);
reads the 32-bit word old located at the address address in global or shared memory,
computes (old - val), and stores the result back to memory at the same address.
These three operations are performed in one atomic transaction. The function returns
old.
B.14.1.3. atomicExch()
int atomicExch(int* address, int val);
unsigned int atomicExch(unsigned int* address,
unsigned int val);
unsigned long long int atomicExch(unsigned long long int* address,
unsigned long long int val);
float atomicExch(float* address, float val);
reads the 32-bit or 64-bit word old located at the address address in global or shared
memory and stores val back to memory at the same address. These two operations are
performed in one atomic transaction. The function returns old.
B.14.1.4. atomicMin()
int atomicMin(int* address, int val);
unsigned int atomicMin(unsigned int* address,
unsigned int val);
unsigned long long int atomicMin(unsigned long long int* address,
unsigned long long int val);
reads the 32-bit or 64-bit word old located at the address address in global or shared
memory, computes the minimum of old and val, and stores the result back to memory
at the same address. These three operations are performed in one atomic transaction.
The function returns old.
The 64-bit version of atomicMin() is only supported by devices of compute capability
3.5 and higher.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 167
C++ Language Extensions
B.14.1.5. atomicMax()
int atomicMax(int* address, int val);
unsigned int atomicMax(unsigned int* address,
unsigned int val);
unsigned long long int atomicMax(unsigned long long int* address,
unsigned long long int val);
reads the 32-bit or 64-bit word old located at the address address in global or shared
memory, computes the maximum of old and val, and stores the result back to memory
at the same address. These three operations are performed in one atomic transaction.
The function returns old.
The 64-bit version of atomicMax() is only supported by devices of compute capability
3.5 and higher.
B.14.1.6. atomicInc()
unsigned int atomicInc(unsigned int* address,
unsigned int val);
reads the 32-bit word old located at the address address in global or shared memory,
computes ((old >= val) ? 0 : (old+1)), and stores the result back to memory at
the same address. These three operations are performed in one atomic transaction. The
function returns old.
B.14.1.7. atomicDec()
unsigned int atomicDec(unsigned int* address,
unsigned int val);
reads the 32-bit word old located at the address address in global or shared memory,
computes (((old == 0) || (old > val)) ? val : (old-1) ), and stores the
result back to memory at the same address. These three operations are performed in one
atomic transaction. The function returns old.
B.14.1.8. atomicCAS()
int atomicCAS(int* address, int compare, int val);
unsigned int atomicCAS(unsigned int* address,
unsigned int compare,
unsigned int val);
unsigned long long int atomicCAS(unsigned long long int* address,
unsigned long long int compare,
unsigned long long int val);
unsigned short int atomicCAS(unsigned short int *address,
unsigned short int compare,
unsigned short int val);
reads the 16-bit, 32-bit or 64-bit word old located at the address address in global or
shared memory, computes (old == compare ? val : old) , and stores the result
back to memory at the same address. These three operations are performed in one
atomic transaction. The function returns old (Compare And Swap).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 168
C++ Language Extensions
B.14.2. Bitwise Functions
B.14.2.1. atomicAnd()
int atomicAnd(int* address, int val);
unsigned int atomicAnd(unsigned int* address,
unsigned int val);
unsigned long long int atomicAnd(unsigned long long int* address,
unsigned long long int val);
reads the 32-bit or 64-bit word old located at the address address in global or shared
memory, computes (old & val), and stores the result back to memory at the same
address. These three operations are performed in one atomic transaction. The function
returns old.
The 64-bit version of atomicAnd() is only supported by devices of compute capability
3.5 and higher.
B.14.2.2. atomicOr()
int atomicOr(int* address, int val);
unsigned int atomicOr(unsigned int* address,
unsigned int val);
unsigned long long int atomicOr(unsigned long long int* address,
unsigned long long int val);
reads the 32-bit or 64-bit word old located at the address address in global or shared
memory, computes (old | val), and stores the result back to memory at the same
address. These three operations are performed in one atomic transaction. The function
returns old.
The 64-bit version of atomicOr() is only supported by devices of compute capability
3.5 and higher.
B.14.2.3. atomicXor()
int atomicXor(int* address, int val);
unsigned int atomicXor(unsigned int* address,
unsigned int val);
unsigned long long int atomicXor(unsigned long long int* address,
unsigned long long int val);
reads the 32-bit or 64-bit word old located at the address address in global or shared
memory, computes (old ^ val), and stores the result back to memory at the same
address. These three operations are performed in one atomic transaction. The function
returns old.
The 64-bit version of atomicXor() is only supported by devices of compute capability
3.5 and higher.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 169
C++ Language Extensions
B.15.1. __isGlobal()
__device__ unsigned int __isGlobal(const void *ptr);
Returns 1 if ptr contains the generic address of an object in global memory space,
otherwise returns 0.
B.15.2. __isShared()
__device__ unsigned int __isShared(const void *ptr);
Returns 1 if ptr contains the generic address of an object in shared memory space,
otherwise returns 0.
B.15.3. __isConstant()
__device__ unsigned int __isConstant(const void *ptr);
Returns 1 if ptr contains the generic address of an object in constant memory space,
otherwise returns 0.
B.15.4. __isLocal()
__device__ unsigned int __isLocal(const void *ptr);
Returns 1 if ptr contains the generic address of an object in local memory space,
otherwise returns 0.
B.16.1. __cvta_generic_to_global()
__device__ size_t __cvta_generic_to_global(const void *ptr);
Returns the result of executing the PTX cvta.to.global instruction on the generic
address denoted by ptr.
B.16.2. __cvta_generic_to_shared()
__device__ size_t __cvta_generic_to_shared(const void *ptr);
Returns the result of executing the PTX cvta.to.shared instruction on the generic
address denoted by ptr.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 170
C++ Language Extensions
B.16.3. __cvta_generic_to_constant()
__device__ size_t __cvta_generic_to_constant(const void *ptr);
Returns the result of executing the PTX cvta.to.const instruction on the generic
address denoted by ptr.
B.16.4. __cvta_generic_to_local()
__device__ size_t __cvta_generic_to_local(const void *ptr);
Returns the result of executing the PTX cvta.to.local instruction on the generic
address denoted by ptr.
B.16.5. __cvta_global_to_generic()
__device__ void * __cvta_global_to_generic(size_t rawbits);
Returns the generic pointer obtained by executing the PTX cvta.global instruction on
the value provided by rawbits.
B.16.6. __cvta_shared_to_generic()
__device__ void * __cvta_shared_to_generic(size_t rawbits);
Returns the generic pointer obtained by executing the PTX cvta.shared instruction on
the value provided by rawbits.
B.16.7. __cvta_constant_to_generic()
__device__ void * __cvta_constant_to_generic(size_t rawbits);
Returns the generic pointer obtained by executing the PTX cvta.const instruction on
the value provided by rawbits.
B.16.8. __cvta_local_to_generic()
__device__ void * __cvta_local_to_generic(size_t rawbits);
Returns the generic pointer obtained by executing the PTX cvta.local instruction on
the value provided by rawbits.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 171
C++ Language Extensions
Deprecation notice: __any, __all, and __ballot have been deprecated in CUDA 9.0
for all devices.
Removal notice: When targeting devices with compute capability 7.x or higher, __any,
__all, and __ballot are no longer available and their sync variants should be used
instead.
The warp vote functions allow the threads of a given warp to perform a reduction-and-
broadcast operation. These functions take as input an integer predicate from each
thread in the warp and compare those values with zero. The results of the comparisons
are combined (reduced) across the active threads of the warp in one of the following
ways, broadcasting a single return value to each participating thread:
__all_sync(unsigned mask, predicate):
Evaluate predicate for all non-exited threads in mask and return non-zero if and
only if predicate evaluates to non-zero for all of them.
__any_sync(unsigned mask, predicate):
Evaluate predicate for all non-exited threads in mask and return non-zero if and
only if predicate evaluates to non-zero for any of them.
__ballot_sync(unsigned mask, predicate):
Evaluate predicate for all non-exited threads in mask and return an integer whose
Nth bit is set if and only if predicate evaluates to non-zero for the Nth thread of the
warp and the Nth thread is active.
__activemask():
Returns a 32-bit integer mask of all currently active threads in the calling warp.
The Nth bit is set if the Nth lane in the warp is active when __activemask() is
called. Inactive threads are represented by 0 bits in the returned mask. Threads
which have exited the program are always marked as inactive. Note that threads that
are convergent at an __activemask() call are not guaranteed to be convergent at
subsequent instructions unless those instructions are synchronizing warp-builtin
functions.
Notes
For __all_sync, __any_sync, and __ballot_sync, a mask must be passed that
specifies the threads participating in the call. A bit, representing the thread's lane ID,
must be set for each participating thread to ensure they are properly converged before
the intrinsic is executed by the hardware. All active threads named in mask must
execute the same intrinsic with the same mask, or the result is undefined.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 172
C++ Language Extensions
B.18.1. Synopsys
T can be int, unsigned int, long, unsigned long, long long, unsigned long
long, float or double.
B.18.2. Description
The __match_sync() intrinsics permit a broadcast-and-compare of a value value
across threads in a warp after synchronizing threads named in mask.
__match_any_sync
Returns mask of threads that have same value of value in mask
__match_all_sync
Returns mask if all threads in mask have the same value for value; otherwise 0 is
returned. Predicate pred is set to true if all threads in mask have the same value of
value; otherwise the predicate is set to false.
The new *_sync match intrinsics take in a mask indicating the threads participating in
the call. A bit, representing the thread's lane id, must be set for each participating thread
to ensure they are properly converged before the intrinsic is executed by the hardware.
All non-exited threads named in mask must execute the same intrinsic with the same
mask, or the result is undefined.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 173
C++ Language Extensions
B.19.1. Synopsys
// add/min/max
unsigned __reduce_add_sync(unsigned mask, unsigned value);
unsigned __reduce_min_sync(unsigned mask, unsigned value);
unsigned __reduce_max_sync(unsigned mask, unsigned value);
int __reduce_add_sync(unsigned mask, int value);
int __reduce_min_sync(unsigned mask, int value);
int __reduce_max_sync(unsigned mask, int value);
// and/or/xor
unsigned __reduce_and_sync(unsigned mask, unsigned value);
unsigned __reduce_or_sync(unsigned mask, unsigned value);
unsigned __reduce_xor_sync(unsigned mask, unsigned value);
B.19.2. Description
__reduce_add_sync, __reduce_min_sync, __reduce_max_sync
Returns the result of applying an arithmetic add, min, or max reduction operation on
the values provided in value by each thread named in mask.
__reduce_and_sync, __reduce_or_sync, __reduce_xor_sync
Returns the result of applying a logical AND, OR, or XOR reduction operation on the
values provided in value by each thread named in mask.
The mask indicates the threads participating in the call. A bit, representing the thread's
lane id, must be set for each participating thread to ensure they are properly converged
before the intrinsic is executed by the hardware. All non-exited threads named in mask
must execute the same intrinsic with the same mask, or the result is undefined.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 174
C++ Language Extensions
B.20.1. Synopsis
T can be int, unsigned int, long, unsigned long, long long, unsigned long
long, float or double. With the cuda_fp16.h header included, T can also be
__half or __half2. Similarly, with the cuda_bf16.h header included, T can also be
__nv_bfloat16 or __nv_bfloat162.
B.20.2. Description
The __shfl_sync() intrinsics permit exchanging of a variable between threads within
a warp without use of shared memory. The exchange occurs simultaneously for all active
threads within the warp (and named in mask), moving 4 or 8 bytes of data per thread
depending on the type.
Threads within a warp are referred to as lanes, and may have an index between 0 and
warpSize-1 (inclusive). Four source-lane addressing modes are supported:
__shfl_sync()
Direct copy from indexed lane
__shfl_up_sync()
Copy from a lane with lower ID relative to caller
__shfl_down_sync()
Copy from a lane with higher ID relative to caller
__shfl_xor_sync()
Copy from a lane based on bitwise XOR of own lane ID
Threads may only read data from another thread which is actively participating in
the __shfl_sync() command. If the target thread is inactive, the retrieved value is
undefined.
All of the __shfl_sync() intrinsics take an optional width parameter which alters
the behavior of the intrinsic. width must have a value which is a power of 2; results are
undefined if width is not a power of 2, or is a number greater than warpSize.
__shfl_sync() returns the value of var held by the thread whose ID is given by
srcLane. If width is less than warpSize then each subsection of the warp behaves as
a separate entity with a starting logical lane ID of 0. If srcLane is outside the range
[0:width-1], the value returned corresponds to the value of var held by the srcLane
modulo width (i.e. within the same subsection).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 175
C++ Language Extensions
B.20.3. Notes
Threads may only read data from another thread which is actively participating in
the __shfl_sync() command. If the target thread is inactive, the retrieved value is
undefined.
width must be a power-of-2 (i.e., 2, 4, 8, 16 or 32). Results are unspecified for other
values.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 176
C++ Language Extensions
B.20.4. Examples
B.20.4.1. Broadcast of a single value across a warp
#include <stdio.h>
int main() {
bcast<<< 1, 32 >>>(1234);
cudaDeviceSynchronize();
return 0;
}
int main() {
scan4<<< 1, 32 >>>();
cudaDeviceSynchronize();
return 0;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 177
C++ Language Extensions
int main() {
warpReduce<<< 1, 32 >>>();
cudaDeviceSynchronize();
return 0;
}
B.21. Nanosleep Function
B.21.1. Synopsis
T __nanosleep(unsigned ns);
B.21.2. Description
__nanosleep(ns) suspends the thread for a sleep duration approximately close to the
delay ns, specified in nanoseconds.
It is supported with compute capability 7.0 or higher.
B.21.3. Example
The following code implements a mutex with exponential back-off.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 178
C++ Language Extensions
B.22.1. Description
All following functions and types are defined in the namespace nvcuda::wmma. Sub-
byte operations are considered preview, i.e. the data structures and APIs for them
are subject to change and may not be compatible with future releases. This extra
functionality is defined in the nvcuda::wmma::experimental namespace.
fragment
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 179
C++ Language Extensions
Waits until all warp lanes have arrived at load_matrix_sync and then loads the matrix
fragment a from memory. mptr must be a 256-bit aligned pointer pointing to the
first element of the matrix in memory. ldm describes the stride in elements between
consecutive rows (for row major layout) or columns (for column major layout) and
must be a multiple of 8 for __half element type or multiple of 4 for float element
type. (i.e., multiple of 16 bytes in both cases). If the fragment is an accumulator, the
layout argument must be specified as either mem_row_major or mem_col_major.
For matrix_a and matrix_b fragments, the layout is inferred from the fragment's
layout parameter. The values of mptr, ldm, layout and all template parameters for
a must be the same for all threads in the warp. This function must be called by all
threads in the warp, or the result is undefined.
store_matrix_sync
Waits until all warp lanes have arrived at store_matrix_sync and then stores the
matrix fragment a to memory. mptr must be a 256-bit aligned pointer pointing to the
first element of the matrix in memory. ldm describes the stride in elements between
consecutive rows (for row major layout) or columns (for column major layout) and
must be a multiple of 8 for __half element type or multiple of 4 for float element
type. (i.e., multiple of 16 bytes in both cases). The layout of the output matrix must
be specified as either mem_row_major or mem_col_major. The values of mptr, ldm,
layout and all template parameters for a must be the same for all threads in the
warp.
fill_fragment
Fill a matrix fragment with a constant value v. Because the mapping of matrix
elements to each fragment is unspecified, this function is ordinarily called by all
threads in the warp with a common value for v.
mma_sync
Waits until all warp lanes have arrived at mma_sync, and then performs the warp-
synchronous matrix multiply-accumulate operation D=A*B+C. The in-place operation,
C=A*B+C, is also supported. The value of satf and template parameters for each
matrix fragment must be the same for all threads in the warp. Also, the template
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 180
C++ Language Extensions
This data format is an alternate fp16 format that has the same range as f32
but reduced precision (7 bits). You can use this data format directly with the
__nv_bfloat16 type available in cuda_bf16.h. Matrix fragments with
__nv_bfloat16 data types are required to be composed with accumulators of float
type. The shapes and operations supported are the same as with __half.
tf32
This data format is a special floating point format supported by Tensor Cores, with
the same range as f32 and reduced precision (>=10 bits). The internal layout of this
format is implementation defined. In order to use this floating point format with
WMMA operations, the input matrices must be manually converted to tf32 precision.
To facilitate conversion, a new intrinsic __float_to_tf32 is provided. While the
input and output arguments to the intrinsic are of float type, the output will be
tf32 numerically. This new precision is intended to be used with Tensor Cores only,
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 181
C++ Language Extensions
and if mixed with other floattype operations, the precision and range of the result
will be undefined.
Once an input matrix (matrix_a or matrix_b) is converted to tf32 precision, the
combination of a fragment with precision::tf32 precision, and a data type of
float to load_matrix_sync will take advantage of this new capability. Both the
accumulator fragments must have float data types. The only supported matrix size
is 16x16x8 (m-n-k).
The elements of the fragment are represented as float, hence the mapping from
element_type<T> to storage_element_type<T> is:
precision::tf32 -> float
B.22.3. Double Precision
Tensor Cores support double-precision floating point operations on devices with
compute capability 8.0 and higher. To use this new functionality, a fragment with the
double type must be used. The mma_sync operation will be performed with the .rn
(rounds to nearest even) rounding modifier.
B.22.4. Sub-byte Operations
Sub-byte WMMA operations provide a way to access the low-precision capabilities of
Tensor Cores. They are considered a preview feature i.e. the data structures and APIs
for them are subject to change and may not be compatible with future releases. This
functionality is available via the nvcuda::wmma::experimental namespace:
namespace experimental {
namespace precision {
struct u4; // 4-bit unsigned
struct s4; // 4-bit signed
struct b1; // 1-bit
}
enum bmmaBitOp {
bmmaBitOpXOR = 1 // compute_75 minimum
};
enum bmmaAccumulateOp { bmmaAccumulateOpPOPC = 1 };
}
For 4 bit precision, the APIs available remain the same, but you must specify
experimental::precision::u4 or experimental::precision::s4 as
the fragment data type. Since the elements of the fragment are packed together,
num_storage_elements will be smaller than num_elements for that fragment. The
num_elements variable for a sub-byte fragment, hence returns the number of elements
of sub-byte type element_type<T>. This is true for single bit precision as well, in
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 182
C++ Language Extensions
The allowed layouts for sub-byte fragments is always row_major for matrix_a and
col_major for matrix_b.
B.22.5. Restrictions
The special format required by tensor cores may be different for each major and minor
device architecture. This is further complicated by threads holding only a fragment
(opaque architecture-specific ABI data structure) of the overall matrix, with the
developer not allowed to make assumptions on how the individual parameters are
mapped to the registers participating in the matrix multiply-accumulate.
Since fragments are architecture-specific, it is unsafe to pass them from function
A to function B if the functions have been compiled for different link-compatible
architectures and linked together into the same device executable. In this case, the size
and layout of the fragment will be specific to one architecture and using WMMA APIs in
the other will lead to incorrect results or potentially, corruption.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 183
C++ Language Extensions
This undefined behavior might also be undetectable at compilation time and by tools at
runtime, so extra care is needed to make sure the layout of the fragments is consistent.
This linking hazard is most likely to appear when linking with a legacy library that
is both built for a different link-compatible architecture and expecting to be passed a
WMMA fragment.
Note that in the case of weak linkages (for example, a CUDA C++ inline function), the
linker may choose any available function definition which may result in implicit passes
between compilation units.
To avoid these sorts of problems, the matrix should always be stored out to memory for
transit through external interfaces (e.g. wmma::store_matrix_sync(dst, …);) and
then it can be safely passed to bar() as a pointer type [e.g. float *dst].
Note that since sm_70 can run on sm_75, the above example sm_75 code can be changed
to sm_70 and correctly work on sm_75. However, it is recommended to have sm_75
native code in your application when linking with other sm_75 separately compiled
binaries.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 184
C++ Language Extensions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 185
C++ Language Extensions
B.22.7. Example
The following code implements a 16x16x16 matrix multiplication in a single warp.
#include <mma.h>
using namespace nvcuda;
Threads are blocked at the synchronization point (block.sync()) until all threads have
reached the synchronization point. In addition, memory updates that happened before
the synchronization point are guaranteed to be visible to all threads in the block after the
synchronization point, i.e., equivalent to __threadfence_block() as well as the sync.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 186
C++ Language Extensions
‣ Code before sync performs memory updates that will be read after the sync.
‣ Synchronization point
‣ Code after sync point with visibility of memory updates that happened before sync
point.
In this pattern, the synchronization point (block.sync()) is split into an arrive point
(bar.arrive()) and a wait point (bar.wait(tok)). A thread begins participating in
an awbarrier with its first call to bar.arrive(). When a thread calls bar.wait(tok)
it will be blocked until participating threads have called bar.arrive() the expected
number of times as specified by the expected arrive count argument passed to init().
Memory updates that happen before participating threads' call to bar.arrive() are
guaranteed to be visible to participating threads after their call to bar.wait(tok). Note
that the call to bar.arrive() does not block a thread, it can proceed with other work
that does not depend upon memory updates that happen before other participating
threads' call to bar.arrive().
The arrive and then wait pattern has five stages which may be iteratively repeated:
‣ Code before arrive performs memory updates that will be read after the wait.
‣ Arrive point with implicit memory fence (i.e., equivalent to
__threadfence_block()).
‣ Code between arrive and wait.
‣ Wait point.
‣ Code after the wait, with visibility of updates that were performed before the arrive.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 187
C++ Language Extensions
Before any thread can participate in awbarrier, the barrier must be initialized with
an expected arrive count, block.size() in this example. Initialization must happen
before any thread calls bar.arrive(). This poses a bootstrapping challenge in that
threads must synchronize before participating in the awbarrier, but threads are
creating an awbarrier in order to synchronize. In this example, threads that will
participate are part of a cooperative group and use block.sync() to bootstrap
initialization. In this example a whole thread block is participating in initialization,
hence __syncthreads() could also be used.
The second parameter is the expected arrive count, i.e., the number of times
bar.arrive() will be called by participating threads before a participating
thread is unblocked from its call to bar.wait(tok). In the prior example the
awbarrier is initialized with the number of threads in the thread block i.e.,
cooperative_groups::this_thread_block().size(), and all threads within the
thread block participate in the barrier.
An awbarrier is flexible in specifying how threads participate (split arrive/wait)
and which threads participate. In contrast this_thread_block.sync() from
cooperative groups or __syncthreads() is applicable to whole-thread-block and
__syncwarp(mask) is a specified subset of a warp.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 188
C++ Language Extensions
does not block; if the phase is advanced while the thread is blocked in bar.wait(tok),
the thread is unblocked.
It is essential to know when a reset could or could not occur, especially in non-trivial
arrive/wait synchronization patterns.
For simple arrive/wait synchronization patterns, compliance with these usage rules is
straightforward.
In this pattern the awbarrier is initialized with number of participating threads plus
one. Each thread calls bar.arrive() once per iteration. The arrive returns a token
which can be queried with tok.pending_count(), which returns the value of the
countdown immediately before it was decremented for this thread (similar to the return
value from an atomic fetch-and-add). When the result is 2, we know that this thread is
the last to arrive and the next bar.arrive() will complete the barrier.
This last thread can then perform some operation on the data, such as a reduction:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 189
C++ Language Extensions
‣ Loading results that all participating threads' stored during their before-arrive
computations
‣ Reduction on these results
‣ Storing the reduced value
‣ Calling the final bar.arrive() to complete the barrier.
All threads blocked at bar.wait(tok) are consequently unblocked and can load the
reduced value.
Producer Consumer
Producer threads wait for consumer threads to signal that the buffer is ready to be
filled; however, consumer threads do not wait for this signal. Consumer threads wait
for producer threads to signal that the buffer is filled; however, producer threads do not
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 190
C++ Language Extensions
wait for this signal. For full producer/consumer concurrency this pattern has (at least)
double buffering where each buffer requires two awbarriers.
In this example the first warp is specialized as the producer and the remaining warps
are specialized as the consumer. All producer and consumer threads participate (call
bar.arrive()) in each of the four awbarriers so the expected arrival counts are equal
to block.size().
A producer thread waits for the consumer threads to signal that the buffer can be filled.
In order to wait for an awbarrier a producer thread must first arrive on that ready[i
%2].arrive() to get a token and then ready[i%2].wait(tok) with that token. For
simplicity ready[i%2].arrive_and_wait() combines these operations.
bar.arrive_and_wait();
/* is equivalent to */
bar.wait(bar.arrive());
Producer threads compute and fill the ready buffer, they then signal that the buffer is
filled by arriving on the filled barrier, filled[i%2].arrive(). A producer thread does
not wait at this point, instead it waits until the next iteration's buffer (double buffering)
is ready to be filled.
A consumer thread begins by signaling that both buffers are ready to be filled. A
consumer thread does not wait at this point, instead it waits for this iteration's buffer to
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 191
C++ Language Extensions
This operation arrives on the awbarrier to fulfill the participating thread's obligation to
arrive in the current phase, and then decrements the expected arrive count for the next
phase so that this thread is no longer expected to arrive on the barrier.
A thread first arrives in the current phase and then drops out of participation in the next
phase. As such, this thread can wait for the current phase before dropping out.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 192
C++ Language Extensions
B.23.8. AWBarrier Interface
The awbarrier interface requires:
B.23.8.1. Synopsis of cuda_awbarrier.h
The awbarrier class is defined within the ::nvcuda::experimental namespace.
The awbarrier class provides arrival_token datatype (class) and following methods:
For invalidation of an object of the awbarrier datatype, the interface is defined as:
void inval(awbarrier*);
B.23.8.2. Initialize
void init(awbarrier* bar , uint32_t count);
uint32_t awbarrier::max();
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 193
C++ Language Extensions
B.23.8.3. Invalidate
void inval(awbarrier* bar);
B.23.8.4. Arrive
awbarrier::arrival_token awbarrier::arrive();
B.23.8.5. Wait
void awbarrier::wait(awbarrier::arrival_token tok);
bool awbarrier::timed_wait(awbarrier::arrival_token tok, uint32_t hint);
void awbarrier::arrive_and_wait(); /* i.e.,: this->wait(this->arrive()); */
‣ tok must be associated with the immediately preceding phase or current phase of
*this.
‣ timed_wait():
‣ the function immediately returns true, if tok is associated with the immediately
preceding phase of *this.
‣ blocks the current thread, then returns true only if barrier has been reset, when
tok is associated with the current phase of *this.
‣ blocks the current thread, then returns false if the barrier does not reset before
approximately hint clock cycles have elapsed, when tok is associated with the
current phase of *this
B.23.8.6. Automatic Reset
‣ When an arrive operation's atomic decrement causes the pending count for the
current phase to become zero then:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 194
C++ Language Extensions
B.23.8.8. Pending Count
uint32_t awbarrier::arrival_token::pending_count() const;
B.23.9.1. Data Types
typedef /* implementation defined */ __mbarrier_t;
typedef /* implementation defined */ __mbarrier_token_t;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 195
C++ Language Extensions
‣ Initialize *bar expected arrival count for the current and next phase to
expected_count.
‣ tok must be associated with the immediately preceding phase or current phase of
*this.
‣ Returns true if tok is associated with the immediately preceding phase of *bar,
otherwise returns false.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 196
C++ Language Extensions
memory. This feature enables CUDA kernels to overlap copying data from global to
shared memory with computation. It also avoids an intermediary register file access
traditionally present between the global memory read and the shared memory write.
The async-copy feature is experimental in CUDA 11.0. Async-copy features that use
Split Arrive/Wait Barrier, see Sections Complete as an Arrive Operation and Arrive On
Barrier Primitive, require compute capability 7.0 or higher. Hardware accelerated async-
copy operations require compute capability 8.0 or higher.
B.24.1.1. Without Async-Copy
Without the async-copy feature, the copy phase of the copy and compute pattern is
expressed as sdata[i] = gdata[i]. This global to shared memory copy is expanded
to a read from global memory into a register, followed by a write to shared memory
from the register.
When this pattern occurs within an iterative algorithm, each thread block needs to
synchronize after the sdata[i] = gdata[i] assignment, to ensure all writes to shared
memory have completed before the compute phase can begin. The thread block also
needs to synchronize again after the compute phase, to prevent overwriting shared
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 197
C++ Language Extensions
memory before all threads have completed their computations. This pattern is illustrated
in the following code snippet.
cooperative_groups::thread_block block =
cooperative_groups::this_thread_block();
cooperative_groups::grid_group grid = cooperative_groups::this_grid();
B.24.1.2. With Async-Copy
With the async-copy feature, the assignment of shared memory from global memory
sdata[i] = gdata[i];
The memcpy_async dispatches an async-copy operation that will eventually read global
data gdata[i] and write shared data sdata[i]. Until the dispatched async-copy
operation completes, it is a race condition to modify the global data, read the shared
data, or modify the shared data.
A thread uses a object to wait for a batch of async-copy operations to complete. A batch
is made up of all async-copy operations dispatched by this thread since its last commit.
In this simple async-copy example:
‣ A thread dispatches one or more async-copy operations using the same pipeline
object, pipe: memcpy_async(sdata[i], gdata[i], pipe);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 198
C++ Language Extensions
cooperative_groups::thread_block block =
cooperative_groups::this_thread_block();
cooperative_groups::grid_group grid = cooperative_groups::this_grid();
To reap the full benefits of async-copy, compute capability 8.0 or higher is needed. On
such devices, the async-copy dispatch, memcpy_async, becomes a single instruction
that does not require an intermediate register for the copied value and does not tie up a
CUDA thread to perform the separate load and store operations. For compute capability
below 8.0, the async-copy dispatch implementation falls back to the original sdata[i]
= gdata[i] assignment.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 199
C++ Language Extensions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 200
C++ Language Extensions
the time computations on the first batch can begin. Thus, falling back to a single-stage
pipeline might be preferrable for compute capability 7.x.
cooperative_groups::thread_block block =
cooperative_groups::this_thread_block();
cooperative_groups::grid_group grid = cooperative_groups::this_grid();
for (int step = next = 0; tile < global_count; tile += tile_stride, ++step)
{
block.sync();
A call to commit demarcates the end of the current batch of async-copy operations in
the pipeline's sequence of batches, from the perspective of the submitting thread. If L
is the index of the latest batch, as returned by the pipe.commit() operation, then the
wait_prior<N>() operation waits for batches up to and including L-N to complete.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 201
C++ Language Extensions
‣ pipe.wait_prior<0>() waits for batches up to and including L-0, i.e., for all
batches.
‣ pipe.wait_prior<1>() waits for batches up to and including L-1, i.e., for all but
the most recent batch.
‣ pipe.wait_prior<2>() waits for batches up to and including L-2, i.e., for all but
the two most recent batches.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 202
C++ Language Extensions
cooperative_groups::thread_block block =
cooperative_groups::this_thread_block();
cooperative_groups::grid_group grid = cooperative_groups::this_grid();
if (block.thread_rank() < 2) {
/* Initialize per-stage awbarrier bar with block.size() pending count;
all block.size() threads in a block are expected to participate.
*/
init(&bar[block.thread_rank(), block.size());
}
block.sync();
for (int step = next = 0; tile < global_count; tile += tile_stride, ++step)
{
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 203
C++ Language Extensions
In this two-stage pipeline example, a separate awbarrier is needed per stage. Each
barrier bar must be initialized before a pipeline::arive_on operation on that barrier.
The pipe.arrive_on(bar) operation associates the completion of async-copy
operations with the appropriate per-stage awbarrier. This operation prevents bar from
automatic reset until all previously submitted async-copy operations have completed.
Please see Complete as an Arrive Operation for more details.
In every step in this example, a batch is dispatched for the subsequent step (step+1).
The bar[step % 2].arrive_and_wait() returns when all async-copy operations
submitted on that barrier during the previous step (step-1) have completed.
The Commit Batch of Async-Copy return value is from the thread's perceived batch
sequence.
‣ An index in a thread's perceived sequence always aligns to an equal or larger index
in the actual warp-shared sequence. The sequences are equal only when all commit
operations are invoked from converged threads.
BTn ≡ BPm where n <= m
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 204
C++ Language Extensions
The wait_prior<N>() function waits for batches in the actual sequence at least up
to and including PL-N. Since TL <= PL, waiting for batch up to and including PL-N
includes waiting for batch TL-N. Thus, when TL < PL, the thread will unintentionally
wait for additional, more recent batches.
In the extreme fully-diverged warp example above, each thread could wait for all 32
batches.
‣ to not over-wait, by keeping threads' perceived sequence of batches aligned with the
actual sequence, and
‣ to minimize updates to the barrier object.
When code preceding these operations diverges threads, then the warp should be re-
converged, via __syncwarp before invoking commit or arrive-on operations.
B.24.3. Pipeline Interface
The pipeline interface requires
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 205
C++ Language Extensions
For a C-like interface, when compiling without ISO C++ 2011 compatibility, see Pipeline
Primitives Interface.
B.24.3.1. Async-Copy an Object
template<class T>
void memcpy_async(T& dst, const T& src, pipeline& pipe);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 206
C++ Language Extensions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 207
C++ Language Extensions
B.24.4.1. Async-Copy Primitive
void __pipeline_memcpy_async(void* __restrict__ dst_shared,
const void* __restrict__ src_global,
size_t size_and_align,
size_t zfill=0);
size_t i = 0;
for (; i < size_and_align - zfill; ++i) ((char*)dst_shared)[i] =
((char*)src_shared)[i]; /* copy */
for (; i < size_and_align; ++i) ((char*)dst_shared)[i] = 0; /* zero-fill
*/
‣ Requirements:
‣ dst_shared must be a pointer to the shared memory destination for the async-
copy.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 208
C++ Language Extensions
‣ src_global must be a pointer to the global memory source for the async-copy.
‣ size_and_align must be 4, 8, or 16.
‣ zfill <= size_and_align.
‣ size_and_align must be the alignment of dst_shared and src_global.
‣ It is a race condition for any thread to modify the source memory or observe the
destination memory prior to waiting for the async-copy operation to complete.
Between submitting an async-copy and waiting for its completion, any of the
following actions introduces a race condition:
B.24.4.2. Commit Primitive
void __pipeline_commit();
B.24.4.3. Wait Primitive
void __pipeline_wait_prior(size_t N);
increments by one per warp the per-multiprocessor hardware counter of index counter.
Counters 8 to 15 are reserved and should not be used by applications.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 209
C++ Language Extensions
The value of counters 0, 1, ..., 7 can be obtained via nvprof by nvprof --events
prof_trigger_0x where x is 0, 1, ..., 7. All counters are reset before each kernel launch
(note that when collecting counters, kernel launches are synchronous as mentioned in
Concurrent Execution between Host and Device).
B.26. Assertion
Assertion is only supported by devices of compute capability 2.x and higher.
void assert(int expression);
stops the kernel execution if expression is equal to zero. If the program is run within a
debugger, this triggers a breakpoint and the debugger can be used to inspect the current
state of the device. Otherwise, each thread for which expression is equal to zero prints
a message to stderr after synchronization with the host via cudaDeviceSynchronize(),
cudaStreamSynchronize(), or cudaEventSynchronize(). The format of this
message is as follows:
<filename>:<line number>:<function>:
block: [blockId.x,blockId.x,blockIdx.z],
thread: [threadIdx.x,threadIdx.y,threadIdx.z]
Assertion `<expression>` failed.
Any subsequent host-side synchronization calls made for the same device will
return cudaErrorAssert. No more commands can be sent to this device until
cudaDeviceReset() is called to reinitialize the device.
return 0;
}
will output:
test.cu:19: void testAssert(): block: [0,0,0], thread: [0,0,0] Assertion
`should_be_one` failed.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 210
C++ Language Extensions
Assertions are for debugging purposes. They can affect performance and it is therefore
recommended to disable them in production code. They can be disabled at compile
time by defining the NDEBUG preprocessor macro before including assert.h. Note that
expression should not be an expression with side effects (something like (++i > 0),
for example), otherwise disabling the assertion will affect the functionality of the code.
B.27. Trap function
A trap operation can be initiated by calling the __trap() function from any device
thread.
void __trap();
The execution of the kernel is aborted and an interrupt is raised in the host program.
B.28. Breakpoint Function
Execution of a kernel function can be suspended by calling the __brkpt() function
from any device thread.
void __brkpt();
B.29. Formatted Output
Formatted output is only supported by devices of compute capability 2.x and higher.
int printf(const char *format[, arg, ...]);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 211
C++ Language Extensions
B.29.1. Format Specifiers
As for standard printf(), format specifiers take the form: %[flags][width]
[.precision][size]type
The following fields are supported (see widely-available documentation for a complete
description of all behaviors):
B.29.2. Limitations
Final formatting of the printf() output takes place on the host system. This means
that the format string must be understood by the host-system's compiler and C library.
Every effort has been made to ensure that the format specifiers supported by CUDA's
printf function form a universal subset from the most common host compilers, but exact
behavior will be host-OS-dependent.
As described in Format Specifiers, printf() will accept all combinations of valid flags
and types. This is because it cannot determine what will and will not be valid on the
host system where the final output is formatted. The effect of this is that output may be
undefined if the program emits a format string which contains invalid combinations.
The printf() command can accept at most 32 arguments in addition to the format
string. Additional arguments beyond this will be ignored, and the format specifier
output as-is.
Owing to the differing size of the long type on 64-bit Windows platforms (four bytes
on 64-bit Windows platforms, eight bytes on other 64-bit platforms), a kernel which is
compiled on a non-Windows 64-bit machine but then run on a win64 machine will see
corrupted output for all format strings which include "%ld". It is recommended that the
compilation platform matches the execution platform to ensure safety.
The output buffer for printf() is set to a fixed size before kernel launch (see
Associated Host-Side API). It is circular and if more output is produced during kernel
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 212
C++ Language Extensions
execution than can fit in the buffer, older output is overwritten. It is flushed only when
one of these actions is performed:
‣ Kernel launch via <<<>>> or cuLaunchKernel() (at the start of the launch, and if
the CUDA_LAUNCH_BLOCKING environment variable is set to 1, at the end of the
launch as well),
‣ Synchronization via cudaDeviceSynchronize(), cuCtxSynchronize(),
cudaStreamSynchronize(), cuStreamSynchronize(),
cudaEventSynchronize(), or cuEventSynchronize(),
‣ Memory copies via any blocking version of cudaMemcpy*() or cuMemcpy*(),
‣ Module loading/unloading via cuModuleLoad() or cuModuleUnload(),
‣ Context destruction via cudaDeviceReset() or cuCtxDestroy().
‣ Prior to executing a stream callback added by cudaStreamAddCallback or
cuStreamAddCallback.
Note that the buffer is not flushed automatically when the program exits. The user must
call cudaDeviceReset() or cuCtxDestroy() explicitly, as shown in the examples
below.
Internally printf() uses a shared data structure and so it is possible that calling
printf() might change the order of execution of threads. In particular, a thread
which calls printf() might take a longer execution path than one which does not call
printf(), and that path length is dependent upon the parameters of the printf().
Note, however, that CUDA makes no guarantees of thread execution order except at
explicit __syncthreads() barriers, so it is impossible to tell whether execution order
has been modified by printf() or by other scheduling behaviour in the hardware.
‣ cudaDeviceGetLimit(size_t* size,cudaLimitPrintfFifoSize)
‣ cudaDeviceSetLimit(cudaLimitPrintfFifoSize, size_t size)
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 213
C++ Language Extensions
B.29.4. Examples
The following code sample:
#include <stdio.h>
int main()
{
helloCUDA<<<1, 5>>>(1.2345f);
cudaDeviceSynchronize();
return 0;
}
will output:
Hello thread 2, f=1.2345
Hello thread 1, f=1.2345
Hello thread 4, f=1.2345
Hello thread 0, f=1.2345
Hello thread 3, f=1.2345
Notice how each thread encounters the printf() command, so there are as many lines
of output as there were threads launched in the grid. As expected, global values (i.e.,
float f) are common between all threads, and local values (i.e., threadIdx.x) are
distinct per-thread.
The following code sample:
#include <stdio.h>
int main()
{
helloCUDA<<<1, 5>>>(1.2345f);
cudaDeviceSynchronize();
return 0;
}
will output:
Hello thread 0, f=1.2345
Self-evidently, the if() statement limits which threads will call printf, so that only a
single line of output is seen.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 214
C++ Language Extensions
allocate and free memory dynamically from a fixed-size heap in global memory.
__host__ __device__ void* memcpy(void* dest, const void* src, size_t size);
copy size bytes from the memory location pointed by src to the memory location
pointed by dest.
__host__ __device__ void* memset(void* ptr, int value, size_t size);
set size bytes of memory block pointed by ptr to value (interpreted as an unsigned
char).
The CUDA in-kernel malloc() function allocates at least size bytes from the device
heap and returns a pointer to the allocated memory or NULL if insufficient memory
exists to fulfill the request. The returned pointer is guaranteed to be aligned to a 16-byte
boundary.
The CUDA in-kernel __nv_aligned_device_malloc() function allocates at least
size bytes from the device heap and returns a pointer to the allocated memory or
NULL if insufficient memory exists to fulfill the requested size or alignment. The
address of the allocated memory will be a multiple of align. align must be a non-zero
power of 2.
The CUDA in-kernel free() function deallocates the memory pointed to
by ptr, which must have been returned by a previous call to malloc() or
__nv_aligned_device_malloc(). If ptr is NULL, the call to free() is ignored.
Repeated calls to free() with the same ptr has undefined behavior.
The memory allocated by a given CUDA thread via malloc() or
__nv_aligned_device_malloc() remains allocated for the lifetime of the CUDA
context, or until it is explicitly released by a call to free(). It can be used by any other
CUDA threads even from subsequent kernel launches. Any CUDA thread may free
memory allocated by another thread, but care should be taken to ensure that the same
pointer is not freed more than once.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 215
C++ Language Extensions
context. A default heap of eight megabytes is allocated if any program uses malloc() or
__nv_aligned_device_malloc() without explicitly specifying the heap size.
The following API functions get and set the heap size:
The actual memory allocation for the heap occurs when a module is loaded into the
context, either explicitly via the CUDA driver API (see Module), or implicitly via the
CUDA runtime API (see CUDA Runtime). If the memory allocation fails, the module
load will generate a CUDA_ERROR_SHARED_OBJECT_INIT_FAILED error.
Heap size cannot be changed once a module load has occurred and it does not resize
dynamically according to need.
Memory reserved for the device heap is in addition to memory allocated through host-
side CUDA API calls such as cudaMalloc().
B.30.3. Examples
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 216
C++ Language Extensions
#include <stdlib.h>
#include <stdio.h>
int main()
{
// Set a heap size of 128 megabytes. Note that this must
// be done before any kernel is launched.
cudaDeviceSetLimit(cudaLimitMallocHeapSize, 128*1024*1024);
mallocTest<<<1, 5>>>();
cudaDeviceSynchronize();
return 0;
}
will output:
Thread 0 got pointer: 00057020
Thread 1 got pointer: 0005708c
Thread 2 got pointer: 000570f8
Thread 3 got pointer: 00057164
Thread 4 got pointer: 000571d0
Notice how each thread encounters the malloc() and memset() commands and so
receives and initializes its own allocation. (Exact pointer values will vary: these are
illustrative.)
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 217
C++ Language Extensions
// The first thread in the block does the allocation and then
// shares the pointer with all other threads through shared memory,
// so that access can easily be coalesced.
// 64 bytes per thread are allocated.
if (threadIdx.x == 0) {
size_t size = blockDim.x * 64;
data = (int*)malloc(size);
}
__syncthreads();
int main()
{
cudaDeviceSetLimit(cudaLimitMallocHeapSize, 128*1024*1024);
mallocTest<<<10, 128>>>();
cudaDeviceSynchronize();
return 0;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 218
C++ Language Extensions
#define NUM_BLOCKS 20
int main()
{
cudaDeviceSetLimit(cudaLimitMallocHeapSize, 128*1024*1024);
// Allocate memory
allocmem<<< NUM_BLOCKS, 10 >>>();
// Use memory
usemem<<< NUM_BLOCKS, 10 >>>();
usemem<<< NUM_BLOCKS, 10 >>>();
usemem<<< NUM_BLOCKS, 10 >>>();
// Free memory
freemem<<< NUM_BLOCKS, 10 >>>();
cudaDeviceSynchronize();
return 0;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 219
C++ Language Extensions
B.31. Execution Configuration
Any call to a __global__ function must specify the execution configuration for that call.
The execution configuration defines the dimension of the grid and blocks that will be
used to execute the function on the device, as well as the associated stream (see CUDA
Runtime for a description of streams).
The execution configuration is specified by inserting an expression of the form <<<
Dg, Db, Ns, S >>> between the function name and the parenthesized argument list,
where:
‣ Dg is of type dim3 (see dim3) and specifies the dimension and size of the grid, such
that Dg.x * Dg.y * Dg.z equals the number of blocks being launched;
‣ Db is of type dim3 (see dim3) and specifies the dimension and size of each block,
such that Db.x * Db.y * Db.z equals the number of threads per block;
‣ Ns is of type size_t and specifies the number of bytes in shared memory that is
dynamically allocated per block for this call in addition to the statically allocated
memory; this dynamically allocated memory is used by any of the variables
declared as an external array as mentioned in __shared__; Ns is an optional
argument which defaults to 0;
‣ S is of type cudaStream_t and specifies the associated stream; S is an optional
argument which defaults to 0.
As an example, a function declared as
__global__ void Func(float* parameter);
The arguments to the execution configuration are evaluated before the actual function
arguments.
The function call will fail if Dg or Db are greater than the maximum sizes allowed for
the device as specified in Compute Capabilities, or if Ns is greater than the maximum
amount of shared memory available on the device, minus the amount of shared memory
required for static allocation.
B.32. Launch Bounds
As discussed in detail in Multiprocessor Level, the fewer registers a kernel uses, the
more threads and thread blocks are likely to reside on a multiprocessor, which can
improve performance.
Therefore, the compiler uses heuristics to minimize register usage while keeping
register spilling (see Device Memory Accesses) and instruction count to a minimum.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 220
C++ Language Extensions
‣ If the initial register usage is higher than L, the compiler reduces it further until it
becomes less or equal to L, usually at the expense of more local memory usage and/
or higher number of instructions;
‣ If the initial register usage is lower than L
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 221
C++ Language Extensions
Optimal launch bounds for a given kernel will usually differ across major architecture
revisions. The sample code below shows how this is typically handled in device code
using the __CUDA_ARCH__ macro introduced in Application Compatibility
#define THREADS_PER_BLOCK 256
#if __CUDA_ARCH__ >= 200
#define MY_KERNEL_MAX_THREADS (2 * THREADS_PER_BLOCK)
#define MY_KERNEL_MIN_BLOCKS 3
#else
#define MY_KERNEL_MAX_THREADS THREADS_PER_BLOCK
#define MY_KERNEL_MIN_BLOCKS 2
#endif
// Device code
__global__ void
__launch_bounds__(MY_KERNEL_MAX_THREADS, MY_KERNEL_MIN_BLOCKS)
MyKernel(...)
{
...
}
In the common case where MyKernel is invoked with the maximum number of threads
per block (specified as the first parameter of __launch_bounds__()), it is tempting
to use MY_KERNEL_MAX_THREADS as the number of threads per block in the execution
configuration:
// Host code
MyKernel<<<blocksPerGrid, MY_KERNEL_MAX_THREADS>>>(...);
This will not work however since __CUDA_ARCH__ is undefined in host code as
mentioned in Application Compatibility, so MyKernel will launch with 256 threads
per block even when __CUDA_ARCH__ is greater or equal to 200. Instead the number of
threads per block should be determined:
‣ Either at compile time using a macro that does not depend on __CUDA_ARCH__, for
example
// Host code
MyKernel<<<blocksPerGrid, THREADS_PER_BLOCK>>>(...);
‣ Or at runtime based on the compute capability
// Host code
cudaGetDeviceProperties(&deviceProp, device);
int threadsPerBlock =
(deviceProp.major >= 2 ?
2 * THREADS_PER_BLOCK : THREADS_PER_BLOCK);
MyKernel<<<blocksPerGrid, threadsPerBlock>>>(...);
Register usage is reported by the --ptxas options=-v compiler option. The number
of resident blocks can be derived from the occupancy reported by the CUDA profiler
(see Device Memory Accessesfor a definition of occupancy).
Register usage can also be controlled for all __global__ functions in a file using the
maxrregcount compiler option. The value of maxrregcount is ignored for functions
with launch bounds.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 222
C++ Language Extensions
B.33. #pragma unroll
By default, the compiler unrolls small loops with a known trip count. The #pragma
unroll directive however can be used to control unrolling of any given loop. It must
be placed immediately before the loop and only applies to that loop. It is optionally
followed by an integral constant expression (ICE)13. If the ICE is absent, the loop will be
completely unrolled if its trip count is constant. If the ICE evaluates to 1, the compiler
will not unroll the loop. The pragma will be ignored if the ICE evaluates to a non-
positive integer or to an integer greater than the maximum value representable by the
int data type.
Examples:
struct S1_t { static const int value = 4; };
template <int X, typename T2>
__device__ void foo(int *p1, int *p2) {
// unroll value = 8
#pragma unroll (X+1)
for (int i = 0; i < 12; ++i)
p1[i] += p2[i]*4;
// unroll value = 4
#pragma unroll (T2::value)
for (int i = 0; i < 12; ++i)
p1[i] += p2[i]*16;
}
‣ vadd2, vadd4
‣ vsub2, vsub4
13
See the C++ Standard for definition of integral constant expression.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 223
C++ Language Extensions
‣ vavrg2, vavrg4
‣ vabsdiff2, vabsdiff4
‣ vmin2, vmin4
‣ vmax2, vmax4
‣ vset2, vset4
PTX instructions, such as the SIMD video instructions, can be included in CUDA
programs by way of the assembler, asm(), statement.
The basic syntax of an asm() statement is:
asm("template-string" : "constraint"(output) : "constraint"(input)"));
This uses the vabsdiff4 instruction to compute an integer quad byte SIMD sum of
absolute differences. The absolute difference value is computed for each byte of the
unsigned integers A and B in SIMD fashion. The optional accumulate operation (.add)
is specified to sum these differences.
Refer to the document "Using Inline PTX Assembly in CUDA" for details on using
the assembly statement in your code. Refer to the PTX ISA documentation ("Parallel
Thread Execution ISA Version 3.0" for example) for details on the PTX instructions for
the version of PTX that you are using.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 224
Appendix C.
COOPERATIVE GROUPS
C.1. Introduction
Cooperative Groups is an extension to the CUDA programming model, introduced in
CUDA 9, for organizing groups of communicating threads. Cooperative Groups allows
developers to express the granularity at which threads are communicating, helping them
to express richer, more efficient parallel decompositions.
Historically, the CUDA programming model has provided a single, simple construct
for synchronizing cooperating threads: a barrier across all threads of a thread block, as
implemented with the __syncthreads() intrinsic function. However, programmers
would like to define and synchronize groups of threads at other granularities to enable
greater performance, design flexibility, and software reuse in the form of “collective”
group-wide function interfaces. In an effort to express broader patterns of parallel
interaction, many performance-oriented programmers have resorted to writing their
own ad hoc and unsafe primitives for synchronizing threads within a single warp,
or across sets of thread blocks running on a single GPU. Whilst the performance
improvements achieved have often been valuable, this has resulted in an ever-growing
collection of brittle code that is expensive to write, tune, and maintain over time and
across GPU generations. Cooperative Groups addresses this by providing a safe and
future-proof mechanism to enable performant code.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 225
Cooperative Groups
‣ New partition operations for thread block tiles and coalesced groups:
labeled_partition and binary_partition.
‣ New APIs, meta_group_rank and meta_group_size which provide information
about the partitioning that led to the creation of this group.
‣ Thread block tiles can now have their parent encoded in the type, which allows for
better compile-time optimization of emitted code.
‣ Interface change: grid_group must be constructed with this_grid() at
declaration time. The default constructor is removed.
Notice: In this release, we are moving towards requiring C++11 for the new features.
This will be required for all existing APIs in a future release.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 226
Cooperative Groups
Cooperative Groups requires CUDA 9.0 or later. To use Cooperative Groups, include the
header file:
The code can be compiled in a normal way using nvcc, however if you wish to use
memcpy_async or reduce functionality and your host compiler's default dialect is not C+
+11 or higher, then you must add --std=c++11 to the command line.
C.3.1. Composition Example
To illustrate the concept of groups, this example attempts to perform a block-wide
sum reduction. Previously, there were hidden constraints on the implementation when
writing this code:
All threads in the thread block must arrive at the __syncthreads() barrier, however,
this constraint is hidden from the developer who might want to use sum(…). With
Cooperative Groups, a better way of writing this would be:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 227
Cooperative Groups
C.4. Group Types
C.4.1. Implicit Groups
Implicit groups represent the launch configuration of the kernel. Regardless of how your
kernel is written, it always has a set number of threads, blocks and block dimensions,
a single grid and grid dimensions. In addition, if the multi-device cooperative launch
API is used, it can have multiple grids (single grid per device). These groups provide
a starting point for decomposition into finer grained groups which are typically HW
accelerated and are more specialzied for the problem the developer is solving.
Although you can create an implicit group anywhere in the code, it is dangerous to
do so. Creating a handle for an implicit group is a collective operation - all threads
in the group must participate. If the group was created in a conditional branch that
not all threads reach, this can lead to deadlocks or data corruption. For this reason, it
is recommended that you create a handle for the implicit group upfront (as early as
possible, before any branching has occured) and use that handle throughout the kernel.
Group handles must be initialized at declaration time (there is no default constructor)
for the same reason and copy-constructing them is discouraged.
thread_block g = this_thread_block();
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 228
Cooperative Groups
Example:
Note: that all threads in the group must participate in collective operations, or the
behavior is undefined.
Related: The thread_block datatype is derived from the more generic thread_group
datatype, which can be used to represent a wider class of groups.
C.4.1.2. Grid Group
This group object represents all the threads launched in a single grid. APIs other than
sync() are available at all times, but to be able to synchronize across the grid, you need
to use the cooperative launch API.
class grid_group;
Constructed via:
grid_group g = this_grid();
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 229
Cooperative Groups
C.4.2. Explicit Groups
C.4.2.1. Thread Block Tile
An templated version of a tiled group, where a template parameter is used to specify the
size of the tile - with this known at compile time there is the potential for more optimal
execution.
Constructed via:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 230
Cooperative Groups
/// The following code will create two sets of tiled groups, of size 32 and 4
respectively:
/// The latter has the provenance encoded in the type, while the first stores it
in the handle
thread_block block = this_thread_block();
thread_block_tile<32> tile32 = tiled_partition<32>(block);
thread_block_tile<4, thread_block> tile4 = tiled_partition<4>(block);
Note: that the thread_block_tile templated data structure is being used here,
and that the size of the group is passed to the tiled_partition call as a template
parameter rather than an argument.
C.4.2.2. Coalesced Groups
In CUDA’s SIMT architecture, at the hardware level the multiprocessor executes threads
in groups of 32 called warps. If there exists a data-dependent conditional branch in
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 231
Cooperative Groups
the application code such that threads within a warp diverge, then the warp serially
executes each branch disabling threads not on that path. The threads that remain
active on the path are referred to as coalesced. Cooperative Groups has functionality to
discover, and create, a group containing all coalesced threads.
Constructing the group handle via coalesced_threads() is opportunistic. It returns
the set of active threads at that point in time, and makes no guarantee about which
threads are returned (as long as they are active) or that they will stay coalesced
throughout execution (they will be brought back together for the execution of a
collective but can diverge again afterwards).
class coalesced_group;
Constructed via:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 232
Cooperative Groups
‣ sizeof(T) <= 32
Example:
C.4.2.2.1. Discovery Pattern
Commonly developers need to work with the current active set of threads. No
assumption is made about the threads that are present, and instead developers work
with the threads that happen to be there. This is seen in the following “aggregating
atomic increment across threads in a warp” example (written using the correct CUDA
9.0 set of intrinsics):
{
unsigned int writemask = __activemask();
unsigned int total = __popc(writemask);
unsigned int prefix = __popc(writemask & __lanemask_lt());
// Find the lowest-numbered active lane
int elected_lane = __ffs(writemask) - 1;
int base_offset = 0;
if (prefix == 0) {
base_offset = atomicAdd(p, total);
}
base_offset = __shfl_sync(writemask, base_offset, elected_lane);
int thread_offset = prefix + base_offset;
return thread_offset;
}
{
cg::coalesced_group g = cg::coalesced_threads();
int prev;
if (g.thread_rank() == 0) {
prev = atomicAdd(p, g.size());
}
prev = g.thread_rank() + g.shfl(prev, 0);
return prev;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 233
Cooperative Groups
C.5. Group Partitioning
C.5.1. tiled_partition
template <unsigned int Size, typename ParentT>
thread_block_tile<Size, ParentT> tiled_partition(const ParentT& g);
The tiled_partition method is a collective operation that partitions the parent group
into a one-dimensional, row-major, tiling of subgroups. A total of ((size(parent)/tilesz)
subgroups will be created, therefore the parent group size must be evenly divisible by
the Size. The allowed parent groups are thread_block or thread_block_tile.
The implementation may cause the calling thread to wait until all the members of the
parent group have invoked the operation before resuming execution. Functionality is
limited to native hardware sizes, 1/2/4/8/16/32 and the cg::size(parent) must be
greater than the Size parameter.
Codegen Requirements: Compute Capability 3.5 minimum
Example:
We can partition each of these groups into even smaller groups, each of size 4 threads:
If, for instance, if we were to then include the following line of code:
then the statement would be printed by every fourth thread in the block: the threads of
rank 0 in each tile4 group, which correspond to those threads with ranks 0,4,8,12,etc.
in the block group.
C.5.2. labeled_partition
coalesced_group labeled_partition(const coalesced_group& g, int label);
template <unsigned int Size>
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 234
Cooperative Groups
The implementation may cause the calling thread to wait until all the members of the
parent group have invoked the operation before resuming execution.
Note: This functionality is still being evaluated and may slightly change in the future.
Codegen Requirements: Compute Capability 7.0 minimum, C++11
C.5.3. binary_partition
coalesced_group binary_partition(const coalesced_group& g, bool pred);
template <unsigned int Size>
/// This example divides a 32-sized tile into a group with odd
/// numbers and a group with even numbers
_global__ void oddEven(int *inputArr) {
cg::thread_block cta = cg::this_thread_block();
cg::thread_block_tile<32> tile32 = cg::tiled_partition<32>(cta);
C.6. Group Collectives
C.6.1. Synchronization
C.6.1.1. sync
cooperative_groups::sync(T& group);
sync synchronizes the threads named in the group. T can be any of the existing
group types, as all of them support synchronization. If the group is a grid_group
or a multi_grid_group the kernel must have been launched using the appropriate
cooperative launch APIs.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 235
Cooperative Groups
C.6.2. Data Transfer
C.6.2.1. memcpy_async
template <class TyGroup, class TyElem>
size_t memcpy_async(TyGroup &group, TyElem *dst, size_t dstCount, const TyElem
*src, size_t srcCount);
/// This example streams elementsPerThreadBlock worth of data from global memory
/// into a limited sized shared memory (elementsInShared) block to operate on.
cg::thread_block tb = cg::this_thread_block();
size_t index = 0;
while (index < elementsPerThreadBlock) {
size_t copyCount = cg::memcpy_async(tb, local_smem, elementsInShared,
global_data + index, elementsPerThreadBlock - index);
cg::wait(tb);
// Work with local_smem
index += copyCount;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 236
Cooperative Groups
C.6.2.2. wait
template <class TyGroup>
void wait(TyGroup & group);
The waitcollective without the pipeline argument will block until all outstanding
memcpy_async requests have completed.
If a pipeline object was passed into memcpy_async then its possible to use
wait_prior<stage> or wait(..., stage) to implement a multi-stage pipeline.
In both cases the stage argument should be set to a distance value between the last
outstanding request and the one you wish to wait on.
All wait functions have the effect of synchronizing the named group of threads,
ensuring they are ready to consume the memory destination.
Codegen Requirements: Compute Capability 3.5 minimum, Compute Capability 8.0 for
asynchronicity, C++11
Example:
/// This example streams elementsPerThreadBlock worth of data from global memory
/// into a limited sized shared memory (elementsInShared) block to operate on in
/// multiple (two) stages. As stage N is kicked off, we can wait on and operate
on stage N-1.
cg::thread_block tb = cg::this_thread_block();
int stage = 0;
// First kick off an extra request
size_t index = cg::memcpy_async(tb, smem_ptr[stage], elementsInShared,
global_data, elementsPerThreadBlock - index);
while (index < elementsPerThreadBlock) {
// Now we kick off the next request...
size_t copyCount = cg::memcpy_async(tb, smem_ptr[stage ^ 1],
elementsInShared, global_data + index, elementsPerThreadBlock - index);
// ... but we wait on the one before it
cg::wait_prior<1>(tb);
// Its now available and we can work with smem_ptr[stage] here
index += copyCount;
// A cg::sync(tb) might be needed here depending on whether
// the work done with smem_ptr[stage] can release threads to race ahead or
not
// Wrap to the next stage
stage ^= 1;
}
cg::wait(tb);
// The last smem_ptr[stage] can be handled here
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 237
Cooperative Groups
C.6.3. Data manipulation
C.6.3.1. reduce
template <typename TyArg, typename TyOp, typename TyGroup>
auto reduce(const TyGroup& group, TyArg&& val, TyOp&& op) -> decltype(op(val,
val));
reduce performs a reduction operation on the data provided by each thread named in
the group passed in. This takes advantage of hardware acceleration (on compute 80 and
higher devices) for the arithmetic add, min, or max operations and the logical AND, OR,
or XOR, as well as providing a software fallback on older generation hardware. Only 4B
types are accelerated by hardware.
group: Valid group types are coalesced_group and thread_block_tile.
val: Any type that satisfies the below requirements:
‣ Qualifies as trivially copyable i.e. is_trivially_copyable<TyArg>::value ==
true
‣ sizeof(TyArg) <= 32
‣ Has suitable arithmetic or comparative operators for the given function object.
op: Valid function objects that will provide hardware acceleration with integral types
are plus(), less(), greater(), bit_and(), bit_xor(), bit_or(). These
must be constructed, hence the TyVal template argument is required, i.e. plus<int>().
Reduce also supports lambdas and other function objects that can be invoked using
operator()
Codegen Requirements: Compute Capability 3.5 minimum, Compute Capability 8.0 for
HW acceleration, C++11.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 238
Cooperative Groups
Example:
/// The following example accepts input in *A and outputs a result into *sum
/// It spreads the data within the block, one element per thread
#define blocksz 256
__global__ void block_reduce(const int *A, int *sum) {
__shared__ int reduction_s[blocksz];
C.6.3.2. Reduce Operators
Below are the prototypes of function objects for some of the basic operations that can be
done with reduce
namespace cooperative_groups {
template <typename Ty>
struct cg::plus;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 239
Cooperative Groups
‣ cg::plus: Accepts two values and returns the sum of both using operator+.
‣ cg::less: Accepts two values and returns the lesser using operator<. This differs
in that the lower value is returned rather than a boolean.
‣ cg::greater: Accepts two values and returns the greater using operator<. This
differs in that the greater value is returned rather than a boolean.
‣ cg::bit_and: Accepts two values and returns the result of operator&.
‣ cg::bit_xor: Accepts two values and returns the result of operator^.
‣ cg::bit_or: Accepts two values and returns the result of operator|.
Example:
{
// cg::plus<int> is specialized within cg::reduce and calls
__reduce_add_sync(...) on CC 8.0+
cg::reduce(tile, (int)val, cg::plus<int>());
C.7. Grid Synchronization
Prior to the introduction of Cooperative Groups, the CUDA programming model only
allowed synchronization between thread blocks at a kernel completion boundary. The
kernel boundary carries with it an implicit invalidation of state, and with it, potential
performance implications.
For example, in certain use cases, applications have a large number of small kernels,
with each kernel representing a stage in a processing pipeline. The presence of these
kernels is required by the current CUDA programming model to ensure that the thread
blocks operating on one pipeline stage have produced data before the thread block
operating on the next pipeline stage is ready to consume it. In such cases, the ability
to provide global inter thread block synchronization would allow the application to
be restructured to have persistent thread blocks, which are able to synchronize on the
device when a given stage is complete.
To synchronize across the grid, from within a kernel, you would simply use the
grid.sync() functionality:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 240
Cooperative Groups
And when launching the kernel it is necessary to use, instead of the <<<...>>>
execution configuration syntax, the cudaLaunchCooperativeKernel CUDA runtime
launch API or the CUDA driver equivalent.
Example:
To guarantee co-residency of the thread blocks on the GPU, the number of blocks
launched needs to be carefully considered. For example, as many blocks as there are SMs
can be launched as follows:
int device = 0;
cudaDeviceProp deviceProp;
cudaGetDeviceProperties(&deviceProp, dev);
// initialize, then launch
cudaLaunchCooperativeKernel((void*)my_kernel, deviceProp.multiProcessorCount,
numThreads, args);
Alternatively, you can maximize the exposed parallelism by calculating how many
blocks can fit simultaneously per-SM using the occupancy calculator as follows:
/// This will launch a grid that can maximally fill the GPU, on the default
stream with kernel arguments
int numBlocksPerSm = 0;
// Number of threads my_kernel will be launched with
int numThreads = 128;
cudaDeviceProp deviceProp;
cudaGetDeviceProperties(&deviceProp, dev);
cudaOccupancyMaxActiveBlocksPerMultiprocessor(&numBlocksPerSm, my_kernel,
numThreads, 0);
// launch
void *kernelArgs[] = { /* add kernel args */ };
dim3 dimBlock(numThreads, 1, 1);
dim3 dimGrid(deviceProp.multiProcessorCount*numBlocksPerSm, 1, 1);
cudaLaunchCooperativeKernel((void*)my_kernel, dimGrid, dimBlock, kernelArgs);
It is good practice to first ensure the device supports cooperative launches by querying
the device attribute cudaDevAttrCooperativeLaunch:
int dev = 0;
int supportsCoopLaunch = 0;
cudaDeviceGetAttribute(&supportsCoopLaunch, cudaDevAttrCooperativeLaunch, dev);
C.8. Multi-Device Synchronization
In order to enable synchronization across multiple devices with Cooperative Groups,
use of the cudaLaunchCooperativeKernelMultiDevice CUDA API is required.
This, a significant departure from existing CUDA APIs, will allow a single host thread
to launch a kernel across multiple devices. In addition to the constraints and guarantees
made by cudaLaunchCooperativeKernel, this API has additional semantics:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 241
Cooperative Groups
‣ This API will ensure that a launch is atomic, i.e. if the API call succeeds, then the
provided number of thread blocks will launch on all specified devices.
‣ The functions launched via this API must be identical. No explicit checks are
done by the driver in this regard because it is largely not feasible. It is up to the
application to ensure this.
‣ No two entries in the provided cudaLaunchParams may map to the same device.
‣ All devices being targeted by this launch must be of the same compute capability -
major and minor versions.
‣ The block size, grid size and amount of shared memory per grid must be the same
across all devices. Note that this means the maximum number of blocks that can be
launched per device will be limited by the device with the least number of SMs.
‣ Any user defined __device__, __constant__ or __managed__ device global
variables present in the module that owns the CUfunction being launched are
independently instantiated on every device. The user is responsible for initializing
such device global variables appropriately.
Optimal performance in multi-device synchronization is achieved by enabling peer
access via cuCtxEnablePeerAccess or cudaDeviceEnablePeerAccess for all
participating devices.
The launch parameters should be defined using an array of structs (one per device), and
launched with cudaLaunchCooperativeKernelMultiDevice
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 242
Cooperative Groups
Example:
cudaDeviceProp deviceProp;
cudaGetDeviceCount(&numGpus);
Also, as with grid-wide synchronization, the resulting device code looks very similar:
int dev = 0;
int supportsMdCoopLaunch = 0;
cudaDeviceGetAttribute(&supportsMdCoopLaunch,
cudaDevAttrCooperativeMultiDeviceLaunch, dev);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 243
Cooperative Groups
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 244
Appendix D.
CUDA DYNAMIC PARALLELISM
D.1. Introduction
D.1.1. Overview
Dynamic Parallelism is an extension to the CUDA programming model enabling a CUDA
kernel to create and synchronize with new work directly on the GPU. The creation of
parallelism dynamically at whichever point in a program that it is needed offers exciting
new capabilities.
The ability to create work directly from the GPU can reduce the need to transfer
execution control and data between host and device, as launch configuration decisions
can now be made at runtime by threads executing on the device. Additionally,
data-dependent parallel work can be generated inline within a kernel at run-time,
taking advantage of the GPU's hardware schedulers and load balancers dynamically
and adapting in response to data-driven decisions or workloads. Algorithms and
programming patterns that had previously required modifications to eliminate
recursion, irregular loop structure, or other constructs that do not fit a flat, single-level of
parallelism may more transparently be expressed.
This document describes the extended capabilities of CUDA which enable Dynamic
Parallelism, including the modifications and additions to the CUDA programming
model necessary to take advantage of these, as well as guidelines and best practices for
exploiting this added capacity.
Dynamic Parallelism is only supported by devices of compute capability 3.5 and higher.
D.1.2. Glossary
Definitions for terms used in this guide.
Grid
A Grid is a collection of Threads. Threads in a Grid execute a Kernel Function and are
divided into Thread Blocks.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 245
CUDA Dynamic Parallelism
Thread Block
A Thread Block is a group of threads which execute on the same multiprocessor (SM).
Threads within a Thread Block have access to shared memory and can be explicitly
synchronized.
Kernel Function
A Kernel Function is an implicitly parallel subroutine that executes under the CUDA
execution and memory model for every Thread in a Grid.
Host
The Host refers to the execution environment that initially invoked CUDA. Typically
the thread running on a system's CPU processor.
Parent
A Parent Thread, Thread Block, or Grid is one that has launched new grid(s), the Child
Grid(s). The Parent is not considered completed until all of its launched Child Grids
have also completed.
Child
A Child thread, block, or grid is one that has been launched by a Parent grid. A Child
grid must complete before the Parent Thread, Thread Block, or Grid are considered
complete.
Thread Block Scope
Objects with Thread Block Scope have the lifetime of a single Thread Block. They only
have defined behavior when operated on by Threads in the Thread Block that created
the object and are destroyed when the Thread Block that created them is complete.
Device Runtime
The Device Runtime refers to the runtime system and APIs available to enable Kernel
Functions to use Dynamic Parallelism.
D.2.1. Execution Environment
The CUDA execution model is based on primitives of threads, thread blocks, and
grids, with kernel functions defining the program executed by individual threads
within a thread block and grid. When a kernel function is invoked the grid's properties
are described by an execution configuration, which has a special syntax in CUDA.
Support for dynamic parallelism in CUDA extends the ability to configure, launch, and
synchronize upon new grids to threads that are running on the device.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 246
CUDA Dynamic Parallelism
launched, the runtime guarantees an implicit synchronization between the parent and
child.
Tim e
CPU Thread
Grid A Threads
Grid A - Parent
D.2.1.3. Synchronization
CUDA runtime operations from any thread, including kernel launches, are visible across
a thread block. This means that an invoking thread in the parent grid may perform
synchronization on the grids launched by that thread, by other threads in the thread
block, or on streams created within the same thread block. Execution of a thread block
is not considered complete until all launches by all threads in the block have completed.
If all threads in a block exit before all child launches have completed, a synchronization
operation will automatically be triggered.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 247
CUDA Dynamic Parallelism
Streams and events created within a grid exist within thread block scope but have
undefined behavior when used outside of the thread block where they were created. As
described above, all work launched by a thread block is implicitly synchronized when
the block exits; work launched into streams is included in this, with all dependencies
resolved appropriately. The behavior of operations on a stream that has been modified
outside of thread block scope is undefined.
Streams and events created on the host have undefined behavior when used within any
kernel, just as streams and events created by a parent grid have undefined behavior if
used within a child grid.
D.2.1.6. Device Management
There is no multi-GPU support from the device runtime; the device runtime is only
capable of operating on the device upon which it is currently executing. It is permitted,
however, to query properties for any CUDA capable device in the system.
D.2.2. Memory Model
Parent and child grids share the same global and constant memory storage, but have
distinct local and shared memory.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 248
CUDA Dynamic Parallelism
__syncthreads();
if (threadIdx.x == 0) {
child_launch<<< 1, 256 >>>(data);
cudaDeviceSynchronize();
}
__syncthreads();
}
D.2.2.1.3. Constant Memory
Constants are immutable and may not be modified from the device, even between
parent and child launches. That is to say, the value of all __constant__ variables must
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 249
CUDA Dynamic Parallelism
be set from the host prior to launch. Constant memory is inherited automatically by all
child kernels from their respective parents.
Taking the address of a constant memory object from within a kernel thread has the
same semantics as for all CUDA programs, and passing that pointer from parent to child
or from a child to parent is naturally supported.
D.2.2.1.5. Local Memory
Local memory is private storage for an executing thread, and is not visible outside of
that thread. It is illegal to pass a pointer to local memory as a launch argument when
launching a child kernel. The result of dereferencing such a local memory pointer from a
child will be undefined.
For example the following is illegal, with undefined behavior if x_array is accessed by
child_launch:
int x_array[10]; // Creates x_array in parent's local memory
child_launch<<< 1, 1 >>>(x_array);
D.2.2.1.6. Texture Memory
Writes to the global memory region over which a texture is mapped are incoherent with
respect to texture accesses. Coherence for texture memory is enforced at the invocation
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 250
CUDA Dynamic Parallelism
of a child grid and when a child grid completes. This means that writes to memory prior
to a child kernel launch are reflected in texture memory accesses of the child. Similarly,
writes to memory by a child will be reflected in the texture memory accesses by a parent,
but only after the parent synchronizes on the child's completion. Concurrent accesses by
parent and child may result in inconsistent data.
D.3. Programming Interface
‣ Dg is of type dim3 and specifies the dimensions and size of the grid
‣ Db is of type dim3 and specifies the dimensions and size of each thread block
‣ Ns is of type size_t and specifies the number of bytes of shared memory that
is dynamically allocated per thread block for this call and addition to statically
allocated memory. Ns is an optional argument that defaults to 0.
‣ S is of type cudaStream_t and specifies the stream associated with this call. The
stream must have been allocated in the same thread block where the call is being
made. S is an optional argument that defaults to 0.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 251
CUDA Dynamic Parallelism
may begin execution at any time after launch, but is not guaranteed to begin execution
until the launching thread reaches an explicit launch-synchronization point.
D.3.1.2. Streams
Both named and unnamed (NULL) streams are available from the device runtime.
Named streams may be used by any thread within a thread-block, but stream handles
may not be passed to other blocks or child/parent kernels. In other words, a stream
should be treated as private to the block in which it is created. Stream handles are not
guaranteed to be unique between blocks, so using a stream handle within a block that
did not allocate it will result in undefined behavior.
Similar to host-side launch, work launched into separate streams may run concurrently,
but actual concurrency is not guaranteed. Programs that depend upon concurrency
between child kernels are not supported by the CUDA programming model and will
have undefined behavior.
The host-side NULL stream's cross-stream barrier semantic is not supported on the
device (see below for details). In order to retain semantic compatibility with the host
runtime, all device streams must be created using the cudaStreamCreateWithFlags()
API, passing the cudaStreamNonBlocking flag. The cudaStreamCreate() call is a
host-runtime- only API and will fail to compile for the device.
As cudaStreamSynchronize() and cudaStreamQuery() are unsupported by
the device runtime, cudaDeviceSynchronize() should be used instead when the
application needs to know that stream-launched child kernels have completed.
D.3.1.3. Events
Only the inter-stream synchronization capabilities of CUDA events are
supported. This means that cudaStreamWaitEvent() is supported, but
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 252
CUDA Dynamic Parallelism
D.3.1.4. Synchronization
The cudaDeviceSynchronize() function will synchronize on all work launched by
any thread in the thread-block up to the point where cudaDeviceSynchronize() was
called. Note that cudaDeviceSynchronize() may be called from within divergent
code (see Block Wide Synchronization).
It is up to the program to perform sufficient additional inter-thread synchronization, for
example via a call to __syncthreads(), if the calling thread is intended to synchronize
with child grids invoked from other threads.
D.3.1.5. Device Management
Only the device on which a kernel is running will be controllable from that kernel.
This means that device APIs such as cudaSetDevice() are not supported by
the device runtime. The active device as seen from the GPU (returned from
cudaGetDevice()) will have the same device number as seen from the host system.
The cudaDeviceGetAttribute() call may request information about another device
as this API allows specification of a device ID as a parameter of the call. Note that the
catch-all cudaGetDeviceProperties() API is not offered by the device runtime -
properties must be queried individually.
D.3.1.6. Memory Declarations
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 253
CUDA Dynamic Parallelism
The device runtime does not support legacy module-scope (i.e., Fermi-style) textures
and surfaces within a kernel launched from the device. Module-scope (legacy)
textures may be created from the host and used in device code as for any kernel,
but may only be used by a top-level kernel (i.e., the one which is launched from the
host).
1
Dynamically created texture and surface objects are an addition to the CUDA memory model introduced with CUDA
5.0. Please see the CUDA Programming Guide for details.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 254
CUDA Dynamic Parallelism
smem[threadIdx.x] = data[threadIdx.x];
__syncthreads();
permute_data(smem, n);
__syncthreads();
if (threadIdx.x == 0) {
permute<<< 1, 256, n/2*sizeof(int) >>>(n/2, data);
permute<<< 1, 256, n/2*sizeof(int) >>>(n/2, data+n/2);
}
}
D.3.1.6.4. Symbol Addresses
Device-side symbols (i.e., those marked __device__) may be referenced from within a
kernel simply via the & operator, as all global-scope device variables are in the kernel's
visible address space. This also applies to __constant__ symbols, although in this case
the pointer will reference read-only data.
Given that device-side symbols can be referenced directly, those CUDA
runtime APIs which reference symbols (e.g., cudaMemcpyToSymbol() or
cudaGetSymbolAddress()) are redundant and hence not supported by the device
runtime. Note this implies that constant data cannot be altered from within a running
kernel, even ahead of a child kernel launch, as references to __constant__ space are
read-only.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 255
CUDA Dynamic Parallelism
The APIs for these launch functions are different to those of the CUDA Runtime API,
and are defined as follows:
extern device cudaError_t cudaGetParameterBuffer(void **params);
extern __device__ cudaError_t cudaLaunchDevice(void *kernel,
void *params, dim3 gridDim,
dim3 blockDim,
unsigned int sharedMemSize = 0,
cudaStream_t stream = 0);
D.3.1.8. API Reference
The portions of the CUDA Runtime API supported in the device runtime are detailed
here. Host and device runtime APIs have identical syntax; semantics are the same except
where indicated. The table below provides an overview of the API relative to the version
available from the host.
cudaDeviceGetLimit
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 256
CUDA Dynamic Parallelism
cudaGetErrorString
cudaGetDeviceCount
cudaStreamWaitEvent
cudaEventDestroy
cudaFuncGetAttributes
cudaMemset2DAsync
cudaMemset3DAsync
cudaRuntimeGetVersion
cudaOccupancyMaxActiveBlocksPerMultiprocessor
cudaOccupancyMaxPotentialBlockSize
cudaOccupancyMaxPotentialBlockSizeVariableSMem
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 257
CUDA Dynamic Parallelism
to the launched kernel. The parameter buffer can be NULL, i.e., no need to invoke
cudaGetParameterBuffer(), if the launched kernel does not take any parameters.
D.3.2.1.1. cudaLaunchDevice
At the PTX level, cudaLaunchDevice()needs to be declared in one of the two forms
shown below before it is used.
// PTX-level Declaration of cudaLaunchDevice() when .address_size is 64
.extern .func(.param .b32 func_retval0) cudaLaunchDevice
(
.param .b64 func,
.param .b64 parameterBuffer,
.param .align 4 .b8 gridDimension[12],
.param .align 4 .b8 blockDimension[12],
.param .b32 sharedMemSize,
.param .b64 stream
)
;
// PTX-level Declaration of cudaLaunchDevice() when .address_size is 32
.extern .func(.param .b32 func_retval0) cudaLaunchDevice
(
.param .b32 func,
.param .b32 parameterBuffer,
.param .align 4 .b8 gridDimension[12],
.param .align 4 .b8 blockDimension[12],
.param .b32 sharedMemSize,
.param .b32 stream
)
;
The first parameter is a pointer to the kernel to be is launched, and the second parameter
is the parameter buffer that holds the actual parameters to the launched kernel. The
layout of the parameter buffer is explained in Parameter Buffer Layout, below. Other
parameters specify the launch configuration, i.e., as grid dimension, block dimension,
shared memory size, and the stream associated with the launch (please refer to
Execution Configuration for the detailed description of launch configuration.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 258
CUDA Dynamic Parallelism
D.3.2.1.2. cudaGetParameterBuffer
cudaGetParameterBuffer() needs to be declared at the PTX level before it's used.
The PTX-level declaration must be in one of the two forms given below, depending on
address size:
// PTX-level Declaration of cudaGetParameterBuffer() when .address_size is 64
// When .address_size is 64
.extern .func(.param .b64 func_retval0) cudaGetParameterBuffer
(
.param .b64 alignment,
.param .b64 size
)
;
// PTX-level Declaration of cudaGetParameterBuffer() when .address_size is 32
.extern .func(.param .b32 func_retval0) cudaGetParameterBuffer
(
.param .b32 alignment,
.param .b32 size
)
;
The first parameter specifies the alignment requirement of the parameter buffer and
the second parameter the size requirement in bytes. In the current implementation, the
parameter buffer returned by cudaGetParameterBuffer() is always guaranteed to
be 64- byte aligned, and the alignment requirement parameter is ignored. However,
it is recommended to pass the correct alignment requirement value - which is
the largest alignment of any parameter to be placed in the parameter buffer - to
cudaGetParameterBuffer() to ensure portability in the future.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 259
CUDA Dynamic Parallelism
It is also possible to compile CUDA .cu source files first to object files, and then link
these together in a two-stage process:
$ nvcc -arch=sm_35 -dc hello_world.cu -o hello_world.o
$ nvcc -arch=sm_35 -rdc=true hello_world.o -o hello -lcudadevrt
Please see the Using Separate Compilation section of The CUDA Driver Compiler NVCC
guide for more details.
D.4. Programming Guidelines
D.4.1. Basics
The device runtime is a functional subset of the host runtime. API level device
management, kernel launching, device memcpy, stream management, and event
management are exposed from the device runtime.
Programming for the device runtime should be familiar to someone who already has
experience with CUDA. Device runtime syntax and semantics are largely the same as
that of the host API, with any exceptions detailed earlier in this document.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 260
CUDA Dynamic Parallelism
The following example shows a simple Hello World program incorporating dynamic
parallelism:
#include <stdio.h>
printf("World!\n");
}
return 0;
}
This program may be built in a single step from the command line as follows:
$ nvcc -arch=sm_35 -rdc=true hello_world.cu -o hello -lcudadevrt
D.4.2. Performance
D.4.2.1. Synchronization
Synchronization by one thread may impact the performance of other threads in the same
Thread Block, even when those other threads do not call cudaDeviceSynchronize()
themselves. This impact will depend upon the underlying implementation. In general
the implicit synchronization of child kernels done when a thread block ends is more
efficient compared to calling cudaDeviceSynchronize() explicitly. It is therefore
recommended to only call cudaDeviceSynchronize() if it is needed to synchronize with a
child kernel before a thread block ends.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 261
CUDA Dynamic Parallelism
D.4.3.1. Runtime
D.4.3.1.1. Memory Footprint
The device runtime system software reserves memory for various management
purposes, in particular one reservation which is used for saving parent-grid state
during synchronization, and a second reservation for tracking pending grid launches.
Configuration controls are available to reduce the size of these reservations in exchange
for certain launch limitations. See Configuration Options, below, for details.
The majority of reserved memory is allocated as backing-store for parent kernel state, for
use when synchronizing on a child launch. Conservatively, this memory must support
storing of state for the maximum number of live threads possible on the device. This
means that each parent generation at which cudaDeviceSynchronize() is callable
may require up to 860MB of device memory, depending on the device configuration,
which will be unavailable for program use even if it is not all consumed.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 262
CUDA Dynamic Parallelism
D.4.3.1.4. Configuration Options
Resource allocation for the device runtime system software is controlled via the
cudaDeviceSetLimit() API from the host program. Limits must be set before
any kernel is launched, and may not be changed while the GPU is actively running
programs.
The following named limits may be set:
Limit Behavior
cudaLimitDevRuntimeSyncDepth Sets the maximum depth at which
cudaDeviceSynchronize() may be
called. Launches may be performed deeper
than this, but explicit synchronization
deeper than this limit will return the
cudaErrorLaunchMaxDepthExceeded. The
default maximum sync depth is 2.
cudaLimitDevRuntimePendingLaunchCount Controls the amount of memory set aside for
buffering kernel launches which have not yet
begun to execute, due either to unresolved
dependencies or lack of execution resources.
When the buffer is full, the device runtime
system software will attempt to track new
pending launches in a lower performance
virtualized buffer. If the virtualized buffer
is also full, i.e. when all available heap
space is consumed, launches will not occur,
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 263
CUDA Dynamic Parallelism
Limit Behavior
and the thread's last error will be set to
cudaErrorLaunchPendingCountExceeded.
The default pending launch count is 2048
launches.
cudaLimitStackSize Controls the stack size in bytes of each
GPU thread. The CUDA driver automatically
increases the per-thread stack size for each
kernel launch as needed. This size isn't
reset back to the original value after each
launch. To set the per-thread stack size to
a different value, cudaDeviceSetLimit()
can be called to set this limit. The stack
will be immediately resized, and if
necessary, the device will block until all
preceding requested tasks are complete.
cudaDeviceGetLimit() can be called to
get the current per-thread stack size.
D.4.3.1.7. ECC Errors
No notification of ECC errors is available to code within a CUDA kernel. ECC errors
are reported at the host side once the entire launch tree has completed. Any ECC errors
which arise during execution of a nested program will either generate an exception or
continue execution (depending upon error and configuration).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 264
Appendix E.
VIRTUAL MEMORY MANAGEMENT
E.1. Introduction
The Virtual Memory Management APIs provide a way for the application to directly
manage the unified virtual address space that CUDA provides to map physical memory
to virtual addresses accessible by the GPU. Introduced in CUDA 10.2, these APIs
additionally provide a new way to interop with other processes and graphics APIs like
OpenGL and Vulkan, as well as provide newer memory attributes that a user can tune to
fit their applications.
Historically, memory allocation calls (eg. cudaMalloc) in the CUDA programming
model have returned a memory address that points to the GPU memory. The address
thus obtained could be used with any CUDA API or inside a device kernel. However,
the memory allocated could not be resized depending on the user's memory needs. In
order to increase an allocation's size, the user had to explicitly allocate a larger buffer,
copy data from the initial allocation, free it and then continue to keep track of the newer
allocation's address. This often lead to lower performance and higher peak memory
utilization for applications. Essentially, users had a malloc-like interface for allocating
GPU memory, but did not have a corresponding realloc to compliment it. The Virtual
Memory Management APIs decouple the idea of an address and memory and allow the
application to handle them separately. The APIs allow applications to map and unmap
memory from a virtual address range as they see fit.
In the case of enabling peer device access to memory allocations via
cudaEnablePeerAccess, all past and future user allocations are mapped to the
target peer device. This lead to users unwittingly paying runtime cost of mapping
all cudaMalloc allocations to peer devices. However, in most situations applications
communicate by sharing only a few allocations with another device and not all
allocations are required to be mapped to all the devices. With Virtual Memory
Management applications can specifically choose certain allocations to be accessible
from target devices.
The CUDA Virtual Memory Management APIs expose fine grained control to the user
for managing the GPU memory in applications. It provides APIs that lets users:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 265
Virtual Memory Management
int deviceSupportsVmm;
CUresult result = cuDeviceGetAttribute(&deviceSupportsVmm,
CU_DEVICE_ATTRIBUTE_VIRTUAL_ADDRESS_MANAGEMENT_SUPPORTED, device);
if (deviceSupportsVmm != 0) {
// `device` supports Virtual Memory Management
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 266
Virtual Memory Management
return allocHandle;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 267
Virtual Memory Management
Users must ensure they query for support of the requested handle type before
attempting to export memory allocated with cuMemCreate. The following code snippet
illustrates query for handle type support in a platform specific way.
int deviceSupportsIpcHandle;
#if defined(__linux__)
cuDeviceGetAttribute(&deviceSupportsIpcHandle,
CU_DEVICE_ATTRIBUTE_HANDLE_TYPE_POSIX_FILE_DESCRIPTOR_SUPPORTED, device));
#else
cuDeviceGetAttribute(&deviceSupportsIpcHandle,
CU_DEVICE_ATTRIBUTE_HANDLE_TYPE_WIN32_HANDLE_SUPPORTED, device));
#endif
#if defined(__linux__)
prop.requestedHandleTypes = CU_MEM_HANDLE_TYPE_POSIX_FILE_DESCRIPTOR;
#else
prop.requestedHandleTypes = CU_MEM_HANDLE_TYPE_WIN32;
prop.win32HandleMetaData = // Windows specific LPSECURITYATTRIBUTES
attribute.
#endif
The memMapIpcDrv sample can be used as an example for using IPC with Virtual
Memory Management allocations.
E.3.2. Memory Type
Before CUDA 10.2, applications had no user controlled way of allocating any
special type of memory that certain devices may support. With cuMemCreate
applications can additionally specify memory type requirements using the
CUmemAllocationProp::allocFlags to opt into any specific memory features.
Applications must also ensure that the requested memory type is supported on the
device of allocation.
E.3.2.1. Compressible Memory
Compressible memory can be used to accelerate read/write accesses to data
with unstructured sparsity and other compressible data patterns. Compression
can save DRAM read/write bandwidth, L2 read bandwidth and L2 capacity
depending on the data being operated on. Applications that want to allocate
compressible memory on devices that support Compute Data Compression can
do so by setting CUmemAllocationProp::allocFlags::compressionType
to CU_MEM_ALLOCATION_COMP_GENERIC. Users must query
if device supports Compute Data Compression by using
CU_DEVICE_ATTRIBUTE_GENERIC_COMPRESSION_SUPPORTED. The following code
snippet illustrates querying compressible memory support cuDeviceGetAttribute.
int compressionSupported = 0;
cuDeviceGetAttribute(&compressionSupported,
CU_DEVICE_ATTRIBUTE_GENERIC_COMPRESSION_SUPPORTED, device);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 268
Virtual Memory Management
On devices that support Compute Data Compression, users need to opt in at allocation
time as shown below:
prop.allocFlags.compressionType = CU_MEM_ALLOCATION_COMP_GENERIC;
Due to various reasons such as limited HW resources, the allocation may not have
compression attributes, the user is expected to query back the properties of the
allocated memory using cuMemGetAllocationPropertiesFromHandle and check for
compression attribute.
if (allocationProp.allocFlags.compressionType == CU_MEM_ALLOCATION_COMP_GENERIC)
{
// Obtained compressible memory allocation
}
CUdeviceptr ptr;
// `ptr` holds the returned start of virtual address range reserved.
CUresult result = cuMemAddressReserve(&ptr, size, 0, 0, 0); // alignment = 0 for
default alignment
E.5. Mapping Memory
The allocated physical memory and the carved out virtual address space from the
previous two sections represent the memory and address distinction introduced by the
Virtual Memory Management APIs. For the allocated memory to be useable, the user
must first place the memory in the address space. The address range obtained from
cuMemAddressReserve and the physical allocation obtained from cuMemCreate or
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 269
Virtual Memory Management
CUdeviceptr ptr;
// `ptr`: address in the address range previously reserved by
cuMemAddressReserve.
// `allocHandle`: CUmemGenericAllocationHandle obtained by a previous call to
cuMemCreate.
CUresult result = cuMemMap(ptr, size, 0, allocHandle, 0);
The access control mechanism exposed with Virtual Memory Management allows users
to be explicit about which allocations they wish to share with other peer devices on
the system. As specified earlier, cudaEnablePeerAccess forces all prior and future
cudaMalloc'd allocations to be mapped to the target peer device. This can be convenient
in many cases as user doesn't have to worry about tracking the mapping state of every
allocation to every device in the system. But for users concerned with performance of
their applications this approach has performance implications. With access control at
allocation granularity Virtual Memory Mangement exposes a mechanism to have peer
mappings with minimal overhead.
The vectorAddMMAP sample can be used as an example for using the Virtual Memory
Management APIs.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 270
Appendix F.
MATHEMATICAL FUNCTIONS
The reference manual lists, along with their description, all the functions of the C/C++
standard library mathematical functions that are supported in device code, as well as all
intrinsic functions (that are only supported in device code).
This appendix provides accuracy information for some of these functions when
applicable. It uses ULP for quantification. For further information on the definition of
the Unit in the Last Place (ULP), please see Jean-Michel Muller's paper On the definition
of ulp(x), RR-5504, LIP RR-2005-09, INRIA, LIP. 2005, pp.16 at https://hal.inria.fr/
inria-00070503/document.
F.1. Standard Functions
The functions from this section can be used in both host and device code.
This section specifies the error bounds of each function when executed on the device and
also when executed on the host in the case where the host does not supply the function.
The error bounds are generated from extensive but not exhaustive tests, so they are not
guaranteed bounds.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 271
Mathematical Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 272
Mathematical Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 273
Mathematical Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 274
Mathematical Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 275
Mathematical Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 276
Mathematical Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 277
Mathematical Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 278
Mathematical Functions
F.2. Intrinsic Functions
The functions from this section can only be used in device code.
Among these functions are the less accurate, but faster versions of some of the functions
of Standard Functions .They have the same name prefixed with __ (such as __sinf(x)).
They are faster as they map to fewer native instructions. The compiler has an option
(-use_fast_math) that forces each function in Table 9 to compile to its intrinsic
counterpart. In addition to reducing the accuracy of the affected functions, it may
also cause some differences in special case handling. A more robust approach is to
selectively replace mathematical function calls by calls to intrinsic functions only where
it is merited by the performance gains and where changed properties such as reduced
accuracy and different special case handling can be tolerated.
sinf(x) __sinf(x)
cosf(x) __cosf(x)
tanf(x) __tanf(x)
sincosf(x,sptr,cptr) __sincosf(x,sptr,cptr)
logf(x) __logf(x)
log2f(x) __log2f(x)
log10f(x) __log10f(x)
expf(x) __expf(x)
exp10f(x) __exp10f(x)
powf(x,y) __powf(x,y)
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 279
Mathematical Functions
Functions suffixed with _rn operate using the round to nearest even rounding mode.
Functions suffixed with _rz operate using the round towards zero rounding mode.
Functions suffixed with _ru operate using the round up (to positive infinity) rounding
mode.
Functions suffixed with _rd operate using the round down (to negative infinity)
rounding mode.
The accuracy of floating-point division varies depending on whether the code is
compiled with -prec-div=false or -prec-div=true. When the code is compiled
with -prec-div=false, both the regular division / operator and __fdividef(x,y)
have the same accuracy, but for 2126 < y < 2128, __fdividef(x,y) delivers a result of
zero, whereas the / operator delivers the correct result to within the accuracy stated in
Table 10. Also, for 2126 < y < 2128, if x is infinity, __fdividef(x,y) delivers a NaN (as
a result of multiplying infinity by zero), while the / operator returns infinity. On the
other hand, the / operator is IEEE-compliant when the code is compiled with -prec-
div=true or without any -prec-div option at all since its default value is true.
__fadd_[rn,rz,ru,rd](x,y) IEEE-compliant.
__fsub_[rn,rz,ru,rd](x,y) IEEE-compliant.
__fmul_[rn,rz,ru,rd](x,y) IEEE-compliant.
__fmaf_[rn,rz,ru,rd](x,y,z) IEEE-compliant.
__frcp_[rn,rz,ru,rd](x) IEEE-compliant.
__fsqrt_[rn,rz,ru,rd](x) IEEE-compliant.
__frsqrt_rn(x) IEEE-compliant.
__fdiv_[rn,rz,ru,rd](x,y) IEEE-compliant.
-126 126
__fdividef(x,y) For y in [2 ,2 ], the maximum ulp error is 2.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 280
Mathematical Functions
__dadd_[rn,rz,ru,rd](x,y) IEEE-compliant.
__dsub_[rn,rz,ru,rd](x,y) IEEE-compliant.
__dmul_[rn,rz,ru,rd](x,y) IEEE-compliant.
__fma_[rn,rz,ru,rd](x,y,z) IEEE-compliant.
__ddiv_[rn,rz,ru,rd](x,y)(x,y) IEEE-compliant.
__drcp_[rn,rz,ru,rd](x) IEEE-compliant.
__dsqrt_[rn,rz,ru,rd](x) IEEE-compliant.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 281
Mathematical Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 282
Appendix G.
C++ LANGUAGE SUPPORT
As described in Compilation with NVCC, CUDA source files compiled with nvcc can
include a mix of host code and device code. The CUDA frontend compiler aims to
emulate the host compiler behavior with respect to C++ input code. The input source
code is processed according to the C++ ISO/IEC 14882:2003, C++ ISO/IEC 14882:2011, C+
+ ISO/IEC 14882:2014 or C++ ISO/IEC 14882:2017 specifications, and the CUDA frontend
compiler aims to emulate any host compiler divergences from the ISO specification. In
addition, the supported language is extended with CUDA-specific constructs described
in this document 14, and is subject to the restrictions described below.
C++11 Language Features, C++14 Language Features and C++17 Language Features
provide support matrices for the C++11, C++14 and C++17 features, respectively.
Restrictions lists the language restrictions. Polymorphic Function Wrappers and
Extended Lambdas describe additional features. Code Samples gives code samples.
Available
C++11 in nvcc
Language Feature
Proposal (device
code)
Rvalue references N2118 7.0
Rvalue references for *this N2439 7.0
Initialization of class objects by rvalues N1610 7.0
14
e.g., the <<<...>>> syntax for launching kernels.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 283
C++ Language Support
Available
C++11 in nvcc
Language Feature
Proposal (device
code)
Non-static data member initializers N2756 7.0
Variadic templates N2242 7.0
Extending variadic template template parameters N2555 7.0
Initializer lists N2672 7.0
Static assertions N1720 7.0
auto-typed variables N1984 7.0
Multi-declarator auto N1737 7.0
Removal of auto as a storage-class specifier N2546 7.0
New function declarator syntax N2541 7.0
Lambda expressions N2927 7.0
Declared type of an expression N2343 7.0
Incomplete return types N3276 7.0
Right angle brackets N1757 7.0
Default template arguments for function templates DR226 7.0
Solving the SFINAE problem for expressions DR339 7.0
Alias templates N2258 7.0
Extern templates N1987 7.0
Null pointer constant N2431 7.0
Strongly-typed enums N2347 7.0
N2764
Forward declarations for enums 7.0
DR1206
Standardized attribute syntax N2761 7.0
Generalized constant expressions N2235 7.0
Alignment support N2341 7.0
Conditionally-support behavior N1627 7.0
Changing undefined behavior into diagnosable errors N1727 7.0
Delegating constructors N1986 7.0
Inheriting constructors N2540 7.0
Explicit conversion operators N2437 7.0
New character types N2249 7.0
Unicode string literals N2442 7.0
Raw string literals N2442 7.0
Universal character names in literals N2170 7.0
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 284
C++ Language Support
Available
C++11 in nvcc
Language Feature
Proposal (device
code)
User-defined literals N2765 7.0
Standard Layout Types N2342 7.0
Defaulted functions N2346 7.0
Deleted functions N2346 7.0
Extended friend declarations N1791 7.0
N2253
Extending sizeof 7.0
DR850
Inline namespaces N2535 7.0
Unrestricted unions N2544 7.0
Local and unnamed types as template arguments N2657 7.0
Range-based for N2930 7.0
N2928
Explicit virtual overrides N3206 7.0
N3272
Minimal support for garbage collection and reachability-based leak N/A (see
N2670
detection Restrictions)
Allowing move constructors to throw [noexcept] N3050 7.0
Defining move special member functions N3053 7.0
Concurrency
Sequence points N2239
Atomic operations N2427
Strong Compare and Exchange N2748
Bidirectional Fences N2752
Memory model N2429
Data-dependency ordering: atomics and memory model N2664
Propagating exceptions N2179
Allow atomics use in signal handlers N2547
Thread-local storage N2659
Dynamic initialization and destruction with concurrency N2660
C99 Features in C++11
__func__ predefined identifier N2340 7.0
C99 preprocessor N1653 7.0
long long N1811 7.0
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 285
C++ Language Support
Available
C++11 in nvcc
Language Feature
Proposal (device
code)
Extended integral types N1988
Available
C++14 in nvcc
Language Feature
Proposal (device
code)
Tweak to certain C++ contextual conversions N3323 9.0
Binary literals N3472 9.0
Functions with deduced return type N3638 9.0
Generalized lambda capture (init-capture) N3648 9.0
Generic (polymorphic) lambda expressions N3649 9.0
Variable templates N3651 9.0
Relaxing requirements on constexpr functions N3652 9.0
Member initializers and aggregates N3653 9.0
Clarifying memory allocation N3664
Sized deallocation N3778
[[deprecated]] attribute N3760 9.0
Single-quotation-mark as a digit separator N3781 9.0
G.4. Restrictions
G.4.1. Host Compiler Extensions
Host compiler specific language extensions are not supported in device code.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 286
C++ Language Support
G.4.2. Preprocessor Symbols
G.4.2.1. __CUDA_ARCH__
1. The type signature of the following entities shall not depend on whether
__CUDA_ARCH__ is defined or not, or on a particular value of __CUDA_ARCH__:
‣ __global__ functions and function templates
‣ __device__ and __constant__ variables
‣ textures and surfaces
Example:
#if !defined(__CUDA_ARCH__)
typedef int mytype;
#else
typedef double mytype;
#endif
int main(void)
{
foo();
cudaDeviceSynchronize();
return 0;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 287
C++ Language Support
#if !defined(__CUDA_ARCH__)
void foo(void) { } // error: The definition of foo()
// is only present when __CUDA_ARCH__
// is undefined
#endif
Then if a.cu and b.cu both include a.h and instantiate getptr for the same type, and
b.cu expects a non-NULL address, and compile with:
nvcc –arch=compute_20 –dc a.cu
nvcc –arch=compute_30 –dc b.cu
nvcc –arch=sm_30 a.o b.o
At link time only one version of the getptr is used, so the behavior would depend
on which version is picked. To avoid this, either a.cu and b.cu must be compiled for
the same compute arch, or __CUDA_ARCH__ should not be used in the shared header
function.
The compiler does not guarantee that a diagnostic will be generated for the unsupported
uses of __CUDA_ARCH__ described above.
G.4.3. Qualifiers
G.4.3.1. Device Memory Space Specifiers
The __device__, __shared__, __managed__ and __constant__ memory space
specifiers are not allowed on:
15
This does not apply to entities that may be defined in more than one translation unit, such as compiler generated
template instantiations.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 288
C++ Language Support
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 289
C++ Language Support
‣ The address or value of a managed variable shall not be used when the CUDA
runtime may not be in a valid state, including the following cases:
‣ In static/dynamic initialization or destruction of an object with static or thread
local storage duration.
‣ In code that executes after exit() has been called (e.g., a function marked with
gcc's "__attribute__((destructor))").
‣ In code that executes when CUDA runtime may not be initialized (e.g., a
function marked with gcc's "__attribute__((constructor))").
‣ A managed variable cannot be used as an unparenthesized id-expression argument
to a decltype() expression.
‣ Managed variables have the same coherence and consistency behavior as specified
for dynamically allocated managed memory.
‣ When a CUDA program containing managed variables is run on an execution
platform with multiple GPUs, the variables are allocated only once, and not per
GPU.
‣ A managed variable declaration without the extern linkage is not allowed within a
function that executes on the host.
‣ A managed variable declaration without the extern or static linkage is not allowed
within a function that executes on the device.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 290
C++ Language Support
__device__ __managed__ const int yyy = 10; // error: const qualified type
G.4.3.3. Volatile Qualifier
The compiler is free to optimize reads and writes to global or shared memory (for
example, by caching global reads into registers or L1 cache) as long as it respects the
memory ordering semantics of memory fence functions (Memory Fence Functions) and
memory visibility semantics of synchronization functions (Synchronization Functions).
These optimizations can be disabled using the volatile keyword: If a variable located
in global or shared memory is declared as volatile, the compiler assumes that its value
can be changed or used at any time by another thread and therefore any reference to this
variable compiles to an actual memory read or write instruction.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 291
C++ Language Support
G.4.4. Pointers
Dereferencing a pointer either to global or shared memory in code that is executed
on the host, or to host memory in code that is executed on the device results in an
undefined behavior, most often in a segmentation fault and application termination.
The address obtained by taking the address of a __device__, __shared__ or
__constant__ variable can only be used in device code. The address of a __device__
or __constant__ variable obtained through cudaGetSymbolAddress() as described
in Device Memory can only be used in host code.
G.4.5. Operators
G.4.5.1. Assignment Operator
__constant__ variables can only be assigned from the host code through runtime
functions (Device Memory); they cannot be assigned from the device code.
__shared__ variables cannot have an initialization as part of their declaration.
It is not allowed to assign values to any of the built-in variables defined in Built-in
Variables.
G.4.5.2. Address Operator
It is not allowed to take the address of any of the built-in variables defined in Built-in
Variables.
G.4.7. Exception Handling
Exception handling is only supported in host code, but not in device code.
Exception specification is not supported for __global__ functions.
G.4.8. Standard Library
Standard libraries are only supported in host code, but not in device code, unless
specified otherwise.
G.4.9. Functions
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 292
C++ Language Support
G.4.9.1. External Linkage
A call within some device code of a function declared with the extern qualifier is only
allowed if the function is defined within the same compilation unit as the device code,
i.e., a single file or several files linked together with relocatable device code and nvlink.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 293
C++ Language Support
For example:
struct Base1 { virtual __host__ __device__ ~Base1() { } };
struct Derived1 : Base1 { }; // implicitly-declared virtual destructor
// ~Derived1 has __host__ __device__
// execution space specifiers
G.4.9.3. Function Parameters
__global__ function parameters are passed to the device via constant memory and are
limited to 4 KB.
__global__ functions cannot have a variable number of arguments.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 294
C++ Language Support
Examples of legal and illegal uses of function-scope static variables are shown below.
struct S1_t {
int x;
};
struct S2_t {
int x;
__device__ S2_t(void) { x = 10; }
};
struct S3_t {
int x;
__device__ S3_t(int p) : x(p) { }
};
int x = 33;
static int i6 = x; // error: dynamic initialization is not allowed
static S1_t i7 = {x}; // error: dynamic initialization is not allowed
G.4.9.5. Function Pointers
The address of a __global__ function taken in host code cannot be used in device code
(e.g. to launch the kernel). Similarly, the address of a __global__ function taken in
device code 16 cannot be used in host code.
It is not allowed to take the address of a __device__ function in host code.
G.4.9.6. Function Recursion
__global__ functions do not support recursion.
G.4.9.7. Friend Functions
A __global__ function or function template cannot be defined in a friend declaration.
16
supported with architectures >= sm_35
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 295
C++ Language Support
Example:
struct S1_t {
friend __global__
void foo1(void); // OK: not a definition
template<typename T>
friend __global__
void foo2(void); // OK: not a definition
friend __global__
void foo3(void) { } // error: definition in friend declaration
template<typename T>
friend __global__
void foo4(void) { } // error: definition in friend declaration
};
G.4.9.8. Operator Function
An operator function cannot be a __global__ function.
G.4.10. Classes
G.4.10.1. Data Members
Static data members are not supported except for those that are also const-qualified (see
Const-qualified variables).
G.4.10.2. Function Members
Static member functions cannot be __global__ functions.
G.4.10.3. Virtual Functions
When a function in a derived class overrides a virtual function in a base class, the
execution space specifiers (i.e., __host__, __device__) on the overridden and
overriding functions must match.
It is not allowed to pass as an argument to a __global__ function an object of a class
with virtual functions.
If an object is created in host code, invoking a virtual function for that object in device
code has undefined behavior.
If an object is created in device code, invoking a virtual function for that object in host
code has undefined behavior.
See Windows-Specific for additional constraints when using the Microsoft host compiler.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 296
C++ Language Support
Example:
struct S1 { virtual __host__ __device__ void foo() { } };
int main(void) {
void *buf;
cudaMallocManaged(&buf, sizeof(S1), cudaMemAttachGlobal);
ptr1 = new (buf) S1();
kern<<<1,1>>>();
cudaDeviceSynchronize();
ptr2->foo(); // error: virtual function call on an object
// created in device code.
}
G.4.10.5. Anonymous Unions
Member variables of a namespace scope anonymous union cannot be referenced in a
__global__ or __device__ function.
G.4.10.6. Windows-Specific
The CUDA compiler follows the IA64 ABI for class layout, while the Microsoft host
compiler does not. Let T denote a pointer to member type, or a class type that satisfies
any of the following conditions:
‣ T has virtual functions.
‣ T has a virtual base class.
‣ T has multiple inheritance with more than one direct or indirect empty base class.
‣ All direct and indirect base classes B of T are empty and the type of the first field F
of T uses B in its definition, such that B is laid out at offset 0 in the definition of F.
Let C denote T or a class type that has T as a field type or as a base class type. The CUDA
compiler may compute the class layout and size differently than the Microsoft host
compiler for the type C.
As long as the type C is used exclusively in host or device code, the program should
work correctly.
Passing an object of type C between host and device code has undefined behavior e.g., as
an argument to a __global__ function or through cudaMemcpy*() calls.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 297
C++ Language Support
G.4.11. Templates
A type or template cannot be used in the type, non-type or template template argument
of a __global__ function template instantiation or a __device__/__constant__
variable instantiation if either:
‣ The type or template is defined within a __host__ or __host__ __device__.
‣ The type or template is a class member with private or protected access and its
parent class is not defined within a __device__ or __global__ function.
‣ The type is unnamed.
‣ The type is compounded from any of the types above.
Example:
template <typename T>
__global__ void myKernel(void) { }
class myClass {
private:
struct inner_t { };
public:
static void launch(void)
{
// error: inner_t is used in template argument
// but it is private
myKernel<inner_t><<<1,1>>>();
}
};
// C++14 only
template <typename T> __device__ T d1;
void fn() {
struct S1_t { };
// error (C++14 only): S1_t is local to the function fn
d1<S1_t> = {};
auto lam1 = [] { };
// error (C++14 only): a closure type cannot be used for
// instantiating a variable template
d2<int, decltype(lam1)> = 10;
}
17
One way to debug suspected layout mismatch of a type C is to use printf to output the values of sizeof(C) and
offsetof(C, field) in host and device code.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 298
C++ Language Support
G.4.13. Const-qualified variables
Let 'V' denote a namespace scope variable or a class static member variable that has
const qualified type and does not have execution space annotations (e.g., __device__,
__constant__, __shared__). V is considered to be a host code variable.
The value of V may be directly used in device code, if
‣ V has been initialized with a constant expression before the point of use,
‣ the type of V is not volatile-qualified, and
‣ it has one of the following types:
‣ builtin floating point type except when the Microsoft compiler is used as the
host compiler,
‣ builtin integral type.
Device source code cannot contain a reference to V or take the address of V.
Example:
const int xxx = 10;
struct S1_t { static const int yyy = 20; };
G.4.14. Long Double
The use of long double type is not supported in device code.
G.4.15. Deprecation Annotation
nvcc supports the use of deprecated attribute when using gcc, clang, xlC, icc or
pgcc host compilers, and the use of deprecated declspec when using the cl.exe host
compiler. It also supports the [[deprecated]] standard attribute when the C++14
dialect has been enabled. The CUDA frontend compiler will generate a deprecation
diagnostic for a reference to a deprecated entity from within the body of a __device__,
__global__ or __host__ __device__ function when __CUDA_ARCH__ is defined
(i.e., during device compilation phase). Other references to deprecated entities will be
handled by the host compiler, e.g., a reference from within a __host__ function.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 299
C++ Language Support
The CUDA frontend compiler does not support the #pragma gcc diagnostic or
#pragma warning mechanisms supported by various host compilers. Therefore,
deprecation diagnostics generated by the CUDA frontend compiler are not affected
by these pragmas, but diagnostics generated by the host compiler will be affected. The
nvcc flag -Wno-deprecated-declarations can be used to suppress all deprecation
warnings, and the flag -Werror=deprecated-declarations can be used to turn
deprecation warnings into errors.
G.4.16. C++11 Features
C++11 features that are enabled by default by the host compiler are also supported
by nvcc, subject to the restrictions described in this document. In addition, invoking
nvcc with -std=c++11 flag turns on all C++11 features and also invokes the host
preprocessor, compiler and linker with the corresponding C++11 dialect option 18.
G.4.16.1. Lambda Expressions
The execution space specifiers for all member functions19 of the closure class associated
with a lambda expression are derived by the compiler as follows. As described in
the C++11 standard, the compiler creates a closure type in the smallest block scope,
class scope or namespace scope that contains the lambda expression. The innermost
function scope enclosing the closure type is computed, and the corresponding function's
execution space specifiers are assigned to the closure class member functions. If there is
no enclosing function scope, the execution space specifier is __host__.
18
At present, the -std=c++11 flag is supported only for the following host compilers : gcc version >= 4.7, clang, icc >= 15,
and xlc >= 13.1
19
including operator()
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 300
C++ Language Support
Examples of lambda expressions and computed execution space specifiers are shown
below (in comments).
void f1(void) {
auto l1 = [] { return 1; }; // __host__
}
The closure type of a lambda expression cannot be used in the type or non-type
argument of a __global__ function template instantiation, unless the lambda is defined
within a __device__ or __global__ function.
Example:
void bar(void) {
auto temp1 = [] { };
G.4.16.2. std::initializer_list
By default, the CUDA compiler will implicitly consider the member functions of
std::initializer_list to have __host__ __device__ execution space specifiers,
and therefore they can be invoked directly from device code. The nvcc flag --no-
host-device-initializer-list will disable this behavior; member functions of
std::initializer_list will then be considered as __host__ functions and will not
be directly invokable from device code.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 301
C++ Language Support
Example:
#include <initializer_list>
int i = 4;
foo({i,5,6}); // (b) initializer list with at least one
// non-constant element.
// This form may have better performance than (a).
}
G.4.16.3. Rvalue references
By default, the CUDA compiler will implicitly consider std::move and std::forward
function templates to have __host__ __device__ execution space specifiers, and
therefore they can be invoked directly from device code. The nvcc flag --no-host-
device-move-forward will disable this behavior; std::move and std::forward
will then be considered as __host__ functions and will not be directly invokable from
device code.
G.4.16.5. Constexpr variables
Let 'V' denote a namespace scope variable or a class static member variable that has
been marked constexpr and that does not have execution space annotations (e.g.,
__device__, __constant__, __shared__). V is considered to be a host code
variable.
If V is of scalar type 22 other than long double and the type is not volatile-qualified,
the value of V can be directly used in device code. In addition, if V is of a non-scalar
type then scalar elements of V can be used inside a constexpr __device__ or __host__
__device__ function, if the call to the function is a constant expression 23. Device source
code cannot contain a reference to V or take the address of V.
20
The restrictions are the same as with a non-constexpr callee function.
21
Note that the behavior of experimental flags may change in future compiler releases.
22
C++ Standard Section [basic.types]
23
C++ Standard Section [expr.const]
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 302
C++ Language Support
Example:
G.4.16.6. Inline namespaces
For an input CUDA translation unit, the CUDA compiler may invoke the host compiler
for compiling the host code within the translation unit. In the code passed to the host
compiler, the CUDA compiler will inject additional compiler generated code, if the input
CUDA translation unit contained a definition of any of the following entities:
‣ __global__ function or function template instantiation
‣ __device__, __constant__
‣ variables with surface or texture type
The compiler generated code contains a reference to the defined entity. If the entity
is defined within an inline namespace and another entity of the same name and type
signature is defined in an enclosing namespace, this reference may be considered
ambiguous by the host compiler and host compilation will fail.
This limitation can be avoided by using unique names for such entities defined within
an inline namespace.
Example:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 303
C++ Language Support
Example:
inline namespace N1 {
namespace N2 {
__device__ int Gvar;
}
}
namespace N2 {
__device__ int Gvar;
}
inline namespace {
namespace N2 {
template <typename T>
__global__ void foo(void); // error
template <>
__global__ void foo<int>(void) { } // error
G.4.16.7. thread_local
The thread_local storage specifier is not allowed in device code.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 304
C++ Language Support
Example:
kernel<<<1,1>>>( [] __device__ { } );
kernel<<<1,1>>>( [] __host__ __device__ { } );
kernel<<<1,1>>>( [] { } );
}
auto lam1 = [] { };
void foo_host(void)
{
// OK: instantiated with closure type of an extended __device__ lambda
kernel<<<1,1>>>( [] __device__ { } );
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 305
C++ Language Support
Example:
// ok
template <template <typename...> class Wrapper, typename... Pack>
__global__ void foo1(Wrapper<Pack...>);
G.4.16.9. __device__/__constant__/__shared__ variables
__device__, __constant__ and __shared__ variables cannot be marked with the
keyword constexpr.
G.4.16.10. Defaulted functions
Execution space specifiers on a function that is explicitly-defaulted on its first
declaration are ignored by the CUDA compiler. Instead, the CUDA compiler will
infer the execution space specifiers as described in Implicitly-declared and explicitly-
defaulted functions.
Execution space specifiers are not ignored if the function is explicitly-defaulted, but not
on its first declaration.
Example:
struct S1 {
// warning: __host__ annotation is ignored on a function that
// is explicitly-defaulted on its first declaration
__host__ S1() = default;
};
struct S2 {
__host__ S2();
};
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 306
C++ Language Support
G.4.17. C++14 Features
C++14 features enabled by default by the host compiler are also supported by nvcc.
Passing nvcc -std=c++14 flag turns on all C++14 features and also invokes the host
preprocessor, compiler and linker with the corresponding C++14 dialect option 24. This
section describes the restrictions on the supported C++14 features.
void host_fn1() {
// error: referenced outside device function bodies
int (*p1)(int) = fn1;
struct S_local_t {
// error: referenced outside device function bodies
decltype(fn2(10)) m1;
S_local_t() : m1(10) { }
};
}
24
At present, the -std=c++14 flag is supported only for the following host compilers : gcc version >= 5.1, clang version >=
3.7 and icc version >= 17
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 307
C++ Language Support
G.4.17.2. Variable templates
A __device__/__constant__ variable template cannot have a const qualified type
when using the Microsoft host compiler.
Examples:
// OK
template <typename T>
__device__ const T *d3;
G.4.18. C++17 Features
C++17 features enabled by default by the host compiler are also supported by nvcc.
Passing nvcc -std=c++17 flag turns on all C++17 features and also invokes the host
preprocessor, compiler and linker with the corresponding C++17 dialect option 25. This
section describes the restrictions on the supported C++17 features.
G.4.18.1. Inline Variable
‣ A namespace scope inline variable declared with __device__ or __constant__
or __managed__ memory space specifier must have internal linkage, if the code is
compiled with nvcc in whole program compilation mode.
Examples:
25
At present, the -std=c++17 flag is supported only for the following host compilers : gcc version >= 7.0, clang version >=
8.0, Visual Studio version >= 2017, pgi compiler version >= 19.0, icc compiler version >= 19.0
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 308
C++ Language Support
‣ When using g++ host compiler, an inline variable declared with __managed__
memory space specifier may not be visible to the debugger.
G.4.18.2. Structured Binding
A structured binding cannot be declared with a variable memory space specifier.
Example:
#include <nvfunctional>
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 309
C++ Language Support
Example:
#include <nvfunctional>
void foo(void) {
// error: initialized with address of __device__ function
nvstd::function<int()> fn1 = foo_d;
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 310
C++ Language Support
namespace nvstd {
template <class _RetType, class ..._ArgTypes>
class function<_RetType(_ArgTypes...)>
{
public:
// constructors
__device__ __host__ function() noexcept;
__device__ __host__ function(nullptr_t) noexcept;
__device__ __host__ function(const function &);
__device__ __host__ function(function &&);
template<class _F>
__device__ __host__ function(_F);
// destructor
__device__ __host__ ~function();
// assignment operators
__device__ __host__ function& operator=(const function&);
__device__ __host__ function& operator=(function&&);
__device__ __host__ function& operator=(nullptr_t);
__device__ __host__ function& operator=(_F&&);
// swap
__device__ __host__ void swap(function&) noexcept;
// function capacity
__device__ __host__ explicit operator bool() const noexcept;
// function invocation
__device__ _RetType operator()(_ArgTypes...) const;
};
// specialized algorithms
template <class _R, class... _ArgTypes>
__device__ __host__
void swap(function<_R(_ArgTypes...)>&, function<_R(_ArgTypes...)>&);
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 311
C++ Language Support
G.6. Extended Lambdas
The nvcc flag '--extended-lambda' allows explicit execution space annotations in
a lambda expression 26. The execution space annotations should be present after the
'lambda-introducer' and before the optional 'lambda-declarator'. nvcc will define the
macro __CUDACC_EXTENDED_LAMBDA__ when the '--extended-lambda' flag has
been specified.
An 'extended __device__ lambda' is a lambda expression that is annotated explicitly
with '__device__', and is defined within the immediate or nested block scope of a
__host__ or __host__ __device__ function.
An 'extended __host__ __device__ lambda' is a lambda expression that is annotated
explicitly with both '__host__' and '__device__', and is defined within the immediate
or nested block scope of a __host__ or __host__ __device__ function.
An 'extended lambda' denotes either an extended __device__ lambda or an extended
__host__ __device__ lambda. Extended lambdas can be used in the type arguments
of __global__ function template instantiation.
If the execution space annotations are not explicitly specified, they are computed based
on the scopes enclosing the closure class associated with the lambda, as described in the
section on C++11 support. The execution space annotations are applied to all methods of
the closure class associated with the lambda.
26
When using the icc host compiler, this flag is only supported for icc >= 1800.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 312
C++ Language Support
Example:
void foo_host(void) {
// not an extended lambda: no explicit execution space annotations
auto lam1 = [] { };
// lam1 and lam2 are not extended lambdas because they are not defined
// within a __host__ or __host__ __device__ function.
auto lam1 = [] { };
auto lam2 = [] __host__ __device__ { };
27
The traits will always return false if extended lambda mode is not active.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 313
C++ Language Support
Example:
void foo(void) {
auto lam1 = [] { };
auto lam2 = [] __device__ { };
auto lam3 = [] __host__ __device__ { };
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 314
C++ Language Support
Example:
void foo(void) {
// enclosing function for lam1 is "foo"
auto lam1 = [] __device__ { };
auto lam2 = [] {
auto lam3 = [] {
// enclosing function for lam4 is "foo"
auto lam4 = [] __host__ __device__ { };
};
};
}
auto lam6 = [] {
// enclosing function for lam7 does not exist
auto lam7 = [] __host__ __device__ { };
};
void foo(void) {
auto lam1 = [] __host__ __device__ {
// error: extended lambda defined within another extended lambda
auto lam2 = [] __host__ __device__ { };
};
}
2. An extended lambda cannot be defined inside a generic lambda expression.
Example:
void foo(void) {
auto lam1 = [] (auto) {
// error: extended lambda defined within a generic lambda
auto lam2 = [] __host__ __device__ { };
};
}
3. If an extended lambda is defined within the immediate or nested block scope of one
or more nested lambda expression, the outermost such lambda expression must be
defined inside the immediate or nested block scope of a function.
Example:
auto lam1 = [] {
// error: outer enclosing lambda is not defined within a
// non-lambda-operator() function.
auto lam2 = [] __host__ __device__ { };
};
4. The enclosing function for the extended lambda must be named and its address can
be taken. If the enclosing function is a class member, then the following conditions
must be satisfied:
‣ All classes enclosing the member function must have a name.
‣ The member function must not have private or protected access within its
parent class.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 315
C++ Language Support
‣ All enclosing classes must not have private or protected access within their
respective parent classes.
Example:
void foo(void) {
// OK
auto lam1 = [] __device__ { return 0; };
{
// OK
auto lam2 = [] __device__ { return 0; };
// OK
auto lam3 = [] __device__ __host__ { return 0; };
}
}
struct S1_t {
S1_t(void) {
// Error: cannot take address of enclosing function
auto lam4 = [] __device__ { return 0; };
}
};
class C0_t {
void foo(void) {
// Error: enclosing function has private access in parent class
auto temp1 = [] __device__ { return 10; };
}
struct S2_t {
void foo(void) {
// Error: enclosing class S2_t has private access in its
// parent class
auto temp1 = [] __device__ { return 10; };
}
};
};
5. It must be possible to take the address of the enclosing routine unambigously, at
the point where the extended lambda has been defined. This may not be feasible in
some cases e.g. when a class typedef shadows a template type argument of the same
name.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 316
C++ Language Support
Example:
int main() {
A<int> xxx;
xxx.test();
}
6. An extended lambda cannot be defined in a class that is local to a function.
Example:
void foo(void) {
struct S1_t {
void bar(void) {
// Error: bar is member of a class that is local to a function.
auto lam4 = [] __host__ __device__ { return 0; };
}
};
}
7. The enclosing function for an extended lambda cannot have deduced return type.
Example:
auto foo(void) {
// Error: the return type of foo is deduced.
auto lam1 = [] __host__ __device__ { return 0; };
}
8. __host__ __device__ extended lambdas cannot be generic lambdas.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 317
C++ Language Support
Example:
void foo(void) {
// Error: __host__ __device__ extended lambdas cannot be
// generic lambdas.
auto lam1 = [] __host__ __device__ (auto i) { return i; };
int main() {
foo<char, int, float> f1;
foo<char, int> f2;
bar1(f1, f2);
bar2(f1, 10);
bar3<int, 10>();
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 318
C++ Language Support
Example:
28
In contrast, the C++ standard specifies that the captured variable is used to direct-initialize the field of the closure type.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 319
C++ Language Support
void foo(void) {
// OK: an init-capture is allowed for an
// extended __device__ lambda.
auto lam1 = [x = 1] __device__ () { return x; };
int a = 1;
// Error: an extended __device__ lambda cannot capture
// variables by reference.
auto lam3 = [&a] __device__ () { return a; };
struct S1_t { };
S1_t s1;
// Error: a type local to a function cannot be used in the type
// of a captured variable.
auto lam6 = [s1] __device__ () { };
std::initializer_list<int> b = {11,22,33};
// Error: an init-capture cannot be of type std::initializer_list.
auto lam8 = [x = b] __device__ () { };
}
12. When parsing a function, the CUDA compiler assigns a counter value to each
extended lambda within that function. This counter value is used in the substituted
named type passed to the host compiler. Hence, whether or not an extended
lambda is defined within a function should not depend on a particular value of
__CUDA_ARCH__, or on __CUDA_ARCH__ being undefined.
Example
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 320
C++ Language Support
13. As described above, the CUDA compiler replaces a __device__ extended lambda
defined in a host function with a placeholder type defined in namespace scope. This
placeholder type does not define a operator() function equivalent to the original
lambda declaration. An attempt to determine the return type or parameter types of
the operator() function may therefore work incorrectly in host code, as the code
processed by the host compiler will be semantically different than the input code
processed by the CUDA compiler. However, it is ok to introspect the return type
or parameter types of the operator() function within device code. Note that this
restriction does not apply to __host__ __device__ extended lambdas.
Example
#include <type_traits>
void foo(void) {
auto lam1 = [] __device__ { return 10; };
void foo(void) {
int x1 = 1;
auto lam1 = [=] __host__ __device__ {
// Error: "x1" is only captured when __CUDA_ARCH__ is defined.
#ifdef __CUDA_ARCH__
return x1 + 1;
#else
return 10;
#endif
};
kernel<<<1,1>>>(lam1);
}
15. As described previously, the CUDA compiler replaces an extended __device__
lambda expression with an instance of a placeholder type in the code sent to the host
compiler. This placeholder type does not define a pointer-to-function conversion
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 321
C++ Language Support
operator in host code, however the conversion operator is provided in device code.
Note that this restriction does not apply to __host__ __device__ extended
lambdas.
Example
void foo(void) {
auto lam_d = [] __device__ (double) { return 1; };
auto lam_hd = [] __host__ __device__ (double) { return 1; };
kern<<<1,1>>>(lam_d);
kern<<<1,1>>>(lam_hd);
The CUDA compiler will generate compiler diagnostics for a subset of cases described
in 1-11; no diagnostic will be generated for cases 12-15, but the host compiler may fail to
compile the generated code.
29
The closure object is stored in a type-elided container similar to std::function.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 322
C++ Language Support
#include <cstdio>
struct S1_t {
int xxx;
__host__ __device__ S1_t(void) : xxx(10) { };
void doit(void) {
};
int main(void) {
S1_t s1;
s1.doit();
}
C++17 solves this problem by adding a new "*this" capture mode. In this mode, the
compiler makes a copy of the object denoted by "*this" instead of capturing the pointer
this by value. The "*this" capture mode is described in more detail here: http://
www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0018r3.html .
The CUDA compiler supports the "*this" capture mode for lambdas defined within
__device__ and __global__ functions and for extended __device__ lambdas
defined in host code, when the --extended-lambda nvcc flag is used.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 323
C++ Language Support
#include <cstdio>
struct S1_t {
int xxx;
__host__ __device__ S1_t(void) : xxx(10) { };
void doit(void) {
};
int main(void) {
S1_t s1;
s1.doit();
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 324
C++ Language Support
"*this" capture mode is not allowed for unannotated lambdas defined in host code, or
for extended __host__ __device__ lambdas. Examples of supported and unsupported
usage:
struct S1_t {
int xxx;
__host__ __device__ S1_t(void) : xxx(10) { };
void host_func(void) {
G.6.5. Additional Notes
1. ADL Lookup: As described earlier, the CUDA compiler will replace an extended
lambda expression with an instance of a placeholder type, before invoking the
host compiler. One template argument of the placeholder type uses the address of
the function enclosing the original lambda expression. This may cause additional
namespaces to participate in argument dependent lookup (ADL), for any host
function call whose argument types involve the closure type of the extended lambda
expression. This may cause an incorrect function to be selected by the host compiler.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 325
C++ Language Support
Example:
namespace N1 {
struct S1_t { };
template <typename T> void foo(T);
};
namespace N2 {
template <typename T> int foo(T);
In the example above, the CUDA compiler replaced the extended lambda with a
placeholder type that involves the N1 namespace. As a result, the namespace N1
participates in the ADL lookup for foo(in) in the body of N2::doit, and host
compilation fails because multiple overload candidates N1::foo and N2::foo are
found.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 326
C++ Language Support
G.7. Code Samples
G.7.1. Data Aggregation Class
class PixelRGBA {
public:
__device__ PixelRGBA(): r_(0), g_(0), b_(0), a_(0) { }
private:
unsigned char r_, g_, b_, a_;
__device__
PixelRGBA operator+(const PixelRGBA& p1, const PixelRGBA& p2)
{
return PixelRGBA(p1.r_ + p2.r_, p1.g_ + p2.g_,
p1.b_ + p2.b_, p1.a_ + p2.a_);
}
G.7.2. Derived Class
__device__ void* operator new(size_t bytes, MemoryPool& p);
__device__ void operator delete(void*, MemoryPool& p);
class Shape {
public:
__device__ Shape(void) { }
__device__ void putThis(PrintBuffer *p) const;
__device__ virtual void Draw(PrintBuffer *p) const {
p->put("Shapeless");
}
__device__ virtual ~Shape() {}
};
class Point : public Shape {
public:
__device__ Point() : x(0), y(0) {}
__device__ Point(int ix, int iy) : x(ix), y(iy) { }
__device__ void PutCoord(PrintBuffer *p) const;
__device__ void Draw(PrintBuffer *p) const;
__device__ ~Point() {}
private:
int x, y;
};
__device__ Shape* GetPointObj(MemoryPool& pool)
{
Shape* shape = new(pool) Point(rand(-20,10), rand(-100,-20));
return shape;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 327
C++ Language Support
G.7.3. Class Template
template <class T>
class myValues {
T values[MAX_VALUES];
public:
__device__ myValues(T clear) { ... }
__device__ void setValue(int Idx, T value) { ... }
__device__ void putToMemory(T* valueLocation) { ... }
};
int main()
{
...
useValues<int><<<blocks, threads>>>(buffer);
...
}
G.7.4. Function Template
template <typename T>
__device__ bool func(T x)
{
...
return (...);
}
template <>
__device__ bool func<int>(T x) // Specialization
{
return true;
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 328
C++ Language Support
G.7.5. Functor Class
class Add {
public:
__device__ float operator() (float a, float b) const
{
return a + b;
}
};
class Sub {
public:
__device__ float operator() (float a, float b) const
{
return a - b;
}
};
// Device code
template<class O> __global__
void VectorOperation(const float * A, const float * B, float * C,
unsigned int N, O op)
{
unsigned int iElement = blockDim.x * blockIdx.x + threadIdx.x;
if (iElement < N)
C[iElement] = op(A[iElement], B[iElement]);
}
// Host code
int main()
{
...
VectorOperation<<<blocks, threads>>>(v1, v2, v3, N, Add());
...
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 329
Appendix H.
TEXTURE FETCHING
This appendix gives the formula used to compute the value returned by the texture
functions of Texture Functions depending on the various attributes of the texture
reference (see Texture and Surface Memory).
The texture bound to the texture reference is represented as an array T of
‣ N texels for a one-dimensional texture,
‣ N x M texels for a two-dimensional texture,
‣ N x M x L texels for a three-dimensional texture.
It is fetched using non-normalized texture coordinates x, y, and z, or the normalized
texture coordinates x/N, y/M, and z/L as described in Texture Memory. In this appendix,
the coordinates are assumed to be in the valid range. Texture Memory explained how
out-of-range coordinates are remapped to the valid range based on the addressing
mode.
H.1. Nearest-Point Sampling
In this filtering mode, the value returned by the texture fetch is
‣ tex(x)=T[i] for a one-dimensional texture,
‣ tex(x,y)=T[i,j] for a two-dimensional texture,
‣ tex(x,y,z)=T[i,j,k] for a three-dimensional texture,
where i=floor(x), j=floor(y), and k=floor(z).
Figure 13 illustrates nearest-point sampling for a one-dimensional texture with N=4.
For integer textures, the value returned by the texture fetch can be optionally remapped
to [0.0, 1.0] (see Texture Memory).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 330
Texture Fetching
t ex(x)
T[ 3]
T[ 0]
T[ 2]
T[ 1]
x
0 1 2 3 4 Non-Norm alized
H.2. Linear Filtering
In this filtering mode, which is only available for floating-point textures, the value
returned by the texture fetch is
‣ tex(x)=(1−α)T[i]+αT[i+1] for a one-dimensional texture,
‣ tex(x,y)=(1−α)(1−β)T[i,j]+α(1−β)T[i+1,j]+(1−α)βT[i,j+1]+αβT[i+1,j+1] for a two-
dimensional texture,
‣ tex(x,y,z) =
(1−α)(1−β)(1−γ)T[i,j,k]+α(1−β)(1−γ)T[i+1,j,k]+
(1−α)β(1−γ)T[i,j+1,k]+αβ(1−γ)T[i+1,j+1,k]+
(1−α)(1−β)γT[i,j,k+1]+α(1−β)γT[i+1,j,k+1]+
(1−α)βγT[i,j+1,k+1]+αβγT[i+1,j+1,k+1]
for a three-dimensional texture,
where:
‣ i=floor(xB), α=frac(xB), xB=x-0.5,
‣ j=floor(yB), β=frac(yB), yB=y-0.5,
‣ k=floor(zB), γ=frac(zB), zB= z-0.5,
α, β, and γ are stored in 9-bit fixed point format with 8 bits of fractional value (so 1.0 is
exactly represented).
Figure 14 illustrates linear filtering of a one-dimensional texture with N=4.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 331
Texture Fetching
t ex(x)
T[ 3]
T[ 0]
T[ 2]
T[ 1]
x
0 1 2 3 4 Non-Norm alized
H.3. Table Lookup
A table lookup TL(x) where x spans the interval [0,R] can be implemented as
TL(x)=tex((N-1)/R)x+0.5) in order to ensure that TL(0)=T[0] and TL(R)=T[N-1].
Figure 15 illustrates the use of texture filtering to implement a table lookup with R=4 or
R=1 from a one-dimensional texture with N=4.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 332
Texture Fetching
TL(x)
T[ 3]
T[ 0]
T[ 2]
T[ 1]
x
0 4/3 8/3 4
0 1/3 2/3 1
Figure 15 One-Dimensional Table Lookup Using Linear Filtering
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 333
Appendix I.
COMPUTE CAPABILITIES
The general specifications and features of a compute device depend on its compute
capability (see Compute Capability).
Table 14 and Table 15 show the features and technical specifications associated with each
compute capability that is currently supported.
Floating-Point Standard reviews the compliance with the IEEE floating-point standard.
Sections Compute Capability 3.x, Compute Capability 5.x, Compute Capability
6.x, Compute Capability 7.x and Compute Capability 8.0 give more details on the
architecture of devices of compute capability 3.x, 5.x, 6.x, 7.x and 8.0 respectively.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 334
Compute Capabilities
Note that the KB and K units used in the following table correspond to 1024 bytes (i.e., a
KiB) and 1024 respectively.
Compute Capability
Technical Specifications 3.5 3.7 5.0 5.2 5.3 6.0 6.1 6.2 7.0 7.2 7.5 8.0
Maximum number of resident
grids per device (Concurrent 32 16 128 32 16 128 16 128
Kernel Execution)
Maximum dimensionality of
3
grid of thread blocks
Maximum x-dimension of a 31
2 -1
grid of thread blocks
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 335
Compute Capabilities
Compute Capability
Technical Specifications 3.5 3.7 5.0 5.2 5.3 6.0 6.1 6.2 7.0 7.2 7.5 8.0
Maximum y- or z-dimension
65535
of a grid of thread blocks
Maximum dimensionality of a
3
thread block
Maximum x- or y-dimension
1024
of a block
Maximum z-dimension of a
64
block
Maximum number of threads
1024
per block
Warp size 32
Maximum number of resident
16 32 16 32
blocks per SM
Maximum number of resident
64 32 64
warps per SM
Maximum number of resident
2048 1024 2048
threads per SM
Number of 32-bit registers 128
64 K 64 K
per SM K
Maximum number of 32-bit
64 K 32 K 64 K 32 K 64 K
registers per thread block
Maximum number of 32-bit
255
registers per thread
Maximum amount of shared 48 112 64 96 96 64 64 164
64 KB 96 KB
memory per SM KB KB KB KB KB KB KB KB
Maximum amount of shared 96 48 64 160
30 48 KB
memory per thread block KB KB KB KB
Number of shared memory
32
banks
Maximum amount of local
512 KB
memory per thread
Constant memory size 64 KB
Cache working set per SM for 4
8 KB 8 KB
constant memory KB
32 28KB
Cache working set per SM for Between 24 32 ~ or ~
Between 12 KB and 48 KB
texture memory KB and 48 KB 128 KB 64 192
KB KB
Maximum width for a 1D
texture reference bound to a 65536 131072
CUDA array
30
above 48 KB requires dynamic shared memory
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 336
Compute Capabilities
Compute Capability
Technical Specifications 3.5 3.7 5.0 5.2 5.3 6.0 6.1 6.2 7.0 7.2 7.5 8.0
Maximum width for a 1D
27 28 27 28 27 28
texture reference bound to 2 2 2 2 2 2
linear memory
Maximum width and number
of layers for a 1D layered 16384 x 2048 32768 x 2048
texture reference
Maximum width and height
for a 2D texture reference 65536 x 65536 131072 x 65536
bound to a CUDA array
Maximum width and height
65000
for a 2D texture reference 65536 x 65536 131072 x 65000
x 65000
bound to linear memory
Maximum width and height
for a 2D texture reference
16384 x 16384 32768 x 32768
bound to a CUDA array
supporting texture gather
Maximum width, height, and
number of layers for a 2D 16384 x 16384 x 2048 32768 x 32768 x 2048
layered texture reference
Maximum width, height,
and depth for a 3D texture
4096 x 4096 x 4096 16384 x 16384 x 16384
reference bound to a CUDA
array
Maximum width (and height)
for a cubemap texture 16384 32768
reference
Maximum width (and height)
and number of layers for a
16384 x 2046 32768 x 2046
cubemap layered texture
reference
Maximum number of textures
that can be bound to a 256
kernel
Maximum width for a 1D
surface reference bound to a 65536 16384 32768
CUDA array
Maximum width and number
65536
of layers for a 1D layered 16384 x 2048 32768 x 2048
x 2048
surface reference
Maximum width and height
65536
for a 2D surface reference 65536 x 65536 131072 x 65536
x 32768
bound to a CUDA array
Maximum width, height, and 65536
16384 x
number of layers for a 2D x 32768 32768 x 32768 x 2048
16384 x 2048
layered surface reference x 2048
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 337
Compute Capabilities
Compute Capability
Technical Specifications 3.5 3.7 5.0 5.2 5.3 6.0 6.1 6.2 7.0 7.2 7.5 8.0
Maximum width, height,
65536
and depth for a 3D surface 4096 x
x 32768 16384 x 16384 x 16384
reference bound to a CUDA 4096 x 4096
x 2048
array
Maximum width (and height)
for a cubemap surface
32768 16384 32768
reference bound to a CUDA
array
Maximum width (and height)
and number of layers for a 32768
16384 x 2046 32768 x 2046
cubemap layered surface x 2046
reference
Maximum number of surfaces
that can be bound to a 16 32
kernel
I.2. Floating-Point Standard
All compute devices follow the IEEE 754-2008 standard for binary floating-point
arithmetic with the following deviations:
‣ There is no dynamically configurable rounding mode; however, most of the
operations support multiple IEEE rounding modes, exposed via device intrinsics.
‣ There is no mechanism for detecting that a floating-point exception has occurred
and all operations behave as if the IEEE-754 exceptions are always masked, and
deliver the masked response as defined by IEEE-754 if there is an exceptional event.
For the same reason, while SNaN encodings are supported, they are not signaling
and are handled as quiet.
‣ The result of a single-precision floating-point operation involving one or more input
NaNs is the quiet NaN of bit pattern 0x7fffffff.
‣ Double-precision floating-point absolute value and negation are not compliant with
IEEE-754 with respect to NaNs; these are passed through unchanged.
Code must be compiled with -ftz=false, -prec-div=true, and -prec-sqrt=true
to ensure IEEE compliance (this is the default setting; see the nvcc user manual for
description of these compilation flags).
Regardless of the setting of the compiler flag -ftz,
‣ atomic single-precision floating-point adds on global memory always operate in
flush-to-zero mode, i.e., behave equivalent to FADD.F32.FTZ.RN,
‣ atomic single-precision floating-point adds on shared memory always operate with
denormal support, i.e., behave equivalent to FADD.F32.RN.
In accordance to the IEEE-754R standard, if one of the input parameters to fminf(),
fmin(), fmaxf(), or fmax() is NaN, but not the other, the result is the non-NaN
parameter.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 338
Compute Capabilities
The conversion of a floating-point value to an integer value in the case where the
floating-point value falls outside the range of the integer format is left undefined by
IEEE-754. For compute devices, the behavior is to clamp to the end of the supported
range. This is unlike the x86 architecture behavior.
The behavior of integer division by zero and integer overflow is left undefined by
IEEE-754. For compute devices, there is no mechanism for detecting that such integer
operation exceptions have occurred. Integer division by zero yields an unspecified,
machine-specific value.
http://developer.nvidia.com/content/precision-performance-floating-point-and-ieee-754-
compliance-nvidia-gpus includes more information on the floating point accuracy and
compliance of NVIDIA GPUs.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 339
Compute Capabilities
// Host code
// Runtime API
// cudaFuncCachePreferShared: shared memory is 48 KB
// cudaFuncCachePreferEqual: shared memory is 32 KB
// cudaFuncCachePreferL1: shared memory is 16 KB
// cudaFuncCachePreferNone: no preference
cudaFuncSetCacheConfig(MyKernel, cudaFuncCachePreferShared)
Applications may query the L2 cache size by checking the l2CacheSize device
property (see Device Enumeration). The maximum L2 cache size is 1.5 MB.
Each SM has a read-only data cache of 48 KB to speed up reads from device memory. It
accesses this cache either directly (for devices of compute capability 3.5 or 3.7), or via a
texture unit that implements the various addressing modes and data filtering mentioned
in Texture and Surface Memory. When accessed via the texture unit, the read-only data
cache is also referred to as texture cache.
I.3.2. Global Memory
Global memory accesses for devices of compute capability 3.x are cached in L2 and for
devices of compute capability 3.5 or 3.7, may also be cached in the read-only data cache
described in the previous section; they are normally not cached in L1. Some devices of
compute capability 3.5 and devices of compute capability 3.7 allow opt-in to caching of
global memory accesses in L1 via the -Xptxas -dlcm=ca option to nvcc.
A cache line is 128 bytes and maps to a 128 byte aligned segment in device memory.
Memory accesses that are cached in both L1 and L2 are serviced with 128-byte memory
transactions, whereas memory accesses that are cached in L2 only are serviced with
32-byte memory transactions. Caching in L2 only can therefore reduce over-fetch, for
example, in the case of scattered memory accesses.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 340
Compute Capabilities
If the size of the words accessed by each thread is more than 4 bytes, a memory
request by a warp is first split into separate 128-byte memory requests that are issued
independently:
‣ Two memory requests, one for each half-warp, if the size is 8 bytes,
‣ Four memory requests, one for each quarter-warp, if the size is 16 bytes.
Each memory request is then broken down into cache line requests that are issued
independently. A cache line request is serviced at the throughput of L1 or L2 cache in
case of a cache hit, or at the throughput of device memory, otherwise.
Note that threads can access any words in any order, including the same words.
If a non-atomic instruction executed by a warp writes to the same location in global
memory for more than one of the threads of the warp, only one thread performs a write
and which thread does it is undefined.
Data that is read-only for the entire lifetime of the kernel can also be cached in the read-
only data cache described in the previous section by reading it using the __ldg()
function (see Read-Only Data Cache Load Function). When the compiler detects that
the read-only condition is satisfied for some data, it will use __ldg() to read it. The
compiler might not always be able to detect that the read-only condition is satisfied
for some data. Marking pointers used for loading such data with both the const and
__restrict__ qualifiers increases the likelihood that the compiler will detect the read-
only condition.
Figure 16 shows some examples of global memory accesses and corresponding memory
transactions.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 341
Compute Capabilities
I.3.3. Shared Memory
Shared memory has 32 banks with two addressing modes that are described below.
The addressing mode can be queried using cudaDeviceGetSharedMemConfig() and
set using cudaDeviceSetSharedMemConfig() (see reference manual for more details).
Each bank has a bandwidth of 64 bits per clock cycle.
Figure 17 shows some examples of strided access.
Figure 18 shows some examples of memory read accesses that involve the broadcast
mechanism.
64-Bit Mode
Successive 64-bit words map to successive banks.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 342
Compute Capabilities
A shared memory request for a warp does not generate a bank conflict between two
threads that access any sub-word within the same 64-bit word (even though the
addresses of the two sub-words fall in the same bank). In that case, for read accesses, the
64-bit word is broadcast to the requesting threads and for write accesses, each sub-word
is written by only one of the threads (which thread performs the write is undefined).
32-Bit Mode
Successive 32-bit words map to successive banks.
A shared memory request for a warp does not generate a bank conflict between two
threads that access any sub-word within the same 32-bit word or within two 32-bit
words whose indices i and j are in the same 64-word aligned segment (i.e., a segment
whose first index is a multiple of 64) and such that j=i+32 (even though the addresses of
the two sub-words fall in the same bank). In that case, for read accesses, the 32-bit words
are broadcast to the requesting threads and for write accesses, each sub-word is written
by only one of the threads (which thread performs the write is undefined).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 343
Compute Capabilities
The cache behavior (e.g., whether reads are cached in both the unified L1/texture cache
and L2 or in L2 only) can be partially configured on a per-access basis using modifiers to
the load instruction.
I.4.2. Global Memory
Global memory accesses are always cached in L2 and caching in L2 behaves in the same
way as for devices of compute capability 3.x (see Global Memory).
Data that is read-only for the entire lifetime of the kernel can also be cached in the
unified L1/texture cache described in the previous section by reading it using the
__ldg() function (see Read-Only Data Cache Load Function). When the compiler
detects that the read-only condition is satisfied for some data, it will use __ldg() to
read it. The compiler might not always be able to detect that the read-only condition
is satisfied for some data. Marking pointers used for loading such data with both the
const and __restrict__ qualifiers increases the likelihood that the compiler will
detect the read-only condition.
Data that is not read-only for the entire lifetime of the kernel cannot be cached in the
unified L1/texture cache for devices of compute capability 5.0. For devices of compute
capability 5.2, it is, by default, not cached in the unified L1/texture cache, but caching
may be enabled using the following mechanisms:
‣ Perform the read using inline assembly with the appropriate modifier as described
in the PTX reference manual;
‣ Compile with the -Xptxas -dlcm=ca compilation flag, in which case all reads are
cached, except reads that are performed using inline assembly with a modifier that
disables caching;
‣ Compile with the -Xptxas -fscm=ca compilation flag, in which case all reads are
cached, including reads that are performed using inline assembly regardless of the
modifier used.
When caching is enabled using one of the three mechanisms listed above, devices of
compute capability 5.2 will cache global memory reads in the unified L1/texture cache
for all kernel launches except for the kernel launches for which thread blocks consume
too much of the SM's register file. These exceptions are reported by the profiler.
I.4.3. Shared Memory
Shared memory has 32 banks that are organized such that successive 32-bit words map
to successive banks. Each bank has a bandwidth of 32 bits per clock cycle.
A shared memory request for a warp does not generate a bank conflict between two
threads that access any address within the same 32-bit word (even though the two
addresses fall in the same bank). In that case, for read accesses, the word is broadcast to
the requesting threads and for write accesses, each address is written by only one of the
threads (which thread performs the write is undefined).
Figure 17 shows some examples of strided access.
Figure 18 shows some examples of memory read accesses that involve the broadcast
mechanism.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 344
Compute Capabilities
0 0 0 0 0 0
1 1 1 1 1 1
2 2 2 2 2 2
3 3 3 3 3 3
4 4 4 4 4 4
5 5 5 5 5 5
6 6 6 6 6 6
7 7 7 7 7 7
8 8 8 8 8 8
9 9 9 9 9 9
10 10 10 10 10 10
11 11 11 11 11 11
12 12 12 12 12 12
13 13 13 13 13 13
14 14 14 14 14 14
15 15 15 15 15 15
16 16 16 16 16 16
17 17 17 17 17 17
18 18 18 18 18 18
19 19 19 19 19 19
20 20 20 20 20 20
21 21 21 21 21 21
22 22 22 22 22 22
23 23 23 23 23 23
24 24 24 24 24 24
25 25 25 25 25 25
26 26 26 26 26 26
27 27 27 27 27 27
28 28 28 28 28 28
29 29 29 29 29 29
30 30 30 30 30 30
31 31 31 31 31 31
Left
Linear addressing with a stride of one 32-bit word (no bank conflict).
Middle
Linear addressing with a stride of two 32-bit words (two-way bank conflict).
Right
Linear addressing with a stride of three 32-bit words (no bank conflict).
Figure 17 Strided Shared Memory Accesses
Examples for devices of compute capability 3.x (in 32-bit mode) or compute capability 5.x
and 6.x
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 345
Compute Capabilities
0 0 0 0 0 0
1 1 1 1 1 1
2 2 2 2 2 2
3 3 3 3 3 3
4 4 4 4 4 4
5 5 5 5 5 5
6 6 6 6 6 6
7 7 7 7 7 7
8 8 8 8 8 8
9 9 9 9 9 9
10 10 10 10 10 10
11 11 11 11 11 11
12 12 12 12 12 12
13 13 13 13 13 13
14 14 14 14 14 14
15 15 15 15 15 15
16 16 16 16 16 16
17 17 17 17 17 17
18 18 18 18 18 18
19 19 19 19 19 19
20 20 20 20 20 20
21 21 21 21 21 21
22 22 22 22 22 22
23 23 23 23 23 23
24 24 24 24 24 24
25 25 25 25 25 25
26 26 26 26 26 26
27 27 27 27 27 27
28 28 28 28 28 28
29 29 29 29 29 29
30 30 30 30 30 30
31 31 31 31 31 31
Left
Conflict-free access via random permutation.
Middle
Conflict-free access since threads 3, 4, 6, 7, and 9 access the same word within bank 5.
Right
Conflict-free broadcast access (threads access the same word within a bank).
Figure 18 Irregular Shared Memory Accesses
Examples for devices of compute capability 3.x, 5.x, or 6.x.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 346
Compute Capabilities
I.5.2. Global Memory
Global memory behaves the same way as in devices of compute capability 5.x (See
Global Memory).
I.5.3. Shared Memory
Shared memory behaves the same way as in devices of compute capability 5.x (See
Shared Memory).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 347
Compute Capabilities
31
2 FP64 cores for double-precision arithmetic operations for devices of compute capabilities 7.5
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 348
Compute Capabilities
Since the intrinsics are available with CUDA 9.0+, (if necessary) code can be
executed conditionally with the following preprocessor macro:
These intrinsics are available on all architectures, not just Volta or Turing, and in
most cases a single code-base will suffice for all architectures. Note, however, that
for Pascal and earlier architectures, all threads in mask must execute the same warp
intrinsic instruction in convergence, and the union of all values in mask must be
equal to the warp's active mask. The following code pattern is valid on Volta, but not
on Pascal or earlier architectures.
if (tid % warpSize < 16) {
...
float swapped = __shfl_xor_sync(0xffffffff, val, 16);
...
} else {
...
float swapped = __shfl_xor_sync(0xffffffff, val, 16);
...
}
This code is invalid because CUDA does not guarantee that the warp will diverge
ONLY at the loop condition. When divergence happens for other reasons, conflicting
results will be computed for the same 32-bit output element by different subsets
of threads in the warp. A correct code might use a non-divergent loop condition
together with __ballot_sync() to safely enumerate the set of threads in the warp
participating in the threshold calculation as follows.
for(int i=warpLane; i-warpLane<dataLen; i+=warpSize) {
unsigned active = __ballot_sync(0xFFFFFFFF, i < dataLen);
if (i < dataLen) {
unsigned bitPack = __ballot_sync(active, data[i] > threshold);
if (warpLane == 0)
output[i/32] = bitPack;
}
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 349
Compute Capabilities
2. If applications have warp-synchronous codes, they will need to insert the new
__syncwarp() warp-wide barrier synchronization instruction between any
steps where data is exchanged between threads via global or shared memory.
Assumptions that code is executed in lockstep or that reads/writes from separate
threads are visible across a warp without synchronization are invalid.
float s_buff[tid] = val;
__syncthreads();
// Inter-warp reduction
for (int i=BSIZE/2; i>32; i/=2){
s_buff[tid] += s_buff[tid+i];
__syncthreads();
}
// Intra-warp reduction
// Butterfly reduction simplifies syncwarp mask
if (tid < 32) {
float temp;
temp = s_buff[tid^16]; __syncwarp();
s_buff[tid] += temp; __syncwarp();
temp = s_buff[tid^ 8]; __syncwarp();
s_buff[tid] += temp; __syncwarp();
temp = s_buff[tid^ 4]; __syncwarp();
s_buff[tid] += temp; __syncwarp();
temp = s_buff[tid^ 2]; __syncwarp();
s_buff[tid] += temp; __syncwarp();
}
if (tid == 0) {
*output = s_buff[0] + s_buff[1];
}
__syncthreads();
3. Although __syncthreads() has been consistently documented as synchronizing
all threads in the thread block, Pascal and prior architectures could only enforce
synchronization at the warp level. In certain cases, this allowed a barrier to succeed
without being executed by every thread as long as at least some thread in every
warp reached the barrier. Starting with Volta, the CUDA built-in __syncthreads()
and PTX instruction bar.sync (and their derivatives) are enforced per thread and
thus will not succeed until reached by all non-exited threads in the block. Code
exploiting the previous behavior will likely deadlock and must be modified to
ensure that all non-exited threads reach the barrier.
The racecheck and synccheck tools provided by cuda-memcheck can aid in locating
violations of points 2 and 3.
To aid migration while implementing the above-mentioned corrective actions,
developers can opt-in to the Pascal scheduling model that does not support independent
thread scheduling. See Application Compatibility for details.
I.6.3. Global Memory
Global memory behaves the same way as in devices of compute capability 5.x (See
Global Memory).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 350
Compute Capabilities
I.6.4. Shared Memory
Similar to the Kepler architecture, the amount of the unified data cache reserved for
shared memory is configurable on a per kernel basis. For the Volta architecture (compute
capability 7.0), the unified data cache has a size of 128 KB, and the shared memory
capacity can be set to 0, 8, 16, 32, 64 or 96 KB. For the Turing architecture (compute
capability 7.5), the unified data cache has a size of 96 KB, and the shared memory
capacity can be set to either 32 KB or 64 KB. Unlike Kepler, the driver automatically
configures the shared memory capacity for each kernel to avoid shared memory
occupancy bottlenecks while also allowing concurrent execution with already launched
kernels where possible. In most cases, the driver's default behavior should provide
optimal performance.
Because the driver is not always aware of the full workload, it is sometimes useful
for applications to provide additional hints regarding the desired shared memory
configuration. For example, a kernel with little or no shared memory use may request
a larger carveout in order to encourage concurrent execution with later kernels that
require more shared memory. The new cudaFuncSetAttribute() API allows
applications to set a preferred shared memory capacity, or carveout, as a percentage
of the maximum supported shared memory capacity (96 KB for Volta, and 64 KB for
Turing).
cudaFuncSetAttribute() relaxes enforcement of the preferred shared capacity
compared to the legacy cudaFuncSetCacheConfig() API introduced with Kepler. The
legacy API treated shared memory capacities as hard requirements for kernel launch.
As a result, interleaving kernels with different shared memory configurations would
needlessly serialize launches behind shared memory reconfigurations. With the new
API, the carveout is treated as a hint. The driver may choose a different configuration if
required to execute the function or to avoid thrashing.
// Device code
__global__ void MyKernel(...)
{
__shared__ float buffer[BLOCK_DIM];
...
}
// Host code
int carveout = 50; // prefer shared memory capacity 50% of maximum
// Named Carveout Values:
// carveout = cudaSharedmemCarveoutDefault; // (-1)
// carveout = cudaSharedmemCarveoutMaxL1; // (0)
// carveout = cudaSharedmemCarveoutMaxShared; // (100)
cudaFuncSetAttribute(MyKernel, cudaFuncAttributePreferredSharedMemoryCarveout,
carveout);
MyKernel <<<gridDim, BLOCK_DIM>>>(...);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 351
Compute Capabilities
Compute capability 7.x devices allow a single thread block to address the full capacity
of shared memory: 96 KB on Volta, 64 KB on Turing. Kernels relying on shared memory
allocations over 48 KB per block are architecture-specific, as such they must use dynamic
shared memory (rather than statically sized arrays) and require an explicit opt-in using
cudaFuncSetAttribute() as follows.
// Device code
__global__ void MyKernel(...)
{
...
}
// Host code
int maxbytes = 98304; // 96 KB
cudaFuncSetAttribute(MyKernel, cudaFuncAttributeMaxDynamicSharedMemorySize,
maxbytes);
MyKernel <<<gridDim, blockDim>>>(...);
Otherwise, shared memory behaves the same way as for devices of compute capability
5.x (See Shared Memory).
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 352
Compute Capabilities
I.7.2. Global Memory
Global memory behaves the same way as for devices of compute capability 5.x (See
Global Memory).
I.7.3. Shared Memory
Similar to the Volta architecture, the amount of the unified data cache reserved for
shared memory is configurable on a per kernel basis. For the NVIDIA Ampere GPU
architecture (compute capability 8.0), the unified data cache has a size of 192 KB, and the
shared memory capacity can be set to 0, 8, 16, 32, 64, 100, 132 or 164 KB.
An application can set the carveout, i.e., the preferred shared memory capacity, with
the cudaFuncSetAttribute().
cudaFuncSetAttribute(kernel_name,
cudaFuncAttributePreferredSharedMemoryCarveout, carveout);
The API can specify the carveout either as an integer percentage of the maximum
supported shared memory capacity of 164 KB or as one of the following values:
{cudaSharedmemCarveoutDefault, cudaSharedmemCarveoutMaxL1,
or cudaSharedmemCarveoutMaxShared. When using a percentage, the
carveout is rounded up to the nearest supported shared memory capacity. For
example, 50% will map to a 100 KB carveout instead of an 82 KB one. Setting the
cudaFuncAttributePreferredSharedMemoryCarveout is considered a hint by the
driver; the driver may choose a different configuration, if needed.
Devices of compute capability 8.0 allow a single thread block to address up
to 160 KB of shared memory. Kernels relying on shared memory allocations
over 48 KB per block are architecture-specific, and must use dynamic shared
memory rather than statically sized shared memory arrays. These kernels
require an explicit opt-in by using cudaFuncSetAttribute() to set the
cudaFuncAttributeMaxDynamicSharedMemorySize; see Shared Memory for the
Volta architecture.
Note that the maximum amount of shared memory per thread block (160 KB) is smaller
than the maximum shared memory partition available per SM (164 KB). The 4 KB of
shared memory not made available to a thread block is reserved for system use.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 353
Appendix J.
DRIVER API
The driver API must be initialized with cuInit() before any function from the driver
API is called. A CUDA context must then be created that is attached to a specific device
and made current to the calling host thread as detailed in Context.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 354
Driver API
Within a CUDA context, kernels are explicitly loaded as PTX or binary objects by the
host code as described in Module. Kernels written in C++ must therefore be compiled
separately into PTX or binary objects. Kernels are launched using API entry points as
described in Kernel Execution.
Any application that wants to run on future device architectures must load PTX,
not binary code. This is because binary code is architecture-specific and therefore
incompatible with future architectures, whereas PTX code is compiled to binary code at
load time by the device driver.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 355
Driver API
Here is the host code of the sample from Kernels written using the driver API:
int main()
{
int N = ...;
size_t size = N * sizeof(float);
// Initialize
cuInit(0);
// Create context
CUcontext cuContext;
cuCtxCreate(&cuContext, 0, cuDevice);
// Invoke kernel
int threadsPerBlock = 256;
int blocksPerGrid =
(N + threadsPerBlock - 1) / threadsPerBlock;
void* args[] = { &d_A, &d_B, &d_C, &N };
cuLaunchKernel(vecAdd,
blocksPerGrid, 1, 1, threadsPerBlock, 1, 1,
0, 0, args, 0);
...
}
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 356
Driver API
J.1. Context
A CUDA context is analogous to a CPU process. All resources and actions performed
within the driver API are encapsulated inside a CUDA context, and the system
automatically cleans up these resources when the context is destroyed. Besides objects
such as modules and texture or surface references, each context has its own distinct
address space. As a result, CUdeviceptr values from different contexts reference
different memory locations.
A host thread may have only one device context current at a time. When a context
is created with cuCtxCreate(), it is made current to the calling host thread. CUDA
functions that operate in a context (most functions that do not involve device
enumeration or context management) will return CUDA_ERROR_INVALID_CONTEXT if a
valid context is not current to the thread.
Each host thread has a stack of current contexts. cuCtxCreate() pushes the new
context onto the top of the stack. cuCtxPopCurrent() may be called to detach the
context from the host thread. The context is then "floating" and may be pushed as the
current context for any host thread. cuCtxPopCurrent() also restores the previous
current context, if any.
A usage count is also maintained for each context. cuCtxCreate() creates a
context with a usage count of 1. cuCtxAttach() increments the usage count and
cuCtxDetach() decrements it. A context is destroyed when the usage count goes to 0
when calling cuCtxDetach() or cuCtxDestroy().
The driver API is interoperable with the runtime and it is possible to access the
primary context (see Initialization) managed by the runtime from the driver API via
cuDevicePrimaryCtxRetain().
Usage count facilitates interoperability between third party authored code operating in
the same context. For example, if three libraries are loaded to use the same context, each
library would call cuCtxAttach() to increment the usage count and cuCtxDetach()
to decrement the usage count when the library is done using the context. For most
libraries, it is expected that the application will have created a context before loading
or initializing the library; that way, the application can create the context using its
own heuristics, and the library simply operates on the context handed to it. Libraries
that wish to create their own contexts - unbeknownst to their API clients who may or
may not have created contexts of their own - would use cuCtxPushCurrent() and
cuCtxPopCurrent() as illustrated in Figure 19.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 357
Driver API
Init ialize
cuCt xCreat e() cont ext cuCt xPopCurrent ()
Library Call
Use
cuCt xPushCurrent () cont ext cuCt xPopCurrent ()
J.2. Module
Modules are dynamically loadable packages of device code and data, akin to DLLs in
Windows, that are output by nvcc (see Compilation with NVCC). The names for all
symbols, including functions, global variables, and texture or surface references, are
maintained at module scope so that modules written by independent third parties may
interoperate in the same CUDA context.
This code sample loads a module and retrieves a handle to some kernel:
CUmodule cuModule;
cuModuleLoad(&cuModule, "myModule.ptx");
CUfunction myKernel;
cuModuleGetFunction(&myKernel, cuModule, "MyKernel");
This code sample compiles and loads a new module from PTX code and parses
compilation errors:
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 358
Driver API
This code sample compiles, links, and loads a new module from multiple PTX codes and
parses link and compilation errors:
J.3. Kernel Execution
cuLaunchKernel() launches a kernel with a given execution configuration.
Parameters are passed either as an array of pointers (next to last parameter of
cuLaunchKernel()) where the nth pointer corresponds to the nth parameter and
points to a region of memory from which the parameter is copied, or as one of the extra
options (last parameter of cuLaunchKernel()).
When parameters are passed as an extra option (the
CU_LAUNCH_PARAM_BUFFER_POINTER option), they are passed as a pointer to a single
buffer where parameters are assumed to be properly offset with respect to each other by
matching the alignment requirement for each parameter type in device code.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 359
Driver API
Alignment requirements in device code for the built-in vector types are listed in Table
4. For all other basic types, the alignment requirement in device code matches the
alignment requirement in host code and can therefore be obtained using __alignof().
The only exception is when the host compiler aligns double and long long (and
long on a 64-bit system) on a one-word boundary instead of a two-word boundary (for
example, using gcc's compilation flag -mno-align-double) since in device code these
types are always aligned on a two-word boundary.
CUdeviceptr is an integer, but represents a pointer, so its alignment requirement is
__alignof(void*).
The following code sample uses a macro (ALIGN_UP()) to adjust the offset
of each parameter to meet its alignment requirement and another macro
(ADD_TO_PARAM_BUFFER()) to add each parameter to the parameter buffer passed to
the CU_LAUNCH_PARAM_BUFFER_POINTER option.
#define ALIGN_UP(offset, alignment) \
(offset) = ((offset) + (alignment) - 1) & ~((alignment) - 1)
char paramBuffer[1024];
size_t paramBufferSize = 0;
int i;
ADD_TO_PARAM_BUFFER(i, __alignof(i));
float4 f4;
ADD_TO_PARAM_BUFFER(f4, 16); // float4's alignment is 16
char c;
ADD_TO_PARAM_BUFFER(c, __alignof(c));
float f;
ADD_TO_PARAM_BUFFER(f, __alignof(f));
CUdeviceptr devPtr;
ADD_TO_PARAM_BUFFER(devPtr, __alignof(devPtr));
float2 f2;
ADD_TO_PARAM_BUFFER(f2, 8); // float2's alignment is 8
void* extra[] = {
CU_LAUNCH_PARAM_BUFFER_POINTER, paramBuffer,
CU_LAUNCH_PARAM_BUFFER_SIZE, ¶mBufferSize,
CU_LAUNCH_PARAM_END
};
cuLaunchKernel(cuFunction,
blockWidth, blockHeight, blockDepth,
gridWidth, gridHeight, gridDepth,
0, 0, 0, extra);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 360
Driver API
is padded in device code with 12 bytes after field f since the alignment requirement for
field f4 is 16.
typedef struct {
float f;
float4 f4;
} myStruct;
In particular, this means that applications written using the driver API can invoke
libraries written using the runtime API (such as cuFFT, cuBLAS, ...).
All functions from the device and version management sections of the reference manual
can be used interchangeably.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 361
Appendix K.
CUDA ENVIRONMENT VARIABLES
Environment variables related to the Multi-Process Service are documented in the Multi-
Process Service section of the GPU Deployment and Management guide.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 362
CUDA Environment Variables
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 363
CUDA Environment Variables
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 364
Appendix L.
UNIFIED MEMORY PROGRAMMING
A processor refers to any independent execution unit with a dedicated MMU. This
includes both CPUs and GPUs of any type and architecture.
The underlying system manages data access and locality within a CUDA program
without need for explicit memory copy calls. This benefits GPU programming in two
primary ways:
‣ GPU programming is simplified by unifying memory spaces coherently across all
GPUs and CPUs in the system and by providing tighter and more straightforward
language integration for CUDA programmers.
‣ Data access speed is maximized by transparently migrating data towards the
processor using it.
In simple terms, Unified Memory eliminates the need for explicit data movement via the
cudaMemcpy*() routines without the performance penalty incurred by placing all data
into zero-copy memory. Data movement, of course, still takes place, so a program’s run
time typically does not decrease; Unified Memory instead enables the writing of simpler
and more maintainable code.
Unified Memory offers a “single-pointer-to-data” model that is conceptually similar to
CUDA’s zero-copy memory. One key difference between the two is that with zero-copy
allocations the physical location of memory is pinned in CPU system memory such that
a program may have fast or slow access to it depending on where it is being accessed
from. Unified Memory, on the other hand, decouples memory and execution spaces so
that all data accesses are fast.
The term Unified Memory describes a system that provides memory management
services to a wide range of programs, from those targeting the Runtime API down to
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 365
Unified Memory Programming
those using the Virtual ISA (PTX). Part of this system defines the managed memory
space that opts in to Unified Memory services.
Managed memory is interoperable and interchangeable with device-specific allocations,
such as those created using the cudaMalloc() routine. All CUDA operations that are
valid on device memory are also valid on managed memory; the primary difference is
that the host portion of a program is able to reference and access the memory as well.
L.1.1. System Requirements
Unified Memory has two basic requirements:
‣ a GPU with SM architecture 3.0 or higher (Kepler class or newer)
‣ a 64-bit host application and non-embedded operating system (Linux or Windows)
GPUs with SM architecture 6.x or higher (Pascal class or newer) provide additional
Unified Memory features such as on-demand page migration and GPU memory
oversubscription that are outlined throughout this document. Note that currently these
features are only supported on Linux operating systems. Applications running on
Windows (whether in TCC or WDDM mode) will use the basic Unified Memory model
as on pre-6.x architectures even when they are running on hardware with compute
capability 6.x or higher. See Data Migration and Coherency for details.
On supporting platforms with devices of compute capability 6.x and higher, Unified
Memory will enable applications to allocate and share data using the default system
allocator. This allows the GPU to access the entire system virtual memory without
using a special allocator. See System Allocator for more detail.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 366
Unified Memory Programming
The following code examples illustrate how the use of managed memory can change the
way in which host code is written. First, a simple program written without the benefit of
Unified Memory:
__global__ void AplusB(int *ret, int a, int b) {
ret[threadIdx.x] = a + b + threadIdx.x;
}
int main() {
int *ret;
cudaMalloc(&ret, 1000 * sizeof(int));
AplusB<<< 1, 1000 >>>(ret, 10, 100);
int *host_ret = (int *)malloc(1000 * sizeof(int));
cudaMemcpy(host_ret, ret, 1000 * sizeof(int), cudaMemcpyDefault);
for(int i = 0; i < 1000; i++)
printf("%d: A+B = %d\n", i, host_ret[i]);
free(host_ret);
cudaFree(ret);
return 0;
}
This first example combines two numbers together on the GPU with a per-thread ID and
returns the values in an array. Without managed memory, both host- and device-side
storage for the return values is required (host_ret and ret in the example), as is an
explicit copy between the two using cudaMemcpy().
Compare this with the Unified Memory version of the program, which allows direct
access of GPU data from the host. Notice the cudaMallocManaged() routine, which
returns a pointer valid from both host and device code. This allows ret to be used
without a separate host_ret copy, greatly simplifying and reducing the size of the
program.
__global__ void AplusB(int *ret, int a, int b) {
ret[threadIdx.x] = a + b + threadIdx.x;
}
int main() {
int *ret;
cudaMallocManaged(&ret, 1000 * sizeof(int));
AplusB<<< 1, 1000 >>>(ret, 10, 100);
cudaDeviceSynchronize();
for(int i = 0; i < 1000; i++)
printf("%d: A+B = %d\n", i, ret[i]);
cudaFree(ret);
return 0;
}
Note the absence of explicit cudaMemcpy() commands and the fact that the return array
ret is visible on both CPU and GPU.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 367
Unified Memory Programming
It is worth a comment on the synchronization between host and device. Notice how in
the non-managed example, the synchronous cudaMemcpy() routine is used both to
synchronize the kernel (that is, to wait for it to finish running), and to transfer the data
to the host. The Unified Memory examples do not call cudaMemcpy() and so require an
explicit cudaDeviceSynchronize() before the host program can safely use the output
from the GPU.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 368
Unified Memory Programming
share arrays larger than the total physical capacity of the system, enabling out-of-core
processing of very large datasets. cudaMallocManaged will not run out of memory as
long as there is enough system memory available for the allocation.
L.1.5. Multi-GPU
For devices of compute capability lower than 6.x managed memory allocation behaves
identically to unmanaged memory allocated using cudaMalloc(): the current active
device is the home for the physical allocation, and all other GPUs receive peer mappings
to the memory. This means that other GPUs in the system will access the memory at
reduced bandwidth over the PCIe bus. Note that if peer mappings are not supported
between the GPUs in the system, then the managed memory pages are placed in CPU
system memory (“zero-copy” memory), and all GPUs will experience PCIe bandwidth
restrictions. See Managed Memory with Multi-GPU Programs on pre-6.x Architectures
for details.
Managed allocations on systems with devices of compute capability 6.x are visible to all
GPUs and can migrate to any processor on-demand. Unified Memory performance hints
(see Performance Tuning) allow developers to explore custom usage patterns, such as
read duplication of data across GPUs and direct access to peer GPU memory without
migration.
L.1.6. System Allocator
Devices of compute capability 7.0 support Address Translation Services (ATS) over
NVLink. If supported by the host CPU and operating system, ATS allows the GPU to
directly access the CPU’s page tables. A miss in the GPU MMU will result in an Address
Translation Request (ATR) to the CPU. The CPU looks in its page tables for the virtual-
to-physical mapping for that address and supplies the translation back to the GPU. ATS
provides the GPU full access to system memory, such as memory allocated with malloc,
memory allocated on stack, global variables and file-backed memory. An application can
query whether the device supports coherently accessing pageable memory via ATS by
checking the new pageableMemoryAccessUsesHostPageTables property.
Here is an example code that works on any system that satisfies the basic requirements
for Unified Memory (see System Requirements):
int *data;
cudaMallocManaged(&data, sizeof(int) * n);
kernel<<<grid, block>>>(data);
In the example above, data could be initialized by a third party CPU library, and then
directly accessed by the GPU kernel. On systems with pageableMemoryAccess, users
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 369
Unified Memory Programming
L.1.7. Hardware Coherency
The second generation of NVLink allows direct load/store/atomic access from the
CPU to each GPU’s memory. Coupled with a new CPU mastering capability, NVLink
supports coherency operations allowing data reads from GPU memory to be stored in
the CPU’s cache hierarchy. The lower latency of access from the CPU’s cache is key for
CPU performance. Devices of compute capability 6.x support only peer GPU atomics.
Devices of compute capability 7.x can send GPU atomics across NVLink and have them
completed at the target CPU, thus the second generation of NVLink adds support for
atomics initiated by either the GPU or the CPU.
Note that cudaMalloc allocations are not accessible from the CPU. Therefore, to take
advantage of hardware coherency users must use Unified Memory allocators such as
cudaMallocManaged or system allocator with ATS support (see System Allocator). The
new property directManagedMemAccessFromHost indicates if the host can directly
access managed memory on the device without migration. By default, any CPU access of
cudaMallocManaged allocations resident in GPU memory will trigger page faults and
data migration. Applications can use cudaMemAdviseSetAccessedBy performance hint
with cudaCpuDeviceId to enable direct access of GPU memory on supported systems.
Consider an example code below:
__global__ void write(int *ret, int a, int b) {
ret[threadIdx.x] = a + b + threadIdx.x;
}
__global__ void append(int *ret, int a, int b) {
ret[threadIdx.x] += a + b + threadIdx.x;
}
int main() {
int *ret;
cudaMallocManaged(&ret, 1000 * sizeof(int));
cudaMemAdvise(ret, 1000 * sizeof(int), cudaMemAdviseSetAccessedBy,
cudaCpuDeviceId); // set direct access hint
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 370
Unified Memory Programming
After write kernel is completed, ret will be created and initialized in GPU memory.
Next, the CPU will access ret followed by append kernel using the same ret memory
again. This code will show different behavior depending on the system architecture and
support of hardware coherency:
‣ On systems with directManagedMemAccessFromHost=1: CPU accesses to the
managed buffer will not trigger any migrations; the data will remain resident in
GPU memory and any subsequent GPU kernels can continue to access it directly
without inflicting faults or migrations.
‣ On systems with directManagedMemAccessFromHost=0: CPU accesses to the
managed buffer will page fault and initiate data migration; any GPU kernel trying
to access the same data first time will page fault and migrate pages back to GPU
memory.
L.1.8. Access Counters
Devices of compute capability 7.0 introduce a new Access Counter feature that
keeps track of the frequency of access that a GPU makes to memory located on other
processors. Access Counters help ensure memory pages are moved to the physical
memory of the processor that is accessing the pages most frequently. The Access
Counters feature can guide migrations between CPU and GPU, and between peer GPUs.
For cudaMallocManaged, Access Counters migration can be opt-in by using
cudaMemAdviseSetAccessedBy hint with the corresponding device id. The driver
may also use Access Counters for more efficient thrashing mitigation or memory
oversubscription scenarios.
Access Counters are currently enabled only on IBM Power9 systems and only for the
cudaMallocManaged allocator.
L.2. Programming Model
L.2.1. Managed Memory Opt In
Most platforms require a program to opt in to automatic data management by either
annotating a __device__ variable with the __managed__ keyword (see the Language
Integration section) or by using a new cudaMallocManaged() call to allocate data.
Devices of compute capability lower than 6.x must always allocate managed memory on
the heap, either with an allocator or by declaring global storage. It is not possible either
to associate previously allocated memory with Unified Memory, or to have the Unified
Memory system manage a CPU or a GPU stack pointer.
Starting with CUDA 8.0 and on supporting systems with devices of compute capability
6.x, memory allocated with the default OS allocator (e.g. malloc or new) can be accessed
from both GPU code and CPU code using the same pointer. On these systems, Unified
Memory is the default: there is no need to use a special allocator or the creation of a
specially managed memory pool.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 371
Unified Memory Programming
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 372
Unified Memory Programming
All semantics of the original __device__ memory space, along with some additional
unified-memory-specific constraints, are inherited by the managed variable (see
Compilation with NVCC).
Note that variables marked __constant__ may not also be marked as __managed__;
this annotation is reserved for __device__ variables only. Constant memory must be set
either statically at compile time or by using cudaMemcpyToSymbol() as usual in CUDA.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 373
Unified Memory Programming
cudaDeviceSynchronize();
return 0;
}
In example above, the GPU program kernel is still active when the CPU touches y.
(Note how it occurs before cudaDeviceSynchronize().) The code runs successfully
on devices of compute capability 6.x due to the GPU page faulting capability which
lifts all restrictions on simultaneous access. However, such memory access is invalid on
pre-6.x architectures even though the CPU is accessing different data than the GPU. The
program must explicitly synchronize with the GPU before accessing y:
__device__ __managed__ int x, y=2;
__global__ void kernel() {
x = 10;
}
int main() {
kernel<<< 1, 1 >>>();
cudaDeviceSynchronize();
y = 20; // Success on GPUs not supporing concurrent access
return 0;
}
As this example shows, on systems with pre-6.x GPU architectures, a CPU thread may
not access any managed data in between performing a kernel launch and a subsequent
synchronization call, regardless of whether the GPU kernel actually touches that same
data (or any managed data at all). The mere potential for concurrent CPU and GPU
access is sufficient for a process-level exception to be raised.
Note that if memory is dynamically allocated with cudaMallocManaged() or
cuMemAllocManaged() while the GPU is active, the behavior of the memory is
unspecified until additional work is launched or the GPU is synchronized. Attempting
to access the memory on the CPU during this time may or may not cause a segmentation
fault. This does not apply to memory allocated using the flag cudaMemAttachHost or
CU_MEM_ATTACH_HOST.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 374
Unified Memory Programming
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 375
Unified Memory Programming
while a kernel is active. Here we present a system for finer-grained control of managed
memory designed to work on all devices supporting managed memory, including older
architectures with concurrentManagedAccess equal to 0.
The CUDA programming model provides streams as a mechanism for programs to
indicate dependence and independence among kernel launches. Kernels launched into
the same stream are guaranteed to execute consecutively, while kernels launched into
different streams are permitted to execute concurrently. Streams describe independence
between work items and hence allow potentially greater efficiency through concurrency.
Unified Memory builds upon the stream-independence model by allowing a CUDA
program to explicitly associate managed allocations with a CUDA stream. In this way,
the programmer indicates the use of data by kernels based on whether they are launched
into a specified stream or not. This enables opportunities for concurrency based on
program-specific data access patterns. The function to control this behaviour is:
cudaError_t cudaStreamAttachMemAsync(cudaStream_t stream,
void *ptr,
size_t length=0,
unsigned int flags=0);
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 376
Unified Memory Programming
devices of compute capability lower than 6.x. Looking at the earlier synchronization
example:
__device__ __managed__ int x, y=2;
__global__ void kernel() {
x = 10;
}
int main() {
cudaStream_t stream1;
cudaStreamCreate(&stream1);
cudaStreamAttachMemAsync(stream1, &y, 0, cudaMemAttachHost);
cudaDeviceSynchronize(); // Wait for Host attachment to occur.
kernel<<< 1, 1, 0, stream1 >>>(); // Note: Launches into stream1.
y = 20; // Success – a kernel is running but “y”
// has been associated with no stream.
return 0;
}
Here we explicitly associate y with host accessibility, thus enabling access at all times
from the CPU. (As before, note the absence of cudaDeviceSynchronize() before the
access.) Accesses to y by the GPU running kernel will now produce undefined results.
Note that associating a variable with a stream does not change the associating of any
other variable. E.g. associating x with stream1 does not ensure that only x is accessed
by kernels launched in stream1, thus an error is caused by this code:
__device__ __managed__ int x, y=2;
__global__ void kernel() {
x = 10;
}
int main() {
cudaStream_t stream1;
cudaStreamCreate(&stream1);
cudaStreamAttachMemAsync(stream1, &x);// Associate “x” with stream1.
cudaDeviceSynchronize(); // Wait for “x” attachment to occur.
kernel<<< 1, 1, 0, stream1 >>>(); // Note: Launches into stream1.
y = 20; // ERROR: “y” is still associated
globally
// with all streams by default
return 0;
}
Note how the access to y will cause an error because, even though x has been associated
with a stream, we have told the system nothing about who can see y. The system
therefore conservatively assumes that kernel might access it and prevents the CPU
from doing so.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 377
Unified Memory Programming
In this example, the allocation-stream association is established just once, and then data
is used repeatedly by both the host and device. The result is much simpler code than
occurs with explicitly copying data between host and device, although the result is the
same.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 378
Unified Memory Programming
L.2.3. Language Integration
Users of the CUDA Runtime API who compile their host code using nvcc have access to
additional language integration features, such as shared symbol names and inline kernel
launch via the <<<...>>> operator. Unified Memory adds one additional element to
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 379
Unified Memory Programming
CUDA’s language integration: variables annotated with the __managed__ keyword can
be referenced directly from both host and device code.
The following example, seen earlier in Simplifying GPU Programming, illustrates a
simple use of __managed__ global declarations:
// Managed variable declaration is an extra annotation with __device__
__device__ __managed__ int x;
__global__ void kernel() {
// Reference "x" directly - it's a normal variable on the GPU.
printf( "GPU sees: x = %d\n" , x);
}
int main() {
// Set "x" from Host code. Note it's just a normal variable on the CPU.
x = 1234;
The capability available with __managed__ variables is that the symbol is available in
both device code and in host code without the need to dereference a pointer, and the
data is shared by all. This makes it particularly easy to exchange data between host and
device programs without the need for explicit allocations or copying.
Semantically, the behavior of __managed__ variables is identical to that
of storage allocated via cudaMallocManaged(). See Explicit Allocation
Using cudaMallocManaged() for detailed explanation. Stream visibility
defaults to cudaMemAttachGlobal, but may be constrained using
cudaStreamAttachMemAsync().
A valid CUDA context is necessary for the correct operation of __managed__ variables.
Accessing __managed__ variables can trigger CUDA context creation if a context for
the current device hasn’t already been created. In the example above, accessing x before
the kernel launch triggers context creation on device 0. In the absence of that access, the
kernel launch would have triggered context creation.
C++ objects declared as __managed__ are subject to certain specific constraints,
particularly where static initializers are concerned. Please refer to C++ Language
Support in the CUDA C++ Programming Guide for a list of these constraints.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 380
Unified Memory Programming
L.2.4.2. Pointer Attributes
To determine if a given pointer refers to managed memory, a program can call
cudaPointerGetAttributes() and check the value of the isManaged attribute. This
attribute is set to 1 if the pointer refers to managed memory and to 0 if not.
L.2.5. Advanced Topics
L.2.5.1. Managed Memory with Multi-GPU Programs on pre-6.x
Architectures
On systems with devices of compute capabilities lower than 6.x managed allocations
are automatically visible to all GPUs in a system via the peer-to-peer capabilities of the
GPUs.
On Linux the managed memory is allocated in GPU memory as long as all GPUs that
are actively being used by a program have the peer-to-peer support. If at any time the
application starts using a GPU that doesn’t have peer-to-peer support with any of the
other GPUs that have managed allocations on them, then the driver will migrate all
managed allocations to system memory.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 381
Unified Memory Programming
On Windows if peer mappings are not available (for example, between GPUs of
different architectures), then the system will automatically fall back to using zero-copy
memory, regardless of whether both GPUs are actually used by a program. If only one
GPU is actually going to be used, it is necessary to set the CUDA_VISIBLE_DEVICES
environment variable before launching the program. This constrains which GPUs are
visible and allows managed memory to be allocated in GPU memory.
Alternatively, on Windows users can also set CUDA_MANAGED_FORCE_DEVICE_ALLOC to
a non-zero value to force the driver to always use device memory for physical storage.
When this environment variable is set to a non-zero value, all devices used in that
process that support managed memory have to be peer-to-peer compatible with each
other. The error ::cudaErrorInvalidDevice will be returned if a device that supports
managed memory is used and it is not peer-to-peer compatible with any of the other
managed memory supporting devices that were previously used in that process, even
if ::cudaDeviceReset has been called on those devices. These environment variables are
described in Appendix CUDA Environment Variables. Note that starting from CUDA
8.0 CUDA_MANAGED_FORCE_DEVICE_ALLOC has no effect on Linux operating systems.
L.3. Performance Tuning
In order to achieve good performance with Unified Memory, the following objectives
must be met:
‣ Faults should be avoided: While replayable faults are fundamental to enabling a
simpler programming model, they can be severely detrimental to application
performance. Fault handling can take tens of microseconds because it may involve
TLB invalidates, data migrations and page table updates. All the while, execution
in certain portions of the application will be halted, thereby potentially impacting
overall performance.
‣ Data should be local to the accessing processor: As mentioned before, memory access
latencies and bandwidth are significantly better when the data is placed local to
the processor accessing it. Therefore, data should be suitably migrated to take
advantage of lower latencies and higher bandwidth.
‣ Memory thrashing should be prevented: If data is frequently accessed by multiple
processors and has to be constantly migrated around to achieve data locality, then
the overhead of migration may exceed the benefits of locality. Memory thrashing
should be prevented to the extent possible. If it cannot be prevented, it must be
detected and resolved appropriately.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 382
Unified Memory Programming
To achieve the same level of performance as what's possible without using Unified
Memory, the application has to guide the Unified Memory driver subsystem into
avoiding the aforementioned pitfalls. It is worthy to note that the Unified Memory
driver subsystem can detect common data access patterns and achieve some of these
objectives automatically without application participation. But when the data access
patterns are non-obvious, explicit guidance from the application is crucial. CUDA
8.0 introduces useful APIs for providing the runtime with memory usage hints
(cudaMemAdvise()) and for explicit prefetching (cudaMemPrefetchAsync()). These
tools allow the same capabilities as explicit memory copy and pinning APIs without
reverting to the limitations of explicit GPU memory allocation.
L.3.1. Data Prefetching
Data prefetching means migrating data to a processor’s memory and mapping it in
that processor’s page tables before the processor begins accessing that data. The intent
of data prefetching is to avoid faults while also establishing data locality. This is most
valuable for applications that access data primarily from a single processor at any given
time. As the accessing processor changes during the lifetime of the application, the data
can be prefetched accordingly to follow the execution flow of the application. Since work
is launched in streams in CUDA, it is expected of data prefetching to also be a streamed
operation as shown in the following API:
where the memory region specified by devPtr pointer and count number of bytes, with
ptr rounded down to the nearest page boundary and count rounded up to the nearest
page boundary, is migrated to the dstDevice by enqueueing a migration operation in
stream. Passing in cudaCpuDeviceId for dstDevice will cause data to be migrated to
CPU memory.
Consider a simple code example below:
void foo(cudaStream_t s) {
char *data;
cudaMallocManaged(&data, N);
init_data(data, N); // execute on CPU
cudaMemPrefetchAsync(data, N, myGpuId, s); // prefetch to GPU
mykernel<<<..., s>>>(data, N, 1, compare); // execute on GPU
cudaMemPrefetchAsync(data, N, cudaCpuDeviceId, s); // prefetch to CPU
cudaStreamSynchronize(s);
use_data(data, N);
cudaFree(data);
}
Without performance hints the kernel mykernel will fault on first access to data
which creates additional overhead of the fault processing and generally slows down
the application. By prefetching data in advance it is possible to avoid page faults and
achieve better performance.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 383
Unified Memory Programming
This API follows stream ordering semantics, i.e. the migration does not begin until all
prior operations in the stream have completed, and any subsequent operation in the
stream does not begin until the migration has completed.
where advice, specified for data contained in region starting from devPtr address
and with the length of count bytes, rounded to the nearest page boundary, can take the
following values:
‣ cudaMemAdviseSetReadMostly: This implies that the data is mostly going to be
read from and only occasionally written to. This allows the driver to create read-
only copies of the data in a processor's memory when that processor accesses it.
Similarly, if cudaMemPrefetchAsync is called on this region, it will create a read-
only copy of the data on the destination processor. When a processor writes to this
data, all copies of the corresponding page are invalidated except for the one where
the write occurred. The device argument is ignored for this advice. This advice
allows multiple processors to simultaneously access the same data at maximal
bandwidth as illustrated in the following code snippet:
char *dataPtr;
size_t dataSize = 4096;
// Allocate memory using malloc or cudaMallocManaged
dataPtr = (char *)malloc(dataSize);
// Set the advice on the memory region
cudaMemAdvise(dataPtr, dataSize, cudaMemAdviseSetReadMostly, 0);
int outerLoopIter = 0;
while (outerLoopIter < maxOuterLoopIter) {
// The data is written to in the outer loop on the CPU
initializeData(dataPtr, dataSize);
// The data is made available to all GPUs by prefetching.
// Prefetching here causes read duplication of data instead
// of data migration
for (int device = 0; device < maxDevices; device++) {
cudaMemPrefetchAsync(dataPtr, dataSize, device, stream);
}
// The kernel only reads this data in the inner loop
int innerLoopIter = 0;
while (innerLoopIter < maxInnerLoopIter) {
kernel<<<32,32>>>((const char *)dataPtr);
innerLoopIter++;
}
outerLoopIter++;
}
‣ cudaMemAdviseSetPreferredLocation: This advice sets the preferred
location for the data to be the memory belonging to device. Passing in a value of
cudaCpuDeviceId for device sets the preferred location as CPU memory. Setting
the preferred location does not cause data to migrate to that location immediately.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 384
Unified Memory Programming
Instead, it guides the migration policy when a fault occurs on that memory region. If
the data is already in its preferred location and the faulting processor can establish
a mapping without requiring the data to be migrated, then the migration will be
avoided. On the other hand, if the data is not in its preferred location or if a direct
mapping cannot be established, then it will be migrated to the processor accessing
it. It is important to note that setting the preferred location does not prevent data
prefetching done using cudaMemPrefetchAsync.
‣ cudaMemAdviseSetAccessedBy: This advice implies that the data will be accessed
by device. This does not cause data migration and has no impact on the location
of the data per se. Instead, it causes the data to always be mapped in the specified
processor’s page tables, as long as the location of the data permits a mapping to
be established. If the data gets migrated for any reason, the mappings are updated
accordingly. This advice is useful in scenarios where data locality is not important,
but avoiding faults is. Consider for example a system containing multiple GPUs
with peer-to-peer access enabled, where the data located on one GPU is occasionally
accessed by other GPUs. In such scenarios, migrating data over to the other GPUs is
not as important because the accesses are infrequent and the overhead of migration
may be too high. But preventing faults can still help improve performance, and
so having a mapping set up in advance is useful. Note that on CPU access of this
data, the data may be migrated to CPU memory because the CPU cannot access
GPU memory directly. Any GPU that had the cudaMemAdviceSetAccessedBy flag
set for this data will now have its mapping updated to point to the page in CPU
memory.
Each advice can be also unset by using one of the following values:
cudaMemAdviseUnsetReadMostly, cudaMemAdviseUnsetPreferredLocation and
cudaMemAdviseUnsetAccessedBy.
cudaMemRangeGetAttribute(void *data,
size_t dataSize,
enum cudaMemRangeAttribute attribute,
const void *devPtr,
size_t count);
This function queries an attribute of the memory range starting at devPtr with a
size of count bytes. The memory range must refer to managed memory allocated via
cudaMallocManaged or declared via __managed__ variables. It is possible to query the
following attributes:
‣ cudaMemRangeAttributeReadMostly: the result returned will be 1 if all pages in
the given memory range have read-duplication enabled, or 0 otherwise.
‣ cudaMemRangeAttributePreferredLocation: the result returned will
be a GPU device id or cudaCpuDeviceId if all pages in the memory range
have the corresponding processor as their preferred location, otherwise
cudaInvalidDeviceId will be returned. An application can use this query API to
make decision about staging data through CPU or GPU depending on the preferred
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 385
Unified Memory Programming
location attribute of the managed pointer. Note that the actual location of the pages
in the memory range at the time of the query may be different from the preferred
location.
‣ cudaMemRangeAttributeAccessedBy: will return the list of devices that have that
advise set for that memory range.
‣ cudaMemRangeAttributeLastPrefetchLocation: will return the last
location to which all pages in the memory range were prefetched explicitly using
cudaMemPrefetchAsync. Note that this simply returns the last location that the
application requested to prefetch the memory range to. It gives no indication as to
whether the prefetch operation to that location has completed or even begun.
Additionally, multiple attributes can be queried by using corresponding
cudaMemRangeGetAttributes function.
www.nvidia.com
CUDA C++ Programming Guide PG-02829-001_v11.0 | 386
Notice
ALL NVIDIA DESIGN SPECIFICATIONS, REFERENCE BOARDS, FILES, DRAWINGS,
DIAGNOSTICS, LISTS, AND OTHER DOCUMENTS (TOGETHER AND SEPARATELY,
"MATERIALS") ARE BEING PROVIDED "AS IS." NVIDIA MAKES NO WARRANTIES,
EXPRESSED, IMPLIED, STATUTORY, OR OTHERWISE WITH RESPECT TO THE
MATERIALS, AND EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES OF
NONINFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR
PURPOSE.
Information furnished is believed to be accurate and reliable. However, NVIDIA
Corporation assumes no responsibility for the consequences of use of such
information or for any infringement of patents or other rights of third parties
that may result from its use. No license is granted by implication of otherwise
under any patent rights of NVIDIA Corporation. Specifications mentioned in this
publication are subject to change without notice. This publication supersedes and
replaces all other information previously supplied. NVIDIA Corporation products
are not authorized as critical components in life support devices or systems
without express written approval of NVIDIA Corporation.
Trademarks
NVIDIA and the NVIDIA logo are trademarks or registered trademarks of NVIDIA
Corporation in the U.S. and other countries. Other company and product names
may be trademarks of the respective companies with which they are associated.
Copyright
© 2007-2020 NVIDIA Corporation. All rights reserved.
www.nvidia.com