Skip to content

Commit d32e68a

Browse files
committed
[docs] Graduate VectorizationPlan.rst from proposal.
VPlan has become an integral part of the inner loop vectorizer pipeline that has been actively developed over the previous years. Let's move VectorizationPlan.rst from the proposal stage to bring the docs in line and to avoid confusion when reading the docs. Reviewed By: rengolin Differential Revision: https://reviews.llvm.org/D157593
1 parent b1ada7a commit d32e68a

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

llvm/docs/GettingInvolved.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,6 @@ can be better.
407407
BugpointRedesign
408408
Proposals/TestSuite
409409
Proposals/VariableNames
410-
Proposals/VectorizationPlan
411410
Proposals/VectorPredication
412411

413412
:doc:`Proposals/GitHubMove`
@@ -422,9 +421,6 @@ can be better.
422421
:doc:`Proposals/VariableNames`
423422
Proposal to change the variable names coding standard.
424423

425-
:doc:`Proposals/VectorizationPlan`
426-
Proposal to model the process and upgrade the infrastructure of LLVM's Loop Vectorizer.
427-
428424
:doc:`Proposals/VectorPredication`
429425
Proposal for predicated vector instructions in LLVM.
430426

llvm/docs/Vectorizers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,9 +412,9 @@ Ongoing Development Directions
412412
.. toctree::
413413
:hidden:
414414

415-
Proposals/VectorizationPlan
415+
VectorizationPlan
416416

417-
:doc:`Proposals/VectorizationPlan`
417+
:doc:`VectorizationPlan`
418418
Modeling the process and upgrading the infrastructure of LLVM's Loop Vectorizer.
419419

420420
.. _slp-vectorizer:

llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
//
2828
// There is a development effort going on to migrate loop vectorizer to the
2929
// VPlan infrastructure and to introduce outer loop vectorization support (see
30-
// docs/Proposal/VectorizationPlan.rst and
30+
// docs/VectorizationPlan.rst and
3131
// http://lists.llvm.org/pipermail/llvm-dev/2017-December/119523.html). For this
3232
// purpose, we temporarily introduced the VPlan-native vectorization path: an
3333
// alternative vectorization path that is natively implemented on top of the

llvm/lib/Transforms/Vectorize/LoopVectorize.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
//
2828
// There is a development effort going on to migrate loop vectorizer to the
2929
// VPlan infrastructure and to introduce outer loop vectorization support (see
30-
// docs/Proposal/VectorizationPlan.rst and
30+
// docs/VectorizationPlan.rst and
3131
// http://lists.llvm.org/pipermail/llvm-dev/2017-December/119523.html). For this
3232
// purpose, we temporarily introduced the VPlan-native vectorization path: an
3333
// alternative vectorization path that is natively implemented on top of the

0 commit comments

Comments
 (0)