public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] S/390: Reduce accuracy of bessel_6.f90.
@ 2016-01-11 14:41 Dominik Vogt
  2016-01-18  9:54 ` Dominik Vogt
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Dominik Vogt @ 2016-01-11 14:41 UTC (permalink / raw)
  To: gcc-patches; +Cc: Andreas Krebbel

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

Another patch reducing the accuracy required in the bessel_6 test.

Ciao

Dominik ^_^  ^_^

-- 

Dominik Vogt
IBM Germany

[-- Attachment #2: 0001-ChangeLog --]
[-- Type: text/plain, Size: 81 bytes --]

gcc/testsuite/ChangeLog

	* gfortran.dg/bessel_6.f90: Reduce accuracy for S/390.

[-- Attachment #3: 0001-S-390-Reduce-accuracy-of-bessel_6.f90.patch --]
[-- Type: text/x-diff, Size: 988 bytes --]

From 70a35dd6f6bf906d8e5907667ad0f04f981a61ac Mon Sep 17 00:00:00 2001
From: Dominik Vogt <vogt@linux.vnet.ibm.com>
Date: Mon, 11 Jan 2016 15:36:38 +0100
Subject: [PATCH] S/390: Reduce accuracy of bessel_6.f90.

---
 gcc/testsuite/gfortran.dg/bessel_6.f90 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/testsuite/gfortran.dg/bessel_6.f90 b/gcc/testsuite/gfortran.dg/bessel_6.f90
index e0220f7..da917ff 100644
--- a/gcc/testsuite/gfortran.dg/bessel_6.f90
+++ b/gcc/testsuite/gfortran.dg/bessel_6.f90
@@ -12,7 +12,7 @@
 implicit none
 real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] 
 real,parameter :: myeps(size(values)) = epsilon(0.0) &
-                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 92, 15 ]
+                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 98, 15 ]
 ! The following is sufficient for me - the values above are a bit
 ! more tolerant
 !                  * [0, 5, 3, 4, 6, 7, 7, 5, 5, 6, 66, 4 ]
-- 
2.3.0


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

* Re: [PATCH] S/390: Reduce accuracy of bessel_6.f90.
  2016-01-11 14:41 [PATCH] S/390: Reduce accuracy of bessel_6.f90 Dominik Vogt
@ 2016-01-18  9:54 ` Dominik Vogt
  2016-01-29  9:20 ` [PING, PATCH] " Dominik Vogt
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Dominik Vogt @ 2016-01-18  9:54 UTC (permalink / raw)
  To: gcc-patches; +Cc: Andreas Krebbel

On Mon, Jan 11, 2016 at 03:40:56PM +0100, Dominik Vogt wrote:
> Another patch reducing the accuracy required in the bessel_6 test.

Can this be committed?

> gcc/testsuite/ChangeLog
> 
> 	* gfortran.dg/bessel_6.f90: Reduce accuracy for S/390.

> >From 70a35dd6f6bf906d8e5907667ad0f04f981a61ac Mon Sep 17 00:00:00 2001
> From: Dominik Vogt <vogt@linux.vnet.ibm.com>
> Date: Mon, 11 Jan 2016 15:36:38 +0100
> Subject: [PATCH] S/390: Reduce accuracy of bessel_6.f90.
> 
> ---
>  gcc/testsuite/gfortran.dg/bessel_6.f90 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/gcc/testsuite/gfortran.dg/bessel_6.f90 b/gcc/testsuite/gfortran.dg/bessel_6.f90
> index e0220f7..da917ff 100644
> --- a/gcc/testsuite/gfortran.dg/bessel_6.f90
> +++ b/gcc/testsuite/gfortran.dg/bessel_6.f90
> @@ -12,7 +12,7 @@
>  implicit none
>  real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] 
>  real,parameter :: myeps(size(values)) = epsilon(0.0) &
> -                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 92, 15 ]
> +                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 98, 15 ]
>  ! The following is sufficient for me - the values above are a bit
>  ! more tolerant
>  !                  * [0, 5, 3, 4, 6, 7, 7, 5, 5, 6, 66, 4 ]

Ciao

Dominik ^_^  ^_^

-- 

Dominik Vogt
IBM Germany

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

* Re: [PING, PATCH] Reduce accuracy of bessel_6.f90.
  2016-01-11 14:41 [PATCH] S/390: Reduce accuracy of bessel_6.f90 Dominik Vogt
  2016-01-18  9:54 ` Dominik Vogt
@ 2016-01-29  9:20 ` Dominik Vogt
  2016-02-22 11:55 ` [PING 2, PATCH] S/390: " Dominik Vogt
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Dominik Vogt @ 2016-01-29  9:20 UTC (permalink / raw)
  To: gcc-patches; +Cc: Andreas Krebbel

On Mon, Jan 11, 2016 at 03:40:56PM +0100, Dominik Vogt wrote:
> Another patch reducing the accuracy required in the bessel_6 test.

Fixes the test case for S/390.  Can this be committed?

