summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2017-12-29 18:23:12 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2017-12-29 18:23:12 +0000
commit8e57c4ca881c94dbc45016f4d250402eb54c9446 (patch)
tree04a3927c5170c9024aa13a4356f0f22992ee0d13 /docs
parent68d230359ac12075d9b63b47ed2af5fd6ba3c740 (diff)
[docs] Updated ReleaseNotes for OpenMP part.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@321561 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ReleaseNotes.rst13
1 files changed, 12 insertions, 1 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 8dce92341c..56edfeaa72 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -209,7 +209,18 @@ OpenCL C Language Changes in Clang
OpenMP Support in Clang
----------------------------------
-...
+- Added options `-f[no]-openmp-simd` that support code emission only foe OpenMP
+ SIMD-based directives, like `#pragma omp simd`, `#pragma omp parallel for simd`
+ etc. The code is emitted only for simd-based part of the combined directives
+ and clauses.
+
+- Added support for almost all target-based directives except for
+ `#pragma omp target teams distribute parallel for [simd]`. Although, please
+ note that `depend` clauses on target-based directives are not supported yet.
+ Clang supports offloading to X86_64, AArch64 and PPC64[LE] devices.
+
+- Added support for `reduction`-based clauses on `task`-based directives from
+ upcoming OpenMP 5.0.
Internal API Changes
--------------------