Skip to content

Commit

Permalink
workaround for threading performance issue in erf
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrik-johansson committed Jun 26, 2022
1 parent a3e9bac commit f7b6577
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arb_hypgeom/gamma_upper_fmpq_step_bsplit.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ gamma_upper_taylor_bsplit(arb_mat_t M, arb_t Q,

if (cont)
{
arb_mat_mul(M, M2, M1, prec);
/* todo: parallel slowdown; arb_mat_mul needs retuning */
arb_mat_mul_classical(M, M2, M1, prec);
}
else
{
Expand Down

0 comments on commit f7b6577

Please sign in to comment.