We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed38925 commit 8a36869Copy full SHA for 8a36869
include/graphblas/nonblocking/blas1.hpp
@@ -10504,9 +10504,9 @@ namespace grb {
10504
for( ; i < local_nz; ++i ) {
10505
typename AddMonoid::D3 temp =
10506
addMonoid.template getIdentity< typename AddMonoid::D3 >();
10507
- const size_t index = ( already_dense_input_y ? i : local_y.index( i ) ) +
+ const size_t index = ( already_dense_input_x ? i : local_x.index( i ) ) +
10508
lower_bound;
10509
- if( already_dense_input_x || local_x.assigned( index - lower_bound ) ) {
+ if( already_dense_input_y || local_y.assigned( index - lower_bound ) ) {
10510
apply( temp, a[ index ], b[ index ], anyOp );
10511
foldr( temp, thread_local_output, addMonoid.getOperator() );
10512
}
0 commit comments