-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resize indexing misc bug fixes #3632
Open
naoyam
wants to merge
3
commits into
main
Choose a base branch
from
resize_indexing_path_fix
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,6 +44,27 @@ IndexingTraversal::IndexingTraversal( | |
} | ||
resize_paths_.insert(resize); | ||
} | ||
|
||
// A unique expr path should be always allowed | ||
for (const auto& expr_g : graph.disjointExprSets().disjointSets()) { | ||
auto resize = dynamic_cast<Resize*>(expr_g->front()); | ||
if (resize == nullptr) { | ||
continue; | ||
} | ||
|
||
auto input_groups = graph.inputGroups(expr_g); | ||
auto output_groups = graph.outputGroups(expr_g); | ||
if (input_groups.size() != 1 || output_groups.size() != 1) { | ||
continue; | ||
} | ||
|
||
if (graph.getUses(input_groups[0]).size() != 1 || | ||
graph.getDefinitions(output_groups[0]).size() != 1) { | ||
continue; | ||
} | ||
|
||
resize_paths_.insert(resize); | ||
} | ||
} | ||
|
||
std::optional<IndexingTraversal::ExprPath> IndexingTraversal:: | ||
|
@@ -65,18 +86,26 @@ std::optional<IndexingTraversal::ExprPath> IndexingTraversal:: | |
/*build_graphs=*/false); | ||
|
||
// Gather all resize exprs for each of the inputs and outputs | ||
std::unordered_map<Val*, std::vector<Resize*>> tv_resize_map; | ||
for (auto inp : ir_utils::filterByType<TensorView>(expr->inputs())) { | ||
for (auto expr : inp->domain()->allExprs()) { | ||
std::unordered_map<TensorView*, std::vector<Resize*>> tv_resize_map; | ||
for (auto inp : expr->inputs()) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was a trivial bug that I assumed |
||
auto inp_tv = ir_utils::getTv(inp); | ||
if (inp_tv == nullptr) { | ||
continue; | ||
} | ||
for (auto expr : inp_tv->domain()->allExprs()) { | ||
if (auto resize = dynamic_cast<Resize*>(expr)) { | ||
tv_resize_map[inp].push_back(resize); | ||
tv_resize_map[inp_tv].push_back(resize); | ||
} | ||
} | ||
} | ||
for (auto out : ir_utils::filterByType<TensorView>(expr->outputs())) { | ||
for (auto expr : out->domain()->allExprs()) { | ||
for (auto out : expr->outputs()) { | ||
auto out_tv = ir_utils::getTv(out); | ||
if (out_tv == nullptr) { | ||
continue; | ||
} | ||
for (auto expr : out_tv->domain()->allExprs()) { | ||
if (auto resize = dynamic_cast<Resize*>(expr)) { | ||
tv_resize_map[out].push_back(resize); | ||
tv_resize_map[out_tv].push_back(resize); | ||
} | ||
} | ||
} | ||
|
@@ -149,9 +178,17 @@ std::optional<IndexingTraversal::ExprPath> IndexingTraversal:: | |
}; | ||
|
||
bool single_id_resized_multiple_times = false; | ||
for (auto out : ir_utils::filterByType<TensorView>(expr->outputs())) { | ||
for (auto inp : ir_utils::filterByType<TensorView>(expr->inputs())) { | ||
if (isSingleIdResizedMultipleTimes(inp, out)) { | ||
for (auto out : expr->outputs()) { | ||
auto out_tv = ir_utils::getTv(out); | ||
if (out_tv == nullptr) { | ||
continue; | ||
} | ||
for (auto inp : expr->inputs()) { | ||
auto inp_tv = ir_utils::getTv(inp); | ||
if (inp_tv == nullptr) { | ||
continue; | ||
} | ||
if (isSingleIdResizedMultipleTimes(inp_tv, out_tv)) { | ||
single_id_resized_multiple_times = true; | ||
break; | ||
} | ||
|
This file contains 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A war for a couple of issues I encountered while playing with RoPE patterns.