> gcc/testsuite/ChangeLog
> 
> 	* gfortran.dg/bessel_6.f90: Reduce accuracy for S/390.

> >From 70a35dd6f6bf906d8e5907667ad0f04f981a61ac Mon Sep 17 00:00:00 2001
> From: Dominik Vogt <vogt@linux.vnet.ibm.com>
> Date: Mon, 11 Jan 2016 15:36:38 +0100
> Subject: [PATCH] S/390: Reduce accuracy of bessel_6.f90.
> 
> ---
>  gcc/testsuite/gfortran.dg/bessel_6.f90 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/gcc/testsuite/gfortran.dg/bessel_6.f90 b/gcc/testsuite/gfortran.dg/bessel_6.f90
> index e0220f7..da917ff 100644
> --- a/gcc/testsuite/gfortran.dg/bessel_6.f90
> +++ b/gcc/testsuite/gfortran.dg/bessel_6.f90
> @@ -12,7 +12,7 @@
>  implicit none
>  real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] 
>  real,parameter :: myeps(size(values)) = epsilon(0.0) &
> -                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 92, 15 ]
> +                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 98, 15 ]
>  ! The following is sufficient for me - the values above are a bit
>  ! more tolerant
>  !                  * [0, 5, 3, 4, 6, 7, 7, 5, 5, 6, 66, 4 ]
> -- 
> 2.3.0

Ciao

Dominik ^_^  ^_^

-- 

Dominik Vogt
IBM Germany

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

* Re: [PING 2, PATCH] S/390: Reduce accuracy of bessel_6.f90.
  2016-01-11 14:41 [PATCH] S/390: Reduce accuracy of bessel_6.f90 Dominik Vogt
  2016-01-18  9:54 ` Dominik Vogt
  2016-01-29  9:20 ` [PING, PATCH] " Dominik Vogt
@ 2016-02-22 11:55 ` Dominik Vogt
  2016-03-02  6:36 ` [PING 3, " Dominik Vogt
  2016-03-02  7:48 ` [PATCH] " Andreas Krebbel
  4 siblings, 0 replies; 7+ messages in thread
From: Dominik Vogt @ 2016-02-22 11:55 UTC (permalink / raw)
  To: gcc-patches; +Cc: Andreas Krebbel

On Mon, Jan 11, 2016 at 03:40:56PM +0100, Dominik Vogt wrote:
> Another patch reducing the accuracy required in the bessel_6 test.

> gcc/testsuite/ChangeLog
> 
> 	* gfortran.dg/bessel_6.f90: Reduce accuracy for S/390.

> >From 70a35dd6f6bf906d8e5907667ad0f04f981a61ac Mon Sep 17 00:00:00 2001
> From: Dominik Vogt <vogt@linux.vnet.ibm.com>
> Date: Mon, 11 Jan 2016 15:36:38 +0100
> Subject: [PATCH] S/390: Reduce accuracy of bessel_6.f90.
> 
> ---
>  gcc/testsuite/gfortran.dg/bessel_6.f90 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/gcc/testsuite/gfortran.dg/bessel_6.f90 b/gcc/testsuite/gfortran.dg/bessel_6.f90
> index e0220f7..da917ff 100644
> --- a/gcc/testsuite/gfortran.dg/bessel_6.f90
> +++ b/gcc/testsuite/gfortran.dg/bessel_6.f90
> @@ -12,7 +12,7 @@
>  implicit none
>  real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] 
>  real,parameter :: myeps(size(values)) = epsilon(0.0) &
> -                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 92, 15 ]
> +                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 98, 15 ]
>  ! The following is sufficient for me - the values above are a bit
>  ! more tolerant
>  !                  * [0, 5, 3, 4, 6, 7, 7, 5, 5, 6, 66, 4 ]
> -- 
> 2.3.0
> 



Ciao

Dominik ^_^  ^_^

-- 

Dominik Vogt
IBM Germany

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

* Re: [PING 3, PATCH] S/390: Reduce accuracy of bessel_6.f90.
  2016-01-11 14:41 [PATCH] S/390: Reduce accuracy of bessel_6.f90 Dominik Vogt
                   ` (2 preceding siblings ...)
  2016-02-22 11:55 ` [PING 2, PATCH] S/390: " Dominik Vogt
@ 2016-03-02  6:36 ` Dominik Vogt
  2016-03-02  6:43   ` Jakub Jelinek
  2016-03-02  7:48 ` [PATCH] " Andreas Krebbel
  4 siblings, 1 reply; 7+ messages in thread
From: Dominik Vogt @ 2016-03-02  6:36 UTC (permalink / raw)
  To: gcc-patches; +Cc: Andreas Krebbel

On Mon, Jan 11, 2016 at 03:40:56PM +0100, Dominik Vogt wrote:
> Another patch reducing the accuracy required in the bessel_6 test.

> gcc/testsuite/ChangeLog
> 
> 	* gfortran.dg/bessel_6.f90: Reduce accuracy for S/390.

> >From 70a35dd6f6bf906d8e5907667ad0f04f981a61ac Mon Sep 17 00:00:00 2001
> From: Dominik Vogt <vogt@linux.vnet.ibm.com>
> Date: Mon, 11 Jan 2016 15:36:38 +0100
> Subject: [PATCH] S/390: Reduce accuracy of bessel_6.f90.
> 
> ---
>  gcc/testsuite/gfortran.dg/bessel_6.f90 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/gcc/testsuite/gfortran.dg/bessel_6.f90 b/gcc/testsuite/gfortran.dg/bessel_6.f90
> index e0220f7..da917ff 100644
> --- a/gcc/testsuite/gfortran.dg/bessel_6.f90
> +++ b/gcc/testsuite/gfortran.dg/bessel_6.f90
> @@ -12,7 +12,7 @@
>  implicit none
>  real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] 
>  real,parameter :: myeps(size(values)) = epsilon(0.0) &
> -                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 92, 15 ]
> +                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 98, 15 ]
>  ! The following is sufficient for me - the values above are a bit
>  ! more tolerant
>  !                  * [0, 5, 3, 4, 6, 7, 7, 5, 5, 6, 66, 4 ]
> -- 
> 2.3.0
> 



