summaryrefslogtreecommitdiff
path: root/mlir/unittests
diff options
context:
space:
mode:
authorwren romano <2998727+wrengr@users.noreply.github.com>2023-03-28 14:48:21 -0700
committerwren romano <2998727+wrengr@users.noreply.github.com>2023-03-28 16:33:30 -0700
commit0ceec3ebfcf339147f640dcb5c6d9f397c7bb502 (patch)
tree10a9dd2223fb8ff0af61a0937951d1d3a4cecd18 /mlir/unittests
parent75d2032e9ba39b3ae0da17f8cd27d66030bf901c (diff)
downloadllvm-0ceec3ebfcf339147f640dcb5c6d9f397c7bb502.tar.gz
[mlir][sparse] Fixing -Wignored-reference-qualifiers in MergerTest.cpp
These warnings were introduced by D146561. Reviewed By: aartbik, Peiming Differential Revision: https://reviews.llvm.org/D147090
Diffstat (limited to 'mlir/unittests')
-rw-r--r--mlir/unittests/Dialect/SparseTensor/MergerTest.cpp46
1 files changed, 23 insertions, 23 deletions
diff --git a/mlir/unittests/Dialect/SparseTensor/MergerTest.cpp b/mlir/unittests/Dialect/SparseTensor/MergerTest.cpp
index 2497659e68dd..f6cd3e05fe0f 100644
--- a/mlir/unittests/Dialect/SparseTensor/MergerTest.cpp
+++ b/mlir/unittests/Dialect/SparseTensor/MergerTest.cpp
@@ -429,9 +429,9 @@ protected:
const auto t0 = tid(0); \
const auto t1 = tid(1); \
const auto t2 = tid(2); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
- const PatternRef p2 = tensorPattern(t2); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
+ PatternRef p2 = tensorPattern(t2); \
auto s = merger.buildLattices(e, l0); \
expectNumLatPoints(s, 1); \
expectLatPoint(s, 0, CONJ2##Pattern(CONJ1##Pattern(p0, p1), p2), \
@@ -466,9 +466,9 @@ FOREVERY_PAIR_OF_COMMON_CONJ_CONJ_BINOP(IMPL_MERGER_TEST_CONJ_CONJ_UNDEF)
const auto t1 = tid(1); \
const auto t2 = tid(2); \
const auto t3 = tid(3); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
- const PatternRef p2 = tensorPattern(t2); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
+ PatternRef p2 = tensorPattern(t2); \
auto s = merger.buildLattices(e, l0); \
expectNumLatPoints(s, 1); \
expectLatPoint(s, 0, CONJ2##Pattern(CONJ1##Pattern(p0, p1), p2), \
@@ -504,8 +504,8 @@ FOREVERY_PAIR_OF_COMMON_CONJ_CONJ_BINOP(IMPL_MERGER_TEST_CONJ_CONJ_SPARSE_OUT)
const auto l0 = lid(0); \
const auto t0 = tid(0); \
const auto t1 = tid(1); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
auto s = merger.buildLattices(e, l0); \
\
expectNumLatPoints(s, 3); \
@@ -538,8 +538,8 @@ FOREVERY_COMMON_DISJ_BINOP(IMPL_MERGER_TEST_DISJ)
const auto l0 = lid(0); \
const auto t0 = tid(0); \
const auto t1 = tid(1); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
auto s = merger.buildLattices(e, l0); \
\
expectNumLatPoints(s, 1); \
@@ -572,9 +572,9 @@ FOREVERY_COMMON_CONJ_BINOP(IMPL_MERGER_TEST_CONJ)
const auto t0 = tid(0); \
const auto t1 = tid(1); \
const auto t2 = tid(2); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
- const PatternRef p2 = tensorPattern(t2); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
+ PatternRef p2 = tensorPattern(t2); \
auto s = merger.buildLattices(e, l0); \
\
expectNumLatPoints(s, 3); \
@@ -617,9 +617,9 @@ FOREVERY_PAIR_OF_COMMON_CONJ_DISJ_BINOP(IMPL_MERGER_TEST_CONJ_DISJ)
const auto t0 = tid(0); \
const auto t1 = tid(1); \
const auto t2 = tid(2); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
- const PatternRef p2 = tensorPattern(t2); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
+ PatternRef p2 = tensorPattern(t2); \
auto s = merger.buildLattices(e, l0); \
\
expectNumLatPoints(s, 7); \
@@ -668,9 +668,9 @@ FOREVERY_PAIR_OF_COMMON_DISJ_DISJ_BINOP(IMPL_MERGER_TEST_DISJ_DISJ)
const auto t0 = tid(0); \
const auto t1 = tid(1); \
const auto t2 = tid(2); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
- const PatternRef p2 = tensorPattern(t2); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
+ PatternRef p2 = tensorPattern(t2); \
auto s = merger.buildLattices(e, l0); \
expectNumLatPoints(s, 1); \
expectLatPoint(s, 0, CONJ2##Pattern(CONJ1##Pattern(p0, p1), p2), \
@@ -707,8 +707,8 @@ FOREVERY_PAIR_OF_COMMON_CONJ_CONJ_BINOP(IMPL_MERGER_TEST_CONJ_CONJ)
const auto l0 = lid(0); \
const auto t0 = tid(0); \
const auto t1 = tid(1); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
auto s = merger.buildLattices(e, l0); \
\
expectNumLatPoints(s, 3); \
@@ -745,8 +745,8 @@ FOREVERY_COMMON_DISJ_BINOP(IMPL_MERGER_TEST_OPTIMIZED_DISJ)
const auto l0 = lid(0); \
const auto t0 = tid(0); \
const auto t1 = tid(1); \
- const PatternRef p0 = tensorPattern(t0); \
- const PatternRef p1 = tensorPattern(t1); \
+ PatternRef p0 = tensorPattern(t0); \
+ PatternRef p1 = tensorPattern(t1); \
auto s = merger.buildLattices(e, l0); \
\
expectNumLatPoints(s, 1); \