File tree 1 file changed +4
-4
lines changed
include/cutlass/epilogue/threadblock
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -946,13 +946,13 @@ class EpilogueWithBroadcast<
946
946
//
947
947
948
948
if (OutputOp::kStoreZ ) {
949
+ destination_iterator += reduce_fragment_idx;
949
950
destination_iterator.store (frag_Z);
950
- ++destination_iterator;
951
951
}
952
952
953
953
if (OutputOp::kStoreT ) {
954
+ tensor_iterator += reduce_fragment_idx;
954
955
tensor_iterator.store (frag_T);
955
- ++tensor_iterator;
956
956
}
957
957
}
958
958
};
@@ -1698,13 +1698,13 @@ class EpilogueWithBroadcast<
1698
1698
//
1699
1699
1700
1700
if (OutputOp::kStoreZ ) {
1701
+ destination_iterator += reduce_fragment_idx;
1701
1702
destination_iterator.store (frag_Z);
1702
- ++destination_iterator;
1703
1703
}
1704
1704
1705
1705
if (OutputOp::kStoreT ) {
1706
+ tensor_iterator += reduce_fragment_idx;
1706
1707
tensor_iterator.store (frag_T);
1707
- ++tensor_iterator;
1708
1708
}
1709
1709
}
1710
1710
};
You can’t perform that action at this time.
0 commit comments