1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
|
/* XXX NOTE THAT IT IS NOT SAFE TO USE ->pdls MEMBER OUTSIDE
INITTHREADSTRUCT! */
#define PDL_CORE /* For certain ifdefs */
#include "pdl.h" /* Data structure declarations */
#include "pdlcore.h" /* Core declarations */
#define MAX2(a,b) if((b)>(a)) a=b;
#define strndup strndup_mine
static void *strndup(void *ptr, int size) {
if(size == 0) return 0; else
{
void *newptr = malloc(size);
int i;
for(i=0; i<size; i++) ((char *)newptr)[i] = ((char *)ptr)[i];
return newptr;
}
}
int *pdl_get_threadoffsp(pdl_thread *thread)
{
if(thread->gflags & PDL_THREAD_MAGICKED) {
int thr = pdl_magic_get_thread(thread->pdls[thread->mag_nthpdl]);
return thread->offs + thr * thread->npdls;
}
/* The non-multithreaded case: return just the usual offsets */
return thread->offs;
}
int *pdl_get_threadoffsp_int(pdl_thread *thread, int *nthr)
{
if(thread->gflags & PDL_THREAD_MAGICKED) {
int thr = pdl_magic_get_thread(thread->pdls[thread->mag_nthpdl]);
*nthr = thr;
return thread->offs + thr * thread->npdls;
}
*nthr = 0;
/* The non-multithreaded case: return just the usual offsets */
return thread->offs;
}
void pdl_thread_copy(pdl_thread *from,pdl_thread *to) {
to->gflags = from->gflags;
to->einfo = from->einfo;
to->ndims = from->ndims;
to->nimpl = from->nimpl;
to->npdls = from->npdls;
to->inds = strndup(from->inds,sizeof(*to->inds)*to->ndims);
to->dims = strndup(from->dims,sizeof(*to->dims)*to->ndims);
to->offs = strndup(from->offs,sizeof(*to->offs)*to->npdls);
to->incs = strndup(from->incs,sizeof(*to->offs)*to->npdls*to->ndims);
to->realdims = from->realdims;
to->flags = strndup(from->flags,to->npdls);
to->pdls = strndup(from->pdls,sizeof(*to->pdls)*to->npdls); /* XX MEMLEAK */
to->mag_nthpdl = from->mag_nth;
to->mag_nthpdl = from->mag_nthpdl;
}
void pdl_freethreadloop(pdl_thread *thread) {
PDLDEBUG_f(printf("Freethreadloop(%d, %d %d %d %d %d %d)\n",
thread,
thread->inds, thread->dims, thread->offs, thread->incs,
thread->flags, thread->pdls);)
if(!thread->inds) {return;}
free(thread->inds);
free(thread->dims);
free(thread->offs);
free(thread->incs);
/* free(thread->realdims); */
free(thread->flags);
free(thread->pdls);
pdl_clearthreadstruct(thread);
}
void pdl_clearthreadstruct(pdl_thread *it) {
PDLDEBUG_f(printf("Clearthreadloop(%d)\n", it);)
it->einfo = 0;it->inds = 0;it->dims = 0;
it->ndims = it->nimpl = it->npdls = 0; it->offs = 0;
it->pdls = 0;it->incs = 0; it->realdims=0; it->flags=0;
}
/* The assumptions this function makes:
* pdls is dynamic and may go away -> copied
* realdims is static and is NOT copied and NOT freed!!!
* creating is only used inside this routine.
* errorinfo is assumed static.
* usevaffine is assumed static. (uses if exists)
*
* Only the first thread-magicked pdl is taken into account.
*/
void pdl_initthreadstruct(int nobl,
pdl **pdls,int *realdims,int *creating,int npdls,
pdl_errorinfo *info,pdl_thread *thread, char *flags) {
int i; int j;
int ndims=0; int nth;
int mx;
int nids;
int nimpl;
int nthid;
int mydim;
int *nthreadids;
int nthr = 0; int nthrd;
PDLDEBUG_f(printf("Initthreadloop(%d)\n", thread);)
thread->gflags = 0;
thread->npdls = npdls;
thread->pdls = strndup(pdls,sizeof(*pdls)*npdls);
thread->realdims = realdims;
thread->ndims = 0;
thread->mag_nth = -1;
thread->mag_nthpdl = -1;
nids=0;
mx=0;
/* Find the max. number of threadids */
for(j=0; j<npdls; j++) {
if(creating[j]) continue;
MAX2(nids,pdls[j]->nthreadids);
MAX2(mx,pdls[j]->threadids[0] - realdims[j]);
}
nthreadids = pdl_malloc(sizeof(int)*nids);
ndims += mx; nimpl = mx; thread->nimpl = nimpl;
for(j=0; j<npdls; j++) {
if(creating[j]) continue;
/* Check for magical piddles (parallelized) */
if((!nthr) &&
pdls[j]->magic &&
(nthr = pdl_magic_thread_nthreads(pdls[j],&nthrd))) {
thread->mag_nthpdl = j;
thread->mag_nth = nthrd - realdims[j];
if(thread->mag_nth < 0) {
die("Cannot magick non-threaded dims");
}
}
for(i=0; i<nids; i++) {
mx=0; if(pdls[j]->nthreadids <= nids) {
MAX2(mx,
pdls[j]->threadids[i+1]
- pdls[j]->threadids[i]);
}
ndims += mx;
nthreadids[i] = mx;
}
}
if(nthr) {
thread->gflags |= PDL_THREAD_MAGICKED;
}
if(ndims < nobl) { /* If too few, add enough implicit dims */
thread->nextra = nobl - ndims;
ndims += thread->nextra;
} else {
thread->nextra = 0;
}
thread->ndims = ndims;
thread->nimpl = nimpl;
thread->inds = malloc(sizeof(int) * thread->ndims);
thread->dims = malloc(sizeof(int) * thread->ndims);
thread->offs = malloc(sizeof(int) * thread->npdls
* (nthr>0 ? nthr : 1));
thread->incs = malloc(sizeof(int) * thread->ndims * npdls);
thread->flags = malloc(sizeof(char) * npdls);
nth=0; /* Index to dimensions */
/* populate the per_pdl_flags */
for (i=0;i<npdls; i++) {
thread->flags[i] = 0;
if (PDL_VAFFOK(pdls[i]) && VAFFINE_FLAG_OK(flags,i))
thread->flags[i] |= PDL_THREAD_VAFFINE_OK;
}
flags = thread->flags; /* shortcut for the remainder */
/* Make implicit inds */
for(i=0; i<nimpl; i++) {
thread->dims[nth] = 1;
for(j=0; j<thread->npdls; j++) {
thread->incs[nth*npdls+j] = 0;
if(creating[j]) continue;
if(thread->pdls[j]->threadids[0]-
thread->realdims[j] <= i)
continue;
if(pdls[j]->dims[i+realdims[j]] != 1) {
if(thread->dims[nth] != 1) {
if(thread->dims[nth] !=
pdls[j]->dims[i+realdims[j]]) {
pdl_croak_param(info,j,"Mismatched Implicit thread dimension %d: should be %d, is %d",
i,
thread->dims[nth],
pdls[j]->dims[i+thread->realdims[j]]);
}
} else {
thread->dims[nth] =
pdls[j]->dims[i+realdims[j]];
}
thread->incs[nth*npdls+j] =
PDL_TREPRINC(pdls[j],flags[j],i+realdims[j]);
}
}
nth++;
}
/* Go through everything again and make the real things */
for(nthid=0; nthid<nids; nthid++) {
for(i=0; i<nthreadids[nthid]; i++) {
thread->dims[nth] = 1;
for(j=0; j<thread->npdls; j++) {
thread->incs[nth*npdls+j] = 0;
if(creating[j]) continue;
if(thread->pdls[j]->nthreadids < nthid)
continue;
if(thread->pdls[j]->threadids[nthid+1]-
thread->pdls[j]->threadids[nthid]
<= i) continue;
mydim = i+thread->pdls[j]->threadids[nthid];
if(pdls[j]->dims[mydim]
!= 1) {
if(thread->dims[nth] != 1) {
if(thread->dims[nth] !=
pdls[j]->dims[mydim]) {
pdl_croak_param(info,j,"Mismatched Implicit thread dimension %d: should be %d, is %d",
i,
thread->dims[nth],
pdls[j]->dims[i+thread->realdims[j]]);
}
} else {
thread->dims[nth] =
pdls[j]->dims[mydim];
}
thread->incs[nth*npdls+j] =
PDL_TREPRINC(pdls[j],flags[j],mydim);
}
}
nth++;
}
}
/* Make sure that we have the obligatory number of threaddims */
for(; nth<ndims; nth++) {
thread->dims[nth]=1;
for(j=0; j<npdls; j++)
thread->incs[nth*npdls+j] = 0;
}
/* If threading, make the true offsets and dims.. */
if(nthr > 0) {
int n1 = thread->dims[thread->mag_nth] / nthr;
int n2 = thread->dims[thread->mag_nth] % nthr;
if(n2) {
die("Cannot magick-thread with non-divisible n!");
}
thread->dims[thread->mag_nth] = n1;
}
}
void pdl_thread_create_parameter(pdl_thread *thread,int j,int *dims,
int temp)
{
int i;
int td = temp ? 0 : thread->nimpl;
if(!temp && thread->nimpl != thread->ndims - thread->nextra) {
pdl_croak_param(thread->einfo,j,
"Trying to create parameter while explicitly threading.\
See the manual for why this is impossible");
}
pdl_reallocdims(thread->pdls[j], thread->realdims[j] + td);
for(i=0; i<thread->realdims[j]; i++)
thread->pdls[j]->dims[i] = dims[i];
if (!temp)
for(i=0; i<thread->nimpl; i++)
thread->pdls[j]->dims[i+thread->realdims[j]] =
thread->dims[i];
thread->pdls[j]->threadids[0] = td + thread->realdims[j];
pdl_resize_defaultincs(thread->pdls[j]);
for(i=0; i<thread->nimpl; i++) {
thread->incs[thread->npdls*i + j] =
temp ? 0 :
PDL_REPRINC(thread->pdls[j],i+thread->realdims[j]);
}
}
int pdl_startthreadloop(pdl_thread *thread,void (*func)(pdl_trans *),
pdl_trans *t) {
int i,j;
int *offsp; int nthr;
if((thread->gflags & (PDL_THREAD_MAGICKED | PDL_THREAD_MAGICK_BUSY))
== PDL_THREAD_MAGICKED) {
thread->gflags |= PDL_THREAD_MAGICK_BUSY;
if(!func) {
die("NULL FUNCTION WHEN PTHREADING\n");
}
/* Do the threadloop magically (i.e. in parallel) */
pdl_magic_thread_cast(thread->pdls[thread->mag_nthpdl],
func,t);
thread->gflags &= ~PDL_THREAD_MAGICK_BUSY;
return 1; /* DON'T DO THREADLOOP AGAIN */
}
for(i=0; i<thread->ndims; i++)
thread->inds[i] = 0;
offsp = pdl_get_threadoffsp_int(thread,&nthr);
for(j=0; j<thread->npdls; j++)
offsp[j] = PDL_TREPROFFS(thread->pdls[j],thread->flags[j]) +
(!nthr?0:
nthr * thread->dims[thread->mag_nth] *
thread->incs[thread->mag_nth*thread->npdls + j]);
return 0;
}
/* This will have to be macroized */
int pdl_iterthreadloop(pdl_thread *thread,int nth) {
int i,j;
int stop = 0;
int stopdim;
int *offsp; int nthr;
/* printf("iterthreadloop\n"); */
for(j=0; j<thread->npdls; j++)
thread->offs[j] = PDL_TREPROFFS(thread->pdls[j],thread->flags[j]);
for(i=nth; i<thread->ndims; i++) {
thread->inds[i] ++;
if(thread->inds[i] >= thread->dims[i])
thread->inds[i] = 0;
else
{ stopdim = i; stop = 1; break; }
}
if(stop) goto calc_offs;
return 0;
calc_offs:
offsp = pdl_get_threadoffsp_int(thread,&nthr);
for(j=0; j<thread->npdls; j++) {
offsp[j] = PDL_TREPROFFS(thread->pdls[j],thread->flags[j]) +
(!nthr?0:
nthr * thread->dims[thread->mag_nth] *
thread->incs[thread->mag_nth*thread->npdls + j]);
;
for(i=nth; i<thread->ndims; i++) {
offsp[j] += thread->incs[i*thread->npdls+j] *
thread->inds[i];
}
}
return stopdim+1;
}
void pdl_croak_param(pdl_errorinfo *info,int j, char *pat, ...)
{
va_list args;
char *message; char *name;
static char mesgbuf[200];
va_start(args,pat);
message = mess(pat,&args);
/* Now, croak() overwrites this string. make a copy */
strcpy(mesgbuf,message); message = mesgbuf;
va_end(args);
if(!info) {croak("PDL_CROAK_PARAM: Unknown: parameter %d: %s\n",
j,message);
} else {
if(j >= info->nparamnames)
name = "ERROR: UNKNOWN PARAMETER";
else name = info->paramnames[j];
croak("PDL: %s: Parameter '%s': %s\n",info->funcname,name,message);
}
}
|