public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/rguenth/heads/vect-force-slp)] Reduce single-lane SLP testresult noise
@ 2023-10-19 13:29 Richard Biener
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Biener @ 2023-10-19 13:29 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:d10fc552a91c2436797838102bfbcf615aadefd4

commit d10fc552a91c2436797838102bfbcf615aadefd4
Author: Richard Biener <rguenther@suse.de>
Date:   Thu Oct 5 13:31:16 2023 +0200

    Reduce single-lane SLP testresult noise
    
    The following avoids dumping 'vectorizing stmts using SLP' for
    single-lane instances since that causes extra testsuite fallout.
    
            * tree-vect-slp.cc (vect_schedule_slp): Gate dumping
            'vectorizing stmts using SLP' on > 1 lanes.

Diff:
---
 gcc/tree-vect-slp.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc
index b2eb2a1ff214..4f06cb45ea28 100644
--- a/gcc/tree-vect-slp.cc
+++ b/gcc/tree-vect-slp.cc
@@ -9758,7 +9758,8 @@ vect_schedule_slp (vec_info *vinfo, const vec<slp_instance> &slp_instances)
       if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
 	vectorize_slp_instance_root_stmt (node, instance);
 
-      if (dump_enabled_p ())
+      /* ???  Reduce some testsuite noise because of "more SLP".  */
+      if (SLP_TREE_LANES (node) > 1 && dump_enabled_p ())
 	dump_printf_loc (MSG_NOTE, vect_location,
                          "vectorizing stmts using SLP.\n");
     }

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

* [gcc(refs/users/rguenth/heads/vect-force-slp)] Reduce single-lane SLP testresult noise
@ 2024-02-23  7:31 Richard Biener
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Biener @ 2024-02-23  7:31 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:a373df9da828ad09aff6f7bab46e5330c9b299ff

commit a373df9da828ad09aff6f7bab46e5330c9b299ff
Author: Richard Biener <rguenther@suse.de>
Date:   Thu Oct 5 13:31:16 2023 +0200

    Reduce single-lane SLP testresult noise
    
    The following avoids dumping 'vectorizing stmts using SLP' for
    single-lane instances since that causes extra testsuite fallout.
    
            * tree-vect-slp.cc (vect_schedule_slp): Gate dumping
            'vectorizing stmts using SLP' on > 1 lanes.

Diff:
---
 gcc/tree-vect-slp.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc
index a9236179e261..83ee8a7efc32 100644
--- a/gcc/tree-vect-slp.cc
+++ b/gcc/tree-vect-slp.cc
@@ -9985,7 +9985,8 @@ vect_schedule_slp (vec_info *vinfo, const vec<slp_instance> &slp_instances)
       if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
 	vectorize_slp_instance_root_stmt (node, instance);
 
-      if (dump_enabled_p ())
+      /* ???  Reduce some testsuite noise because of "more SLP".  */
+      if (SLP_TREE_LANES (node) > 1 && dump_enabled_p ())
 	dump_printf_loc (MSG_NOTE, vect_location,
                          "vectorizing stmts using SLP.\n");
     }

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

* [gcc(refs/users/rguenth/heads/vect-force-slp)] Reduce single-lane SLP testresult noise
@ 2023-11-09 13:03 Richard Biener
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Biener @ 2023-11-09 13:03 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:9aba2dcdcd78eb80ffdcf60a5f8c8a821d923042

commit 9aba2dcdcd78eb80ffdcf60a5f8c8a821d923042
Author: Richard Biener <rguenther@suse.de>
Date:   Thu Oct 5 13:31:16 2023 +0200

    Reduce single-lane SLP testresult noise
    
    The following avoids dumping 'vectorizing stmts using SLP' for
    single-lane instances since that causes extra testsuite fallout.
    
            * tree-vect-slp.cc (vect_schedule_slp): Gate dumping
            'vectorizing stmts using SLP' on > 1 lanes.

Diff:
---
 gcc/tree-vect-slp.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc
index 47e216258d6..69df69ac755 100644
--- a/gcc/tree-vect-slp.cc
+++ b/gcc/tree-vect-slp.cc
@@ -9795,7 +9795,8 @@ vect_schedule_slp (vec_info *vinfo, const vec<slp_instance> &slp_instances)
       if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
 	vectorize_slp_instance_root_stmt (node, instance);
 
-      if (dump_enabled_p ())
+      /* ???  Reduce some testsuite noise because of "more SLP".  */
+      if (SLP_TREE_LANES (node) > 1 && dump_enabled_p ())
 	dump_printf_loc (MSG_NOTE, vect_location,
                          "vectorizing stmts using SLP.\n");
     }

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

* [gcc(refs/users/rguenth/heads/vect-force-slp)] Reduce single-lane SLP testresult noise
@ 2023-11-02 13:59 Richard Biener
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Biener @ 2023-11-02 13:59 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:3ff18ec0b0ea0c0367f898eb28c7b82372ae50ad

