public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/101944] New: suboptimal SLP for reduced case from namd_r
@ 2021-08-17  9:26 linkw at gcc dot gnu.org
  2021-08-17  9:29 ` [Bug tree-optimization/101944] " linkw at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: linkw at gcc dot gnu.org @ 2021-08-17  9:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101944

            Bug ID: 101944
           Summary: suboptimal SLP for reduced case from namd_r
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: linkw at gcc dot gnu.org
  Target Milestone: ---

For SPEC2017 bmk 508.namd_r, it's observed that it degraded by -3.73% 
at -O2 -ftree-slp-vectorize vs baseline -O2 on Power9 with either default cost
model or very cheap cost model. By isolating functions, several functions are
responsible for it.  One typical case is the below reduced one:

------------- TEST CASE 

typedef double BigReal;

extern BigReal table_four_i[8];
extern void func1(BigReal *);
extern void func2(BigReal *);
extern void func3(BigReal, BigReal, BigReal, BigReal);

void foo(BigReal scaling, BigReal *A1, BigReal *B1, BigReal diffa) {

  BigReal vdwEnergy = 0;
  func1(&vdwEnergy);

  const BigReal A = scaling * *A1;
  const BigReal B = scaling * *B1;

  BigReal vdw_d = A * table_four_i[0] - B * table_four_i[2];
  BigReal vdw_c = A * table_four_i[1] - B * table_four_i[3];
  BigReal vdw_b = A * table_four_i[4] - B * table_four_i[6];
  BigReal vdw_a = A * table_four_i[5] - B * table_four_i[7];

  register BigReal vdw_val =
      ((diffa * vdw_d * (1 / 6.) + vdw_c * (1 / 4.)) * diffa +
       vdw_b * (1 / 2.)) * diffa + vdw_a;
  vdwEnergy -= vdw_val;

  func2 (&vdwEnergy);
  func3 (vdw_a, vdw_b, vdw_c, vdw_d);
}

-------------

Options: -O2 -ffast-math -ftree-slp-vectorize -mcpu=power9

Scalar version at optimized dumping:

  func1 (&vdwEnergy);
  _1 = *A1_32(D);
  A_34 = _1 * scaling_33(D);
  _2 = *B1_35(D);
  B_36 = _2 * scaling_33(D);
  _3 = table_four_i[0];
  _5 = table_four_i[2];
  _6 = _5 * B_36;
  vdw_d_37 = .FMS (_3, A_34, _6);
  _7 = table_four_i[1];
  _9 = table_four_i[3];
  _10 = _9 * B_36;
  vdw_c_38 = .FMS (_7, A_34, _10);
  _11 = table_four_i[4];
  _13 = table_four_i[6];
  _14 = _13 * B_36;
  vdw_b_39 = .FMS (_11, A_34, _14);
  _15 = table_four_i[5];
  _17 = table_four_i[7];
  _18 = _17 * B_36;
  vdw_a_40 = .FMS (_15, A_34, _18);
  _51 = diffa_41(D) *
1.666666666666666574148081281236954964697360992431640625e-1;
  _21 = vdw_c_38 * 2.5e-1;
  _22 = .FMA (vdw_d_37, _51, _21);
  _24 = vdw_b_39 * 5.0e-1;
  _25 = .FMA (_22, diffa_41(D), _24);
  _26 = _25 * diffa_41(D);
  vdwEnergy.0_27 = vdwEnergy;
  _49 = _18 + vdwEnergy.0_27;
  _52 = .FMA (_15, A_34, _26);
  _28 = _49 - _52;
  vdwEnergy = _28;
  func2 (&vdwEnergy);


Vector version at optimized dumping:

  func1 (&vdwEnergy);
  _1 = *A1_32(D);
  A_34 = _1 * scaling_33(D);
  _49 = {A_34, A_34};
  _2 = *B1_35(D);
  B_36 = _2 * scaling_33(D);
  _54 = {B_36, B_36};
  vect__3.6_48 = MEM <vector(2) double> [(double *)&table_four_i];
  vect__5.10_52 = MEM <vector(2) double> [(double *)&table_four_i + 16B];
  vect__6.11_55 = vect__5.10_52 * _54;
  vect_vdw_d_37.12_56 = .FMS (vect__3.6_48, _49, vect__6.11_55);
  _58 = BIT_FIELD_REF <vect_vdw_d_37.12_56, 64, 64>;
  _57 = BIT_FIELD_REF <vect_vdw_d_37.12_56, 64, 0>;
  _11 = table_four_i[4];
  _13 = table_four_i[6];
  _14 = _13 * B_36;
  vdw_b_39 = .FMS (_11, A_34, _14);
  _15 = table_four_i[5];
  _17 = table_four_i[7];
  _18 = _17 * B_36;
  vdw_a_40 = .FMS (_15, A_34, _18);
  _51 = diffa_41(D) *
1.666666666666666574148081281236954964697360992431640625e-1;
  _59 = {_51, 2.5e-1};
  vect__20.13_60 = vect_vdw_d_37.12_56 * _59;
  _61 = .REDUC_PLUS (vect__20.13_60);
  _24 = vdw_b_39 * 5.0e-1;
  _25 = .FMA (diffa_41(D), _61, _24);
  _26 = _25 * diffa_41(D);
  vdwEnergy.0_27 = vdwEnergy;
  _66 = _18 + vdwEnergy.0_27;
  _68 = .FMA (_15, A_34, _26);
  _28 = _66 - _68;
  vdwEnergy = _28;
  func2 (&vdwEnergy);

reduc.c:24:34: note: Cost model analysis for part in loop 0:
  Vector cost: 16
  Scalar cost: 17

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

* [Bug tree-optimization/101944] suboptimal SLP for reduced case from namd_r
  2021-08-17  9:26 [Bug tree-optimization/101944] New: suboptimal SLP for reduced case from namd_r linkw at gcc dot gnu.org
@ 2021-08-17  9:29 ` linkw at gcc dot gnu.org
  2021-08-17  9:47 ` linkw at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: linkw at gcc dot gnu.org @ 2021-08-17  9:29 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101944

--- Comment #1 from Kewen Lin <linkw at gcc dot gnu.org> ---
The original costing shows the vectorized version wins, by checking
the costings, it missed to model the cost of lane extraction, the
patch was posted in:
https://gcc.gnu.org/pipermail/gcc-patches/2021-August/577422.html

With the proposed adjustment above, the costings become to:

reduc.c:24:34: note: Cost model analysis for part in loop 0:
  Vector cost: 17
  Scalar cost: 17

Now we consider vectorization is still profitable when both cost are
equal, so the SLP still performs.

One thing can make it different is that: when we do costing, math
optimization doesn't happen, there are no FMA-style operations, but
finally some multiply and subtraction is optimized to FMS. If
costing for scalar faces two multiply-and-sub (counted as 2) instead
of two multiplies and subtractions (counted as 4), vs. vector costing
1 instead of 2. It ends up with scalar 15 vs. vector 16.

But it seems not practical since we can't predict the later processing
well, I tried to hack pass_optimize_widening_mul to run before slp,
I saw it failed earlier.

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

* [Bug tree-optimization/101944] suboptimal SLP for reduced case from namd_r
  2021-08-17  9:26 [Bug tree-optimization/101944] New: suboptimal SLP for reduced case from namd_r linkw at gcc dot gnu.org
  2021-08-17  9:29 ` [Bug tree-optimization/101944] " linkw at gcc dot gnu.org
