Skip to content

Commit

Permalink
Mem leak fix after rebase.
Browse files Browse the repository at this point in the history
  • Loading branch information
TeachRaccooon committed Sep 29, 2023
1 parent 75c2338 commit 9e98187
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions RandLAPACK/drivers/rl_cqrrp.hh
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,14 @@ int CQRRP_blocked<T, RNG>::call(
printf("Everything else takes %20.2f%% of runtime.\n", 100 * ((T) t_rest / (T) total_t_dur));
printf("/-------------CQRRP TIMING RESULTS END-------------/\n\n");
}

free(J_buffer_lu);
free(A_sk);
free(A_sk_trans);
free(R_cholqr);
free(T_dat);
free(Work2);

return 0;
}

Expand Down

0 comments on commit 9e98187

Please sign in to comment.