[flang-commits] [flang] [flang] Fix runtime error messages for the MATMUL intrinsic (PR #96928)
via flang-commits
flang-commits at lists.llvm.org
Thu Jun 27 09:34:38 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-flang-runtime
Author: Pete Steinfeld (psteinfeld)
<details>
<summary>Changes</summary>
There are three forms of MATMUL -- where the first argument is a rank 1 array, where the second argument is a rank 1 array, and where both arguments are rank 2 arrays. There's code in the runtime that detects when the array shapes are incorrect. But the code that emits an error message assumes that both arguments are rank 2 arrays.
This change contains code for the other two cases.
---
Full diff: https://github.com/llvm/llvm-project/pull/96928.diff
1 Files Affected:
- (modified) flang/runtime/matmul.cpp (+19-5)
``````````diff
diff --git a/flang/runtime/matmul.cpp b/flang/runtime/matmul.cpp
index 543284cb5c363..8f9b50a549e1f 100644
--- a/flang/runtime/matmul.cpp
+++ b/flang/runtime/matmul.cpp
@@ -288,11 +288,25 @@ static inline RT_API_ATTRS void DoMatmul(
}
SubscriptValue n{x.GetDimension(xRank - 1).Extent()};
if (n != y.GetDimension(0).Extent()) {
- terminator.Crash("MATMUL: unacceptable operand shapes (%jdx%jd, %jdx%jd)",
- static_cast<std::intmax_t>(x.GetDimension(0).Extent()),
- static_cast<std::intmax_t>(n),
- static_cast<std::intmax_t>(y.GetDimension(0).Extent()),
- static_cast<std::intmax_t>(y.GetDimension(1).Extent()));
+ // At this point, we know that there's a shape error. There are three
+ // possibilities, x is rank 1, y is rank 1, or both are rank 2.
+ if (xRank == 1) {
+ terminator.Crash("MATMUL: unacceptable operand shapes (%jd, %jdx%jd)",
+ static_cast<std::intmax_t>(n),
+ static_cast<std::intmax_t>(y.GetDimension(0).Extent()),
+ static_cast<std::intmax_t>(y.GetDimension(1).Extent()));
+ } else if (yRank == 1) {
+ terminator.Crash("MATMUL: unacceptable operand shapes (%jdx%jd, %jd)",
+ static_cast<std::intmax_t>(x.GetDimension(0).Extent()),
+ static_cast<std::intmax_t>(n),
+ static_cast<std::intmax_t>(y.GetDimension(0).Extent()));
+ } else {
+ terminator.Crash("MATMUL: unacceptable operand shapes (%jdx%jd, %jdx%jd)",
+ static_cast<std::intmax_t>(x.GetDimension(0).Extent()),
+ static_cast<std::intmax_t>(n),
+ static_cast<std::intmax_t>(y.GetDimension(0).Extent()),
+ static_cast<std::intmax_t>(y.GetDimension(1).Extent()));
+ }
}
using WriteResult =
CppTypeFor<RCAT == TypeCategory::Logical ? TypeCategory::Integer : RCAT,
``````````
</details>
https://github.com/llvm/llvm-project/pull/96928
More information about the flang-commits
mailing list