@ 2021-08-17  9:47 ` linkw at gcc dot gnu.org
  2021-08-17 10:10 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: linkw at gcc dot gnu.org @ 2021-08-17  9:47 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101944

--- Comment #2 from Kewen Lin <linkw at gcc dot gnu.org> ---
Back to the optimized IR, I thought the problem is that the vectorized
version has longer critical path for the reduc_plus result (latency in total).
For vectorized version,

  _51 = diffa_41(D) *
1.666666666666666574148081281236954964697360992431640625e-1;
  _59 = {_51, 2.5e-1};
  vect__20.13_60 = vect_vdw_d_37.12_56 * _59;
  _61 = .REDUC_PLUS (vect__20.13_60);

The critical path is: scalar mult -> vect CTOR -> vector mult -> reduc_plus

While for the scalar version:

  _51 = diffa_41(D) *
1.666666666666666574148081281236954964697360992431640625e-1;
  _21 = vdw_c_38 * 2.5e-1;
  _22 = .FMA (vdw_d_37, _51, _21);

Two scalar mult can run in parallel and it further ends up with one FMA.

On Power9, we don't have one unique REDUC_PLUS insn for double, it takes three
insns: vector shift + vector addition + vector extraction.  I'm not sure if
this is a problem on the platforms which support efficient REDUC_PLUS, but it
seems a bad idea to SLP that case where the root is reduc op, its feeders are
not isomorphic and whose types are V2* and can be math optimized.

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

* [Bug tree-optimization/101944] suboptimal SLP for reduced case from namd_r
  2021-08-17  9:26 [Bug tree-optimization/101944] New: suboptimal SLP for reduced case from namd_r linkw at gcc dot gnu.org
  2021-08-17  9:29 ` [Bug tree-optimization/101944] " linkw at gcc dot gnu.org
  2021-08-17  9:47 ` linkw at gcc dot gnu.org
@ 2021-08-17 10:10 ` rguenth at gcc dot gnu.org
  2021-08-17 10:12 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-08-17 10:10 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101944

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
On x86 we even have

  Vector cost: 136
  Scalar cost: 196

