Skip to content

Commit

Permalink
Version: 1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonjfoster committed Nov 6, 2023
1 parent 106746f commit ec0f5ae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/roll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2040,11 +2040,11 @@ SEXP roll_crossprod_z(const SEXP& x, const SEXP& y,
if (symmetric) {

// y is null
roll::RollCrossProdOfflineMatXX roll_crossprd_offline(xx, n, n_rows_xy, n_cols_x, width,
weights, center, scale, min_obs,
arma_any_na, na_restore,
arma_crossprod);
parallelFor(0, n_rows_xy * n_cols_x * (n_cols_x + 1) / 2, roll_crossprd_offline);
roll::RollCrossProdOfflineMatXX roll_crossprod_offline(xx, n, n_rows_xy, n_cols_x, width,
weights, center, scale, min_obs,
arma_any_na, na_restore,
arma_crossprod);
parallelFor(0, n_rows_xy * n_cols_x * (n_cols_x + 1) / 2, roll_crossprod_offline);

} else if (!symmetric) {

Expand Down

0 comments on commit ec0f5ae

Please sign in to comment.