* [wwwdocs] OpenMP - minor update/fixes for gomp + gcc-13
@ 2022-05-19 12:13 Tobias Burnus
2022-05-19 12:14 ` Jakub Jelinek
0 siblings, 1 reply; 2+ messages in thread
From: Tobias Burnus @ 2022-05-19 12:13 UTC (permalink / raw)
To: Jakub Jelinek, gcc-patches
[-- Attachment #1: Type: text/plain, Size: 758 bytes --]
Hi Jakub, hi all,
the main reason for this patch is to change Documentation from <p> to <h2>
in projects/gomp/ as I realized that those cross references weren't as
prominently visible as I had hoped for.
Additionally:
* gcc-13/changes.html: Add a feature I had missed (non-rect loop nest in F90)
+ new features committed after the last change.
and in projects/gomp/
* Fix a mis-placed </code>
* Mark two additional items as GCC-13 implemented.
OK? Comments?
Tobias
-----------------
Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955
[-- Attachment #2: omp-update.diff --]
[-- Type: text/x-patch, Size: 4233 bytes --]
OpenMP - minor update/fixes for gomp + gcc-13
* gcc-13/changes.html (OpenMP): Update.
* projects/gomp/: Make Documentation a '<h2>'; fix </code> location;
mark two features as GCC-13 supported.
diff --git a/htdocs/gcc-13/changes.html b/htdocs/gcc-13/changes.html
index 969fb00b..2d974ae5 100644
--- a/htdocs/gcc-13/changes.html
+++ b/htdocs/gcc-13/changes.html
@@ -41,9 +41,12 @@ a work-in-progress.</p>
<li><a href="https://gcc.gnu.org/projects/gomp/">OpenMP</a>
<ul>
<li>The following OpenMP 5.1 features have been added: the
- <code>omp_all_memory</code> reserved locator and the
- <code>omp_target_is_accessible</code> and <code>omp_get_mapped_ptr</code>
- API routines.</li>
+ <code>omp_all_memory</code> reserved locator, the <code>inoutset</code>
+ modifier to the <code>depend</code> clause and the
+ <code>omp_target_is_accessible</code>, <code>omp_target_memcpy_async</code>,
+ <code>omp_target_memcpy_rect_async</code> and
+ <code>omp_get_mapped_ptr</code> API routines. Fortran now supports
+ non-rectangular loop nests, which were added for C/C++ in GCC 11.</li>
</ul>
</li>
</ul>
diff --git a/htdocs/projects/gomp/index.html b/htdocs/projects/gomp/index.html
index c282b4f5..68531a57 100644
--- a/htdocs/projects/gomp/index.html
+++ b/htdocs/projects/gomp/index.html
@@ -20,6 +20,7 @@ OpenMP and OpenACC are supported with GCC's C, C++ and Fortran compilers.</p>
<h2>Content</h2>
<ul>
<li><a href="#usage">Usage</a></li>
+ <li><a href="#documentation">Documentation</a></li>
<li><a href="#history_and_goal">History and Project Goal</a></li>
<li><a href="#contributing">Contributing</a></li>
<li><a href="#bugs">Reporting Bugs</a></li>
@@ -66,7 +67,7 @@ OpenMP and OpenACC are supported with GCC's C, C++ and Fortran compilers.</p>
details.</li>
</ul>
-<p>Documentation</p>
+<h2 id="documentation">Documentation</h2>
<ul>
<li><a href="https://gcc.gnu.org/onlinedocs/libgomp/">GNU libgomp</a> manual
for API routines, environment variables and implementation details.</li>
@@ -550,7 +551,7 @@ than listed, depending on resolved corner cases and optimizations.</p>
<td></td>
</tr>
<tr>
- <td><code>seq_cst</code> clause on a <code>flush construct</code></td>
+ <td><code>seq_cst</code> clause on a <code>flush</code> construct</td>
<td class="supported"><a href="../../gcc-12/changes.html#languages">GCC 12</a></td>
<td></td>
</tr>
@@ -604,11 +605,21 @@ than listed, depending on resolved corner cases and optimizations.</p>
<td class="supported"><a href="../../gcc-12/changes.html#languages">GCC 12</a></td>
<td></td>
</tr>
+ <tr>
+ <td><code>inoutset</code> argument to the <code>depend</code> clause</td>
+ <td class="supported"><a href="../../gcc-13/changes.html#languages">GCC 13</a></td>
+ <td></td>
+ </tr>
<tr>
<td><code>omp_target_is_accessible</code> runtime routine</td>
<td class="supported"><a href="../../gcc-13/changes.html#languages">GCC 13</a></td>
<td></td>
</tr>
+ <tr>
+ <td><code>omp_target_memcpy_async</code> and <code>omp_target_memcpy_rect_async</code> runtime routines</td>
+ <td class="supported"><a href="../../gcc-13/changes.html#languages">GCC 13</a></td>
+ <td></td>
+ </tr>
<tr>
<td><code>omp_get_mapped_ptr</code> runtime routine</td>
<td class="supported"><a href="../../gcc-13/changes.html#languages">GCC 13</a></td>
@@ -684,21 +695,11 @@ than listed, depending on resolved corner cases and optimizations.</p>
<td class="unsupported">No</td>
<td></td>
</tr>
- <tr>
- <td><code>inoutset</code> argument to the <code>depend</code> clause</td>
- <td class="unsupported">No</td>
- <td></td>
- </tr>
<tr>
<td><code>present</code> argument to <code>defaultmap</code> clause</td>
<td class="unsupported">No</td>
<td></td>
</tr>
- <tr>
- <td><code>omp_target_memcpy_async</code> and <code>omp_target_memcpy_rect_async</code> runtime routines</td>
- <td class="unsupported">No</td>
- <td></td>
- </tr>
<tr>
<td><code>ompt_scope_endpoint_t</code> enum: <code>ompt_scope_beginend</code></td>
<td class="unsupported">No</td>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [wwwdocs] OpenMP - minor update/fixes for gomp + gcc-13
2022-05-19 12:13 [wwwdocs] OpenMP - minor update/fixes for gomp + gcc-13 Tobias Burnus
@ 2022-05-19 12:14 ` Jakub Jelinek
0 siblings, 0 replies; 2+ messages in thread
From: Jakub Jelinek @ 2022-05-19 12:14 UTC (permalink / raw)
To: Tobias Burnus; +Cc: gcc-patches, Gerald Pfeifer
On Thu, May 19, 2022 at 02:13:03PM +0200, Tobias Burnus wrote:
> Hi Jakub, hi all,
>
> the main reason for this patch is to change Documentation from <p> to <h2>
> in projects/gomp/ as I realized that those cross references weren't as
> prominently visible as I had hoped for.
>
> Additionally:
> * gcc-13/changes.html: Add a feature I had missed (non-rect loop nest in F90)
> + new features committed after the last change.
> and in projects/gomp/
> * Fix a mis-placed </code>
> * Mark two additional items as GCC-13 implemented.
>
> OK? Comments?
Ok.
Jakub
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-05-19 12:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-19 12:13 [wwwdocs] OpenMP - minor update/fixes for gomp + gcc-13 Tobias Burnus
2022-05-19 12:14 ` Jakub Jelinek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).