note that we seem to vectorize the reduction but that only happens with
-ffast-math, not -O2 -ftree-slp-vectorize?

One issue is the association of

(diffa * vdw_d * (1 / 6.) + vdw_c * (1 / 4.)) * diffa + vdw_b * (1 / 2.)) *
diffa + vdw_a

which we fail to reduce as

 diffa*diffa*diffa*(1/6.)*vdw_d + diffa*diffa*(1/4.)*vdw_c + diffa*(1/2.)*vdw_b
+ 1.0*vdw_a

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

* [Bug tree-optimization/101944] suboptimal SLP for reduced case from namd_r
  2021-08-17  9:26 [Bug tree-optimization/101944] New: suboptimal SLP for reduced case from namd_r linkw at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-08-17 10:10 ` rguenth at gcc dot gnu.org
@ 2021-08-17 10:12 ` rguenth at gcc dot gnu.org
  2021-08-17 11:24 ` linkw at gcc dot gnu.org
  2022-03-08  8:00 ` pinskia at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-08-17 10:12 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101944

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
note vectorizer costing does not look at dependencies at all, it just sums up
individual instruction latencies (and assumes unlimited throughput as well).

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

* [Bug tree-optimization/101944] suboptimal SLP for reduced case from namd_r
  2021-08-17  9:26 [Bug tree-optimization/101944] New: suboptimal SLP for reduced case from namd_r linkw at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2021-08-17 10:12 ` rguenth at gcc dot gnu.org
@ 2021-08-17 11:24 ` linkw at gcc dot gnu.org
  2022-03-08  8:00 ` pinskia at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: linkw at gcc dot gnu.org @ 2021-08-17 11:24 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101944

--- Comment #5 from Kewen Lin <linkw at gcc dot gnu.org> ---
(In reply to Richard Biener from comment #3)
> On x86 we even have
> 
>   Vector cost: 136
>   Scalar cost: 196
> 
> note that we seem to vectorize the reduction but that only happens with
> -ffast-math, not -O2 -ftree-slp-vectorize?
> 

I don't quite follow this question, may misunderstand it. Yes, -ffast-math is
required, now -O2 doesn't implicitly enable vectorization, it needs the
explicit slp option.

> One issue is the association of
> 
> (diffa * vdw_d * (1 / 6.) + vdw_c * (1 / 4.)) * diffa + vdw_b * (1 / 2.)) *
> diffa + vdw_a
> 
> which we fail to reduce as
> 
>  diffa*diffa*diffa*(1/6.)*vdw_d + diffa*diffa*(1/4.)*vdw_c +
> diffa*(1/2.)*vdw_b + 1.0*vdw_a

Good point!

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

* [Bug tree-optimization/101944] suboptimal SLP for reduced case from namd_r
  2021-08-17  9:26 [Bug tree-optimization/101944] New: suboptimal SLP for reduced case from namd_r linkw at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2021-08-17 11:24 ` linkw at gcc dot gnu.org
@ 2022-03-08  8:00 ` pinskia at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-03-08  8:00 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101944

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement

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

end of thread, other threads:[~2022-03-08  8:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-17  9:26 [Bug tree-optimization/101944] New: suboptimal SLP for reduced case from namd_r linkw at gcc dot gnu.org
2021-08-17  9:29 ` [Bug tree-optimization/101944] " linkw at gcc dot gnu.org
2021-08-17  9:47 ` linkw at gcc dot gnu.org
2021-08-17 10:10 ` rguenth at gcc dot gnu.org
2021-08-17 10:12 ` rguenth at gcc dot gnu.org
2021-08-17 11:24 ` linkw at gcc dot gnu.org
2022-03-08  8:00 ` pinskia at gcc dot gnu.org

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