[RFC] Allow loop vectorizer to choose vector widths that generate illegal types

Hi Michael,

Thank you for working on this. The loop vectorizer tries a bunch of different vectorization factors and stops at the widest word size mostly because of compile time concerns. On every vectorization factors that we check we have to scan all of the instructions in the loop and make multiple calls into TTI. If you decide to increase the VF enumeration space then you will linearly increase the compile time of the loop vectorizer. I think that it would be a good idea to explore this compile-time vs performance tradeoff with numbers.

The cost model is designed to be a fast approximation of SelectionDAG. We don’t want to duplicate every optimization in SelectionDAG into the cost model because this would make the code model (and the optimizer) difficult to maintain. If the cost model does not represent an operation that you care about then you should add it to the cost tables.

I don’t understand how selecting wide vectors would eliminate the need to have loop widening. Loop widening happens to break data dependencies and allow more parallelism. If you have two independent arithmetic operations then they can go into different execution units, or to pipelined execution units. Your mixed-typed loops would cause a shuffle across registers (which we can’t model well in the cost model, for obvious reasons) that will pack multiple lanes into a smaller vector and this would introduce a data dependency.

Maybe you should start by increasing the enumeration space (by 2X, for example) under a flag and see if you get any performance gains.

-Nadav

Hi Nadav,
Thanks a lot for the feedback!

Of course we need to explore this with numbers. Not just in terms of the performance vs. compile-time, but in general in terms of the performance benefit. For now, I’m just trying to get a feel for whether people think this sounds like a reasonable idea. As I wrote in the original email, we already have this under a flag (it was added by Cong last year). But it will be hard to get reliable performance numbers without first having the cost model provide better-quality answers at the higher vectorization factors.

I didn’t mean that we should be duplicating every optimization the SelectionDAG makes. Of course the cost model is only a rough approximation. What I do want the (generic) cost model to do, however, is provide a more-or-less precise approximation of legalization costs. To be concrete, http://reviews.llvm.org/D21251 is a first step in that direction. Do you think this is something the cost model should not be doing?

Regarding loop widening - see my email to Dibyendu for what I meant. For mixed-type loops, it really depends. Let’s say you have a mixed-type loop, with i32 and i64, and 256-bit registers. Would the extra parallelism you get from vectorizing by 4 and interleaving be worth the throughput loss you suffer from not vectorizing the i32 operations by 8? It seems like this would depend heavily on the specific loop, and the proportion of i32 and i64 instructions. This is exactly the question I’d like to get the cost model to answer. Do you think this is not feasible? It shouldn’t (I hope :slight_smile: ) require modeling every possible shuffle.

Thanks,
Michael

Some thoughts:

o To determine the VF for a loop with mixed data sizes, choosing the smallest ensures each vector register used is full, choosing the largest will minimize the number of vector registers used. Which one’s better, or some size in between, depends on the target’s costs for the vector operations, availability of registers and possibly control/memory divergence and trip count. “This is a question of cost modeling” and its associated compile-time, but in general good vectorization of loops with mixed data sizes is expected to be important, especially when larger scopes are vectorized. BTW, SLP followed this a year ago: http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20150706/286110.html

o As for increasing VF beyond maximize-bandwidth, one could argue that a vectorizer should focus on tapping the SIMD capabilities of the target, up to maximize-bandwidth, and that its vectorized loop should later be subject to a separate independent unroller/interleaver pass. One suggestion, regardless, is to use the term “unroll-and-jam”, which traditionally applies to loops containing control-flow and nested loops but is quite clear for innermost loops too, instead of the overloaded term “interleaving”. Admittedly loop vectorization conceptually applies unroll-and-jam followed by packetization into vectors, so why unroll-and-jam twice. As noted, the considerations for best unroll factor are different from those of best VF for optimal usage of SIMD capabilities. Indeed representing in LLVM-IR a loop with vectors longer than maximize-bandwidth looks more appealing than replicating its ‘legal’ vectors, easier produced by the vectorizer than by an unroll-and-jam pass. BTW, taken to the extreme, one could vectorize to the full trip count of the loop, as in http://impact.crhc.illinois.edu/shared/Papers/tr2014.mxpa.pdf, where memory spatial locality is deemed more important to optimize than register usage.

Ayal.

Thanks, Ayal!

