We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e0c34c commit f0b8e73Copy full SHA for f0b8e73
1 file changed
examples/spmm/spmm.cc
@@ -737,7 +737,7 @@ class SpMM25D {
737
738
// pass the running total to the next flow, if needed
739
// otherwise write to the result flow
740
- if (enable_mutexflows_) {
+ if (!enable_mutexflows_) {
741
if (have_next_k) {
742
co_await ttg::device::forward(ttg::device::send<1>(
743
Key<3>({i, j, next_k}),
@@ -751,7 +751,7 @@ class SpMM25D {
751
result));
752
}
753
} else {
754
- // no mutex flows, just send the result
+ // mutex flows, just send the result
755
756
ijk, // reuse the key, it will be mapped to the same bucket
757
std::move(C),
0 commit comments