Conversation
jerryyin
requested review from
Groverkss,
MaheshRavishankar,
kuhar and
qedawkins
as code owners
November 17, 2025 19:37
jerryyin
force-pushed
the
users/zyin/refactor-pipeliner-using-upstream-v3-configure-stage
branch
from
November 17, 2025 19:41
125a2ec to
8e390ed
Compare
kuhar
approved these changes
Nov 17, 2025
jerryyin
force-pushed
the
users/zyin/refactor-pipeliner-using-upstream-v3-configure-stage
branch
2 times, most recently
from
November 17, 2025 20:22
d62c243 to
c609c3a
Compare
kuhar
reviewed
Nov 17, 2025
kuhar
reviewed
Nov 17, 2025
kuhar
reviewed
Nov 17, 2025
kuhar
reviewed
Nov 17, 2025
jerryyin
force-pushed
the
users/zyin/refactor-pipeliner-using-upstream-v3-configure-stage
branch
from
November 17, 2025 20:34
c609c3a to
11f0d36
Compare
jerryyin
marked this pull request as draft
November 17, 2025 20:40
Allows 1-stage (no pipelining) or 2-stage (default) pipeline. Signed-off-by: jerryyin <zhuoryin@amd.com>
jerryyin
force-pushed
the
users/zyin/refactor-pipeliner-using-upstream-v3-configure-stage
branch
from
November 17, 2025 20:56
11f0d36 to
f259fe6
Compare
jerryyin
marked this pull request as ready for review
November 17, 2025 21:15
Signed-off-by: jerryyin <zhuoryin@amd.com>
kuhar
approved these changes
Nov 17, 2025
jerryyin
deleted the
users/zyin/refactor-pipeliner-using-upstream-v3-configure-stage
branch
November 18, 2025 13:48
bangtianliu
pushed a commit
to bangtianliu/iree
that referenced
this pull request
Nov 19, 2025
…ree-org#22673) Adds a `--num-stages` option to the `iree-llvmgpu-prefetch-shared-memory` pass, allowing configuration of pipeline stages. **Options:** - `num-stages=1`: Disable pipelining (no prefetch) - `num-stages=2`: 2-stage pipeline with distance-1 prefetch (default) This PR is mostly trivial changes and aim to get the code base ready to plumb through 3 stage pipelining. --------- Signed-off-by: jerryyin <zhuoryin@amd.com>
pstarkcdpr
pushed a commit
to pstarkcdpr/iree
that referenced
this pull request
Nov 28, 2025
…ree-org#22673) Adds a `--num-stages` option to the `iree-llvmgpu-prefetch-shared-memory` pass, allowing configuration of pipeline stages. **Options:** - `num-stages=1`: Disable pipelining (no prefetch) - `num-stages=2`: 2-stage pipeline with distance-1 prefetch (default) This PR is mostly trivial changes and aim to get the code base ready to plumb through 3 stage pipelining. --------- Signed-off-by: jerryyin <zhuoryin@amd.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a
--num-stagesoption to theiree-llvmgpu-prefetch-shared-memorypass, allowing configuration of pipeline stages.Options:
num-stages=1: Disable pipelining (no prefetch)num-stages=2: 2-stage pipeline with distance-1 prefetch (default)This PR is mostly trivial changes and aim to get the code base ready to plumb through 3 stage pipelining.