tweaks for highly parallel and very large jobs

This commit is contained in:
Martin Reinecke 2013-01-15 15:18:16 +01:00
parent 81ad41103b
commit 54bc25edcb
4 changed files with 13 additions and 12 deletions

View file

@ -42,7 +42,7 @@ void sharp_make_triangular_alm_info (int lmax, int mmax, int stride,
info->mvstart = RALLOC(ptrdiff_t,mmax+1);
info->stride = stride;
info->flags = 0;
int tval = 2*lmax+1;
ptrdiff_t tval = 2*lmax+1;
for (ptrdiff_t m=0; m<=mmax; ++m)
{
info->mval[m] = m;