public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [wwwdocs] gcc-5/changes.html: Graphite - CLooG removal; Fortran - update
@ 2014-11-12 10:54 Tobias Burnus
  2014-12-30 18:36 ` Tobias Burnus
  2015-04-09 23:31 ` Gerald Pfeifer
  0 siblings, 2 replies; 3+ messages in thread
From: Tobias Burnus @ 2014-11-12 10:54 UTC (permalink / raw)
  To: gcc-patches, fortran; +Cc: Gerald Pfeifer, Tobias Grosser, Roman Gareev

[-- Attachment #1: Type: text/plain, Size: 1073 bytes --]

Hi all, hi Gerald, hi Tobias and Roman,

the patch updates gcc-5/changes.html; the Fortran bits are obvious.

For CLooG:
* That CLooG is no longer needed is the main reason for writing this
  Caveat item.

* Regarding ISL 0.12.2: The recommended version already changed
  2014-02-13 and thus for 4.9 (cf. PR59878); gcc-4.8/changes.html
  had 0.11.1 - and gcc-4.9/changes.html doesn't mention ISL or CLooG.
  I don't know whether the GCC 5 change of using ISL directly instead
  of CLooG with ISL backend causes an explicit requirement of ISL 0.12.2,
  but not using 0.11.x is definitely a good idea.

* It is planned to additionally support ISL 0.14.0 (which fixes
  PR62289) - but which is API incompatile to ISL 0.12.2. Whence that
  patch is in, one has to re-write this item.

OK? Comments? Suggestions?

* * *

BTW: There is currently no version check in configure for ISL, maybe one
should add one for include/isl/stdint.h, which defines:
#define _GENERATED_STDINT_H "isl 0.12.2"
For the in-tree build, one could check isl/GIT_HEAD_ID or
isl/configure{,.ac}.

Tobias

[-- Attachment #2: gcc5.diff --]
[-- Type: text/x-diff, Size: 1989 bytes --]

Index: htdocs/gcc-5/changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v
retrieving revision 1.20
diff -p -u -r1.20 changes.html
--- htdocs/gcc-5/changes.html	27 Oct 2014 18:05:26 -0000	1.20
+++ htdocs/gcc-5/changes.html	12 Nov 2014 09:17:54 -0000
@@ -16,6 +16,10 @@
   <ul>
     <li>The default mode for C is now <code>-std=gnu11</code> instead of
         <code>-std=gnu89</code>.</li>
+    <li>To enable the Graphite framework for loop optimizations, you now need
+        ISL version 0.12.2; the CLooG library is no longer required.  The
+        installation manual contains more information about requirements to
+        build GCC.</li>
   </ul>
 
 <h2 id="general">General Optimizer Improvements</h2>
@@ -201,18 +205,23 @@
 	<code>-fcoarray=lib</code> except for locking and allocatable/pointer
 	components of derived-type coarrays.  GCC currently only ships with a
 	single-image library (<code>libcaf_single</code>), but
-	mult-image support based on MPI and GASNet is provided by the libraries
+	multi-image support based on MPI and GASNet is provided by the libraries
 	of the <a href="http://www.opencoarrays.org/">OpenCoarrays project</a>. 
 	</li>
     </ul></li>
     <li>TS18508 Additional Parallel Features in Fortran:
     <ul>
       <li>Support for the collective intrinsic subroutines <code>CO_MAX</code>,
-	<code>CO_MIN</code> and <code>CO_SUM</code> has been added,
-	including <code>-fcoarray=lib</code> support.</li>
+	<code>CO_MIN</code>, <code>CO_SUM</code>, <code>CO_BROADCAST</code> and
+	<code>CO_REDUCE</code>has been added, including
+	<code>-fcoarray=lib</code> support.</li>
       <li>Support for the new atomic intrinsics has been added, including
 	<code>-fcoarray=lib</code> support.</li>
     </ul></li>
+    <li>Fortran 2015:
+    <ul>
+      <li>Support for <code>IMPLICIT NONE (external, type)</code>.</li>
+    </ul></li>
   </ul>
 
 <!-- h3 id="go">Go</h3 -->

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [wwwdocs] gcc-5/changes.html: Graphite - CLooG removal; Fortran - update
  2014-11-12 10:54 [wwwdocs] gcc-5/changes.html: Graphite - CLooG removal; Fortran - update Tobias Burnus
@ 2014-12-30 18:36 ` Tobias Burnus
  2015-04-09 23:31 ` Gerald Pfeifer
  1 sibling, 0 replies; 3+ messages in thread
From: Tobias Burnus @ 2014-12-30 18:36 UTC (permalink / raw)
  To: Tobias Burnus, gcc-patches, fortran
  Cc: Gerald Pfeifer, Tobias Grosser, Roman Gareev

[-- Attachment #1: Type: text/plain, Size: 385 bytes --]

On 12 November 2014, Tobias Burnus wrote:
> Hi all, hi Gerald, hi Tobias and Roman,
>
> the patch updates gcc-5/changes.html; the Fortran bits are obvious.

I have now also committed a patch for Graphite – slightly modified; the 
Fortran patch has been committed before.

Attached is the Graphite part, which I have just committed: 
https://gcc.gnu.org/gcc-5/changes.html

Tobias

[-- Attachment #2: committed.diff --]
[-- Type: text/x-patch, Size: 746 bytes --]

Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v
retrieving revision 1.54
diff -p -u -r1.54 changes.html
--- changes.html	26 Dec 2014 15:55:05 -0000	1.54
+++ changes.html	30 Dec 2014 18:10:31 -0000
@@ -16,6 +16,10 @@
   <ul>
     <li>The default mode for C is now <code>-std=gnu11</code> instead of
         <code>-std=gnu89</code>.</li>
+    <li>The Graphite framework for loop optimizations no longer requires the
+	CLooG library, only ISL version 0.14 (recommended) or 0.12.2.  The
+        installation manual contains more information about requirements to
+        build GCC.</li>
   </ul>
 
 <h2 id="general">General Optimizer Improvements</h2>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [wwwdocs] gcc-5/changes.html: Graphite - CLooG removal; Fortran - update
  2014-11-12 10:54 [wwwdocs] gcc-5/changes.html: Graphite - CLooG removal; Fortran - update Tobias Burnus
  2014-12-30 18:36 ` Tobias Burnus
@ 2015-04-09 23:31 ` Gerald Pfeifer
  1 sibling, 0 replies; 3+ messages in thread
From: Gerald Pfeifer @ 2015-04-09 23:31 UTC (permalink / raw)
  To: Tobias Burnus
  Cc: gcc-patches, fortran, Gerald Pfeifer, Tobias Grosser, Roman Gareev

On Wed, 12 Nov 2014, Tobias Burnus wrote:
> OK? Comments? Suggestions?

Here is a minor update on top of your patch.  This adds a missing
space and removes a duplicate "including".

Committed.

Gerald

Index: changes.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/gcc-5/changes.html,v
retrieving revision 1.100
diff -u -r1.100 changes.html
--- changes.html	9 Apr 2015 23:28:19 -0000	1.100
+++ changes.html	9 Apr 2015 23:28:57 -0000
@@ -541,8 +541,8 @@
     <ul>
       <li>Support for the collective intrinsic subroutines <code>CO_MAX</code>,
 	<code>CO_MIN</code>, <code>CO_SUM</code>, <code>CO_BROADCAST</code> and
-	<code>CO_REDUCE</code>has been added, including
-	including <code>-fcoarray=lib</code> support.</li>
+	<code>CO_REDUCE</code> has been added, including
+	<code>-fcoarray=lib</code> support.</li>
       <li>Support for the new atomic intrinsics has been added, including
 	<code>-fcoarray=lib</code> support.</li>
     </ul></li>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-04-09 23:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-11-12 10:54 [wwwdocs] gcc-5/changes.html: Graphite - CLooG removal; Fortran - update Tobias Burnus
2014-12-30 18:36 ` Tobias Burnus
2015-04-09 23:31 ` Gerald Pfeifer

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).