Skip to content

Commit

Permalink
fixes coeffs handling for 17 bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ederc committed Jul 4, 2024
1 parent 26861a1 commit dd7a389
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/neogb/la_ff_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -362,14 +362,12 @@ static hm_t *reduce_dense_row_by_known_pivots_sparse_17_bit(
const int64_t mul = mod - dr[i];
dts = pivs[i];
if (i < ncl) {
cfs = bs->cf_32[dts[COEFFS]];
/* set corresponding bit of reducer in reducer bit array */
if (tr > 0) {
rba[i/32] |= 1U << (i % 32);
}
} else {
cfs = mcf[dts[COEFFS]];
}
cfs = mcf[dts[COEFFS]];
#if defined HAVE_AVX512_F
const len_t len = dts[LENGTH];
const len_t os = len % 16;
Expand Down

0 comments on commit dd7a389

Please sign in to comment.