commit 3ff18ec0b0ea0c0367f898eb28c7b82372ae50ad
Author: Richard Biener <rguenther@suse.de>
Date:   Thu Oct 5 13:31:16 2023 +0200

    Reduce single-lane SLP testresult noise
    
    The following avoids dumping 'vectorizing stmts using SLP' for
    single-lane instances since that causes extra testsuite fallout.
    
            * tree-vect-slp.cc (vect_schedule_slp): Gate dumping
            'vectorizing stmts using SLP' on > 1 lanes.

Diff:
---
 gcc/tree-vect-slp.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc
index fd556fe17b83..9d7b74cb9f25 100644
--- a/gcc/tree-vect-slp.cc
+++ b/gcc/tree-vect-slp.cc
@@ -9795,7 +9795,8 @@ vect_schedule_slp (vec_info *vinfo, const vec<slp_instance> &slp_instances)
       if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
 	vectorize_slp_instance_root_stmt (node, instance);
 
-      if (dump_enabled_p ())
+      /* ???  Reduce some testsuite noise because of "more SLP".  */
+      if (SLP_TREE_LANES (node) > 1 && dump_enabled_p ())
 	dump_printf_loc (MSG_NOTE, vect_location,
                          "vectorizing stmts using SLP.\n");
     }

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

* [gcc(refs/users/rguenth/heads/vect-force-slp)] Reduce single-lane SLP testresult noise
@ 2023-10-16 12:50 Richard Biener
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Biener @ 2023-10-16 12:50 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:00c421ff2e0cd8bf4f6b405e963fca4f311cdd35

commit 00c421ff2e0cd8bf4f6b405e963fca4f311cdd35
Author: Richard Biener <rguenther@suse.de>
Date:   Thu Oct 5 13:31:16 2023 +0200

    Reduce single-lane SLP testresult noise
    
    The following avoids dumping 'vectorizing stmts using SLP' for
    single-lane instances since that causes extra testsuite fallout.
    
            * tree-vect-slp.cc (vect_schedule_slp): Gate dumping
            'vectorizing stmts using SLP' on > 1 lanes.

Diff:
---
 gcc/tree-vect-slp.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc
index 42a66992a633..672c84ffbf05 100644
--- a/gcc/tree-vect-slp.cc
+++ b/gcc/tree-vect-slp.cc
@@ -9719,7 +9719,8 @@ vect_schedule_slp (vec_info *vinfo, const vec<slp_instance> &slp_instances)
       if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
 	vectorize_slp_instance_root_stmt (node, instance);
 
-      if (dump_enabled_p ())
+      /* ???  Reduce some testsuite noise because of "more SLP".  */
+      if (SLP_TREE_LANES (node) > 1 && dump_enabled_p ())
 	dump_printf_loc (MSG_NOTE, vect_location,
                          "vectorizing stmts using SLP.\n");
     }

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

* [gcc(refs/users/rguenth/heads/vect-force-slp)] Reduce single-lane SLP testresult noise
@ 2023-10-06  7:07 Richard Biener
  0 siblings, 0 replies; 6+ messages in thread
From: Richard Biener @ 2023-10-06  7:07 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:ed3595acef0d5362e257bb2137e3e4feec0d67e3

commit ed3595acef0d5362e257bb2137e3e4feec0d67e3
Author: Richard Biener <rguenther@suse.de>
Date:   Thu Oct 5 13:31:16 2023 +0200

    Reduce single-lane SLP testresult noise
    
    The following avoids dumping 'vectorizing stmts using SLP' for
    single-lane instances since that causes extra testsuite fallout.
    
            * tree-vect-slp.cc (vect_schedule_slp): Gate dumping
            'vectorizing stmts using SLP' on > 1 lanes.

Diff:
---
 gcc/tree-vect-slp.cc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gcc/tree-vect-slp.cc b/gcc/tree-vect-slp.cc
index 08e8418b33e..a3a32aa701e 100644
--- a/gcc/tree-vect-slp.cc
+++ b/gcc/tree-vect-slp.cc
@@ -9701,7 +9701,8 @@ vect_schedule_slp (vec_info *vinfo, const vec<slp_instance> &slp_instances)
       if (!SLP_INSTANCE_ROOT_STMTS (instance).is_empty ())
 	vectorize_slp_instance_root_stmt (node, instance);
 
-      if (dump_enabled_p ())
+      /* ???  Reduce some testsuite noise because of "more SLP".  */
+      if (SLP_TREE_LANES (node) > 1 && dump_enabled_p ())
 	dump_printf_loc (MSG_NOTE, vect_location,
                          "vectorizing stmts using SLP.\n");
     }

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

end of thread, other threads:[~2024-02-23  7:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-19 13:29 [gcc(refs/users/rguenth/heads/vect-force-slp)] Reduce single-lane SLP testresult noise Richard Biener
  -- strict thread matches above, loose matches on Subject: below --
2024-02-23  7:31 Richard Biener
2023-11-09 13:03 Richard Biener
2023-11-02 13:59 Richard Biener
2023-10-16 12:50 Richard Biener
2023-10-06  7:07 Richard Biener

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