From: "Michael Kuperstein" <mkuper@google.com>
To: "Ayal Zaks" <ayal.zaks@intel.com>
Cc: "Nadav Rotem" <nadav.rotem@me.com>, "Hal Finkel"
<hfinkel@anl.gov>, "Elena Demikhovsky"
<elena.demikhovsky@intel.com>, "Adam Nemet" <anemet@apple.com>,
"Sanjoy Das" <sanjoy@playingwithpointers.com>, "James Molloy"
<james.molloy@arm.com>, "Matthew Simpson" <mssimpso@codeaurora.org>,
"Sanjay Patel" <spatel@rotateright.com>, "Chandler Carruth"
<chandlerc@google.com>, "David Li" <davidxl@google.com>, "Wei Mi"
<wmi@google.com>, "Dehao Chen" <dehao@google.com>, "Cong Hou"
<congh@google.com>, "Llvm Dev" <llvm-dev@lists.llvm.org>
Sent: Thursday, June 16, 2016 11:09:09 AM
Subject: Re: [RFC] Allow loop vectorizer to choose vector widths that
generate illegal types

Thanks, Ayal!

> Some thoughts:

> o To determine the VF for a loop with mixed data sizes, choosing
> the
> smallest ensures each vector register used is full, choosing the
> largest will minimize the number of vector registers used. Which
> one’s better, or some size in between, depends on the target’s
> costs
> for the vector operations, availability of registers and possibly
> control/memory divergence and trip count. “This is a question of
> cost modeling” and its associated compile-time, but in general good
> vectorization of loops with mixed data sizes is expected to be
> important, especially when larger scopes are vectorized. BTW, SLP
> followed this a year ago:
> [llvm] r241760 - [SLPVectorizer] Try different vectorization factors for store chains

Yes, I agree completely.
The approach we have right now is that availability of registers is a
hard upper bound, and I'm not planning on changing that (e.g. by
modeling spill cost.) at the moment.

We chatted about this on IRC, but I'll add here that I'm in favor of this. I think that it will put (useful) pressure on improving the cost model, and our register-pressure heuristics, and the quality of our legalization code. In the end, I think that the representation makes sense.

I'm not too worried about the compile time impact. I haven't measured
it yet, but one thing that may mitigate this is the fact that
postponing interleaving until the legalizer will result in smaller
IR coming out of the vectorizer. So the increased compile-time cost
of the TTI queries may be offset by the decreased amount of work for
post-vectorizer IR passes and pre-legalization ISel. Anyway, this is
all idle talk right now, as you and Nadav said, it needs to be
measured.

> o As for increasing VF beyond maximize-bandwidth, one could argue
> that a vectorizer should focus on tapping the SIMD capabilities of
> the target, up to maximize-bandwidth, and that its vectorized loop
> should later be subject to a separate independent
> unroller/interleaver pass. One suggestion, regardless, is to use
> the
> term “unroll-and-jam”, which traditionally applies to loops
> containing control-flow and nested loops but is quite clear for
> innermost loops too, instead of the overloaded term “interleaving”.
> Admittedly loop vectorization conceptually applies unroll-and-jam
> followed by packetization into vectors, so why unroll-and-jam
> twice.
> As noted, the considerations for best unroll factor are different
> from those of best VF for optimal usage of SIMD capabilities.
> Indeed
> representing in LLVM-IR a loop with vectors longer than
> maximize-bandwidth looks more appealing than replicating its
> ‘legal’
> vectors, easier produced by the vectorizer than by an
> unroll-and-jam
> pass. BTW, taken to the extreme, one could vectorize to the full
> trip count of the loop, as in
> http://impact.crhc.illinois.edu/shared/Papers/tr2014.mxpa.pdf ,
> where memory spatial locality is deemed more important to optimize
> than register usage.

"Why unroll-and-jam twice" is precisely the motivation behind
increasing VF beyond maximize-bandwidth. :slight_smile:
Both getting good code from the legalizer and getting good cost
modeling for illegal types are required to increase VF up to
choosing the smallest scalar type. And if that works out, then going
beyond maximize-bandwidth seems like it should require fairly little
additional work. I think once we go beyond maximize-bandwidth, and
assume the legalizer will split things back up, the consideration
for the best unroll factor and the best VF becomes essentially the
same, since increasing the VF, in effect, increases the unroll
factor.

It's possible that we'll need two different cost estimates, one up to
max-bandwidth, and one beyond max-bandwidth - and in this case, I'm
not sure the exercise is worthwhile.
In any case, I mostly see this is as a bonus, what's really important
to me is getting maximize-bandwidth to work well.

As to the terminology - I agree "unroll-and-jam" is the correct
technical term, but it's not currently used in the vectorizer, and I
wanted to keep the terminology here consistent with the code.

Yea, we came up with interleaving to differentiate it from the concatenation unrolling that the unrolling pass performs. If we'd like to rename this to be akin to a jamming factor, for consistency with the literature, I don't object. As I recall, interleaving was the least bad option we discussed at the time :wink:

-Hal