Ciao

Dominik ^_^  ^_^

-- 

Dominik Vogt
IBM Germany


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

* Re: [PING 3, PATCH] S/390: Reduce accuracy of bessel_6.f90.
  2016-03-02  6:36 ` [PING 3, " Dominik Vogt
@ 2016-03-02  6:43   ` Jakub Jelinek
  0 siblings, 0 replies; 7+ messages in thread
From: Jakub Jelinek @ 2016-03-02  6:43 UTC (permalink / raw)
  To: vogt, gcc-patches, Andreas Krebbel

On Wed, Mar 02, 2016 at 07:36:23AM +0100, Dominik Vogt wrote:
> > Another patch reducing the accuracy required in the bessel_6 test.
> 
> > gcc/testsuite/ChangeLog
> > 
> > 	* gfortran.dg/bessel_6.f90: Reduce accuracy for S/390.

Ok, thanks.
> 
> > >From 70a35dd6f6bf906d8e5907667ad0f04f981a61ac Mon Sep 17 00:00:00 2001
> > From: Dominik Vogt <vogt@linux.vnet.ibm.com>
> > Date: Mon, 11 Jan 2016 15:36:38 +0100
> > Subject: [PATCH] S/390: Reduce accuracy of bessel_6.f90.
> > 
> > ---
> >  gcc/testsuite/gfortran.dg/bessel_6.f90 | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/gcc/testsuite/gfortran.dg/bessel_6.f90 b/gcc/testsuite/gfortran.dg/bessel_6.f90
> > index e0220f7..da917ff 100644
> > --- a/gcc/testsuite/gfortran.dg/bessel_6.f90
> > +++ b/gcc/testsuite/gfortran.dg/bessel_6.f90
> > @@ -12,7 +12,7 @@
> >  implicit none
> >  real,parameter :: values(*) = [0.0, 0.5, 1.0, 0.9, 1.8,2.0,3.0,4.0,4.25,8.0,34.53, 475.78] 
> >  real,parameter :: myeps(size(values)) = epsilon(0.0) &
> > -                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 92, 15 ]
> > +                  * [2, 7, 5, 6, 9, 12, 12, 7, 7, 8, 98, 15 ]
> >  ! The following is sufficient for me - the values above are a bit
> >  ! more tolerant
> >  !                  * [0, 5, 3, 4, 6, 7, 7, 5, 5, 6, 66, 4 ]
> > -- 
> > 2.3.0
> > 

	Jakub

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

* Re: [PATCH] S/390: Reduce accuracy of bessel_6.f90.
  2016-01-11 14:41 [PATCH] S/390: Reduce accuracy of bessel_6.f90 Dominik Vogt
                   ` (3 preceding siblings ...)
  2016-03-02  6:36 ` [PING 3, " Dominik Vogt
@ 2016-03-02  7:48 ` Andreas Krebbel
  4 siblings, 0 replies; 7+ messages in thread
From: Andreas Krebbel @ 2016-03-02  7:48 UTC (permalink / raw)
  To: vogt, gcc-patches

On 01/11/2016 03:40 PM, Dominik Vogt wrote:
> gcc/testsuite/ChangeLog
> 
> 	* gfortran.dg/bessel_6.f90: Reduce accuracy for S/390.

Applied. Thanks!

-Andreas-

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

end of thread, other threads:[~2016-03-02  7:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-11 14:41 [PATCH] S/390: Reduce accuracy of bessel_6.f90 Dominik Vogt
2016-01-18  9:54 ` Dominik Vogt
2016-01-29  9:20 ` [PING, PATCH] " Dominik Vogt
2016-02-22 11:55 ` [PING 2, PATCH] S/390: " Dominik Vogt
2016-03-02  6:36 ` [PING 3, " Dominik Vogt
2016-03-02  6:43   ` Jakub Jelinek
2016-03-02  7:48 ` [PATCH] " Andreas Krebbel

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