From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1534) id 67E63385780A; Mon, 12 Oct 2020 08:35:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 67E63385780A To: gcc-cvs-wwwdocs@gcc.gnu.org Subject: gcc-wwwdocs branch master updated. 61f7e6b543726bfa61793f72357913bc6a579342 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: df48cfe754f3ec94c83955c29133baa9580bc1df X-Git-Newrev: 61f7e6b543726bfa61793f72357913bc6a579342 Message-Id: <20201012083542.67E63385780A@sourceware.org> Date: Mon, 12 Oct 2020 08:35:42 +0000 (GMT) From: Tobias Burnus X-BeenThere: gcc-cvs-wwwdocs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs-wwwdocs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Oct 2020 08:35:42 -0000 This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "gcc-wwwdocs". The branch, master has been updated via 61f7e6b543726bfa61793f72357913bc6a579342 (commit) from df48cfe754f3ec94c83955c29133baa9580bc1df (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 61f7e6b543726bfa61793f72357913bc6a579342 Author: Tobias Burnus Date: Mon Oct 12 10:35:27 2020 +0200 gcc-11 + project/gomp: OpenMP status update * htdocs/gcc-11/changes.html (languages): Add another newly supported clause: device_type. * htdocs/projects/gomp/index.html: Mention offloading support; add post-2015 news items. diff --git a/htdocs/gcc-11/changes.html b/htdocs/gcc-11/changes.html index e2a32e51..f7417622 100644 --- a/htdocs/gcc-11/changes.html +++ b/htdocs/gcc-11/changes.html @@ -123,6 +123,7 @@ a work-in-progress.

For Fortran, OpenMP 4.5 is now finally fully supported and OpenMP 5.0 support has been extended, including the following features which were before only available in C and C++: order(concurrent), + device_type, lastprivate with conditional modifier, if clause with simd and cancel modifiers, target data without map clause, diff --git a/htdocs/projects/gomp/index.html b/htdocs/projects/gomp/index.html index 70e6d95a..2c83ccf8 100644 --- a/htdocs/projects/gomp/index.html +++ b/htdocs/projects/gomp/index.html @@ -36,6 +36,12 @@ environments. Using OpenMP's directive-based parallelism also simplifies the act of converting existing serial code to efficient parallel code.

+

OpenMP additionally permits to offload computations on +accelerators such as GPUs, +making use of their highly parallel computation support; if +no accelarator is available, as fallback, the computation is +then done on the host.

+

Project goal

To remain relevant, free software development tools must support emerging technologies. By implementing OpenMP, GOMP @@ -63,6 +69,43 @@ available.

Status

+
August 20, 2020
+

OpenMP +Technical Report 9: Version 5.1 Public Comment Draft has been released.

+ +
May 7, 2020
+

GCC 10 has been released; it adds a number of +newly implemented OpenMP 5.0 features on top of the GCC 9 release such as +conditional lastprivate clause, scan +and loop directives, order(concurrent) and +use_device_addr clauses support, if clause on +simd construct or partial support for the +declare variant directive, getting closer to full support +of the OpenMP 5.0 standard.

+ +
May 3, 2019
+

GCC 9 has been released and +version 5.0 of the OpenMP specification is now partially supported in the C +and C++ compilers. For details which features of OpenMP 5.0 are and which +are not supported in the GCC 9 release see +this mail. +

+ +
November 8, 2018
+

The OpenMP v5.0 +specification has been released.

+ +
May 2, 2017
+

GCC 7 has been released and +version 4.5 of the OpenMP specification is now partially supported in the +Fortran compiler; the largest missing item is structure element +mapping.

+ +
April 27, 2016
+

GCC 6 has been released and +version 4.5 of the OpenMP specification is now supported in the C and +C++ compilers

+
November 14, 2015

The final OpenMP v4.5 ----------------------------------------------------------------------- Summary of changes: htdocs/gcc-11/changes.html | 1 + htdocs/projects/gomp/index.html | 43 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+) hooks/post-receive -- gcc-wwwdocs