diff options
author | Alexey Bataev <a.bataev@hotmail.com> | 2019-02-05 20:38:36 +0000 |
---|---|---|
committer | Alexey Bataev <a.bataev@hotmail.com> | 2019-02-05 20:38:36 +0000 |
commit | c2dc4d4aefba285fd205f701e9c2404802fd0aaf (patch) | |
tree | a4793b30bf3b9ebd4c7dccf7d5eb50c4785c7a12 /clang/docs/OpenMPSupport.rst | |
parent | e5bb58b115934bec811b311b144e02fa541e7371 (diff) | |
download | bcm5719-llvm-c2dc4d4aefba285fd205f701e9c2404802fd0aaf.tar.gz bcm5719-llvm-c2dc4d4aefba285fd205f701e9c2404802fd0aaf.zip |
[DOCS]Support for emission of the debug info for the Cuda devices, NFC.
llvm-svn: 353214
Diffstat (limited to 'clang/docs/OpenMPSupport.rst')
-rw-r--r-- | clang/docs/OpenMPSupport.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/clang/docs/OpenMPSupport.rst b/clang/docs/OpenMPSupport.rst index 7b567c966ee..a8bfddce63a 100644 --- a/clang/docs/OpenMPSupport.rst +++ b/clang/docs/OpenMPSupport.rst @@ -101,7 +101,7 @@ between the threads in the parallel regions. Collapsed loop nest counter --------------------------- -When using the collapse clause on a loop nest the default behaviour is to +When using the collapse clause on a loop nest the default behavior is to automatically extend the representation of the loop counter to 64 bits for the cases where the sizes of the collapsed loops are not known at compile time. To prevent this conservative choice and use at most 32 bits, @@ -124,5 +124,8 @@ Features not supported or with limited support for Cuda devices - Automatic translation of math functions in target regions to device-specific math functions is not implemented yet. -- Debug information for OpenMP target regions is not supported yet. +- Debug information for OpenMP target regions is supported, but sometimes it may + be required to manually specify the address class of the inspected variables. + In some cases the local variables are actually allocated in the global memory, + but the debug info may be not aware of it. |