enum CGOpenMPRuntimeGPU::DataSharingMode

Description

Target codegen is specialized based on two data-sharing modes: CUDA, in which the local variables are actually global threadlocal, and Generic, in which the local variables are placed in global memory if they may escape their declaration context.

Declared at: clang/lib/CodeGen/CGOpenMPRuntimeGPU.h:347

Enumerators

NameValueComment
CUDA0CUDA data sharing mode.
Generic1Generic data-sharing mode.