Skip to content

Commit

Permalink
fix: add breaks inside transpose switch
Browse files Browse the repository at this point in the history
  • Loading branch information
robik75 committed Nov 12, 2024
1 parent bd9bf5f commit ff31129
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pn.cu
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ cudaError_t generate_permutation_polynomials(const generate_permutation_polynomi
switch (columns_count) {
case 3:
HANDLE_CUDA_ERROR(transpose<3>(unsorted_keys, cfg.indexes, log_rows_count, stream));
break;
case 4:
HANDLE_CUDA_ERROR(transpose<4>(unsorted_keys, cfg.indexes, log_rows_count, stream));
break;
default:
assert(columns_count == 3 || columns_count == 4);
}
Expand Down

0 comments on commit ff31129

Please sign in to comment.