Skip to content

Commit

Permalink
Typo in argmin/max index
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffburdick authored Nov 7, 2024
1 parent 3bc989c commit 04570ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/matx/transforms/cub.h
Original file line number Diff line number Diff line change
Expand Up @@ -1844,7 +1844,7 @@ void cub_dualargreduce(OutputTensor &a1_out,
return std::make_shared<cache_val_type>(a1_out, aidx1_out, a2_out, aidx2_out, a, reduce_params, stream);
},
[&](std::shared_ptr<cache_val_type> ctype) {
ctype->ExecDualArgReduce(a1_out, aidx1_out, a2_out, aidex2_out, a, stream);
ctype->ExecDualArgReduce(a1_out, aidx1_out, a2_out, aidx2_out, a, stream);
}
);
#else
Expand Down

0 comments on commit 04570ac

Please sign in to comment.