-
Notifications
You must be signed in to change notification settings - Fork 15.3k
[mlir][tosa] Prevent div by 0 in ReshapeOp::inferReturnTypeComponents #83823
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
Conversation
|
Thank you for submitting a Pull Request (PR) to the LLVM Project! This PR will be automatically labeled and the relevant teams will be If you wish to, you can add reviewers by using the "Reviewers" section on this page. If this is not working for you, it is probably because you do not have write If you have received no comments on your PR for a week, you can request a review If you have further questions, they may be answered by the LLVM GitHub User Guide. You can also ask questions in a comment on this PR, on the LLVM Discord or on the forums. |
|
@llvm/pr-subscribers-mlir-tosa @llvm/pr-subscribers-mlir Author: None (fjsyrmia) ChangesCheck if staticMul is 0 before division and return failure() Full diff: https://github.com/llvm/llvm-project/pull/83823.diff 1 Files Affected:
diff --git a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
index 62d07859e32f6e..bcde87ff158b47 100644
--- a/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
+++ b/mlir/lib/Dialect/Tosa/IR/TosaOps.cpp
@@ -936,8 +936,12 @@ LogicalResult tosa::ReshapeOp::inferReturnTypeComponents(
// Determine the length of the dynamic dimension.
for (auto &val : newShapeValue) {
- if (ShapedType::isDynamic(val))
+ if (ShapedType::isDynamic(val)) {
+ if (staticMul == 0) {
+ return failure();
+ }
val = numElements / staticMul;
+ }
}
inferredReturnShapes.push_back(
|
| for (auto &val : newShapeValue) { | ||
| if (ShapedType::isDynamic(val)) | ||
| if (ShapedType::isDynamic(val)) { | ||
| if (staticMul == 0) { |
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.
Can staticMul be 0?
|
From TOSA specification, the tensor shape in each dimension must be greater than or equal to 1. |
|
should we close this PR or move forward? cc @fjsyrmia @GeorgeARM |
|
Will close this stale PR if no response by the end of this week. |
|
close stale PR |
Check if staticMul is 0 before division and return failure()
instead of undefined behavior.