diff options
author | Arpith Chacko Jacob <acjacob@us.ibm.com> | 2017-01-25 01:38:33 +0000 |
---|---|---|
committer | Arpith Chacko Jacob <acjacob@us.ibm.com> | 2017-01-25 01:38:33 +0000 |
commit | 4dbf368e14e4e96311abd084f29b07d398f680fc (patch) | |
tree | a10c316d939ffb931128dc8b4cef78457b99d213 /clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp | |
parent | 2f3f9855f0fd5a5c5af28bf705b35fc30d6e9738 (diff) | |
download | bcm5719-llvm-4dbf368e14e4e96311abd084f29b07d398f680fc.tar.gz bcm5719-llvm-4dbf368e14e4e96311abd084f29b07d398f680fc.zip |
[OpenMP] Codegen support for 'target teams' on the host.
This patch adds support for codegen of 'target teams' on the host.
This combined directive has two captured statements, one for the
'teams' region, and the other for the 'parallel'.
This target teams region is offloaded using the __tgt_target_teams()
call. The patch sets the number of teams as an argument to
this call.
Reviewers: ABataev
Differential Revision: https://reviews.llvm.org/D29084
llvm-svn: 293001
Diffstat (limited to 'clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp b/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp index 6b5591b8b5c..a277b679f2a 100644 --- a/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp +++ b/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp @@ -198,6 +198,7 @@ getExecutionModeForDirective(CodeGenModule &CGM, OpenMPDirectiveKind DirectiveKind = D.getDirectiveKind(); switch (DirectiveKind) { case OMPD_target: + case OMPD_target_teams: return CGOpenMPRuntimeNVPTX::ExecutionMode::Generic; case OMPD_target_parallel: return CGOpenMPRuntimeNVPTX::ExecutionMode::Spmd; |