[Mlir-commits] [mlir] mlir/Presburger: contribute a free-standing parser (PR #94916)
Kunwar Grover
llvmlistbot at llvm.org
Sun Jul 7 05:42:26 PDT 2024
================
@@ -103,6 +103,9 @@ class Matrix {
/// Set the specified row to `elems`.
void setRow(unsigned row, ArrayRef<T> elems);
+ /// Add the specified row to `elems`.
+ void addToRow(unsigned row, ArrayRef<T> elems);
+
----------------
Groverkss wrote:
The documentation reads like:
```
elems += row + elems
```
can you write "Add `elems` to the specified row"?
https://github.com/llvm/llvm-project/pull/94916
More information about the Mlir-commits
mailing list