Skip to content

Commit

Permalink
Fix profiling source
Browse files Browse the repository at this point in the history
  • Loading branch information
albinahlback committed Feb 17, 2024
1 parent e50b419 commit f2366bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mpn_extras/profile/p-mulhigh_basecase.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ int main(void)
mp_limb_t yp[N_MAX];
mp_size_t n;

flint_printf("Best of mpn_mul_n, mpn_mul_basecase and mpfr_mulhigh_n\nagainst flint_mpn_mulhigh_n_basecase:\n");
flint_printf("Best of mpn_mul_n, mpn_mul_basecase and mpfr_mulhigh_n\nagainst flint_mpn_mulhigh_basecase:\n");
for (n = N_MIN; n <= N_MAX; n++)
{
double t1, t2, t3, t4, tmin, __attribute__((unused)) __;
Expand All @@ -43,7 +43,7 @@ int main(void)
mpn_random2(yp, n);

TIMEIT_START
flint_mpn_mulhigh_n(rf, xp, yp, n);
flint_mpn_mulhigh_basecase(rf, xp, yp, n);
TIMEIT_STOP_VALUES(__, t1)

TIMEIT_START
Expand Down

0 comments on commit f2366bf

Please sign in to comment.