ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/raypcalls.c
(Generate patch)

Comparing ray/src/rt/raypcalls.c (file contents):
Revision 2.27 by greg, Sat Aug 20 06:05:53 2011 UTC vs.
Revision 2.33 by greg, Mon Jun 15 15:44:03 2020 UTC

# Line 147 | Line 147 | static const char      RCSid[] = "$Id$";
147   #include  "selcall.h"
148  
149   #ifndef RAYQLEN
150 < #define RAYQLEN         12              /* # rays to send at once */
150 > #define RAYQLEN         24              /* # rays to send at once */
151   #endif
152  
153   #ifndef MAX_RPROCS
# Line 162 | Line 162 | extern char    *shm_boundary;          /* boundary of shared memo
162  
163   int             ray_pnprocs = 0;        /* number of child processes */
164   int             ray_pnidle = 0;         /* number of idle children */
165 + int             ray_pnbatch = 0;        /* throughput over responsiveness? */
166  
167   static struct child_proc {
168 <        int     pid;                            /* child process id */
168 >        RT_PID  pid;                            /* child process id */
169          int     fd_send;                        /* write to child here */
170          int     fd_recv;                        /* read from child here */
171          int     npending;                       /* # rays in process */
# Line 176 | Line 177 | static int     r_send_next = 0;        /* next send ray placement
177   static int      r_recv_first = RAYQLEN; /* position of first unreported ray */
178   static int      r_recv_next = RAYQLEN;  /* next received ray placement */
179  
180 + static int      samplestep = 1;         /* sample step size */
181 +
182   #define sendq_full()    (r_send_next >= RAYQLEN)
183  
184   static int ray_pflush(void);
# Line 210 | Line 213 | ray_pflush(void)                       /* send queued rays to idle childre
213          for (i = ray_pnprocs; nc && i--; ) {
214                  if (r_proc[i].npending > 0)
215                          continue;       /* child looks busy */
216 <                n = (r_send_next - sfirst)/nc--;
216 >                n = r_send_next - sfirst;
217 >                if (ray_pnbatch)
218 >                        nc--;           /* maximize bundling for batch calc */
219 >                else
220 >                        n /= nc--;      /* distribute work for interactivity */
221                  if (!n)
222                          continue;
223                                          /* smuggle set size in crtype */
# Line 288 | Line 295 | ray_presult(           /* check for a completed ray */
295          static struct timeval   tpoll;  /* zero timeval struct */
296          static fd_set   readset, errset;
297          int     n, ok;
298 <        register int    pn;
298 >        int     pn;
299  
300          if (r == NULL)
301                  return(0);
# Line 366 | Line 373 | getready:                              /* any children waiting for us? */
373          }
374                                          /* preen returned rays */
375          for (n = r_recv_next - r_recv_first; n--; ) {
376 <                register RAY    *rp = &r_queue[r_recv_first + n];
376 >                RAY     *rp = &r_queue[r_recv_first + n];
377                  rp->rno = r_proc[pn].rno[n];
378                  rp->parent = NULL;
379                  rp->newcset = rp->clipset = NULL;
# Line 402 | Line 409 | ray_pchild(    /* process rays (never returns) */
409   )
410   {
411          int     n;
412 <        register int    i;
412 >        int     i;
413                                          /* flag child process for quit() */
414          ray_pnprocs = -1;
415                                          /* read each ray request set */
# Line 428 | Line 435 | ray_pchild(    /* process rays (never returns) */
435                          r_queue[i].clipset = NULL;
436                          r_queue[i].slights = NULL;
437                          r_queue[i].rlvl = 0;
438 <                        samplendx++;
438 >                        samplendx += samplestep;
439                          rayclear(&r_queue[i]);
440                          rayvalue(&r_queue[i]);
441                  }
# Line 462 | Line 469 | ray_popen(                     /* open the specified # processes */
469                  strcpy(shm_boundary, "SHM_BOUNDARY");
470          }
471          fflush(NULL);                   /* clear pending output */
472 +        samplestep = ray_pnprocs + nadd;
473          while (nadd--) {                /* fork each new process */
474                  int     p0[2], p1[2];
475                  if (pipe(p0) < 0 || pipe(p1) < 0)
# Line 480 | Line 488 | ray_popen(                     /* open the specified # processes */
488                  if (r_proc[ray_pnprocs].pid < 0)
489                          error(SYSTEM, "cannot fork child process");
490                  close(p1[0]); close(p0[1]);
491 <                if (rand_samp)          /* desynchronize random function */
492 <                        srandom((long)r_proc[ray_pnprocs].pid);
491 >                if (rand_samp)          /* decorrelate random sequence */
492 >                        srandom(random());
493 >                else
494 >                        samplendx++;
495                  /*
496                   * Close write stream on exec to avoid multiprocessing deadlock.
497                   * No use in read stream without it, so set flag there as well.
# Line 503 | Line 513 | ray_pclose(            /* close one or more child processes */
513   )
514   {
515          static int      inclose = 0;
516 <        RAY     res;
516 >        RAY             res;
517 >        int             i, status = 0;
518                                          /* check recursion */
519          if (inclose)
520                  return;
# Line 519 | Line 530 | ray_pclose(            /* close one or more child processes */
530                  ;
531          r_send_next = 0;                /* hard reset in case of error */
532          r_recv_first = r_recv_next = RAYQLEN;
533 <                                        /* clean up children */
534 <        while (nsub--) {
535 <                int     status;
536 <                ray_pnprocs--;
537 <                close(r_proc[ray_pnprocs].fd_send);
538 <                if (waitpid(r_proc[ray_pnprocs].pid, &status, 0) < 0)
533 >                                        /* close send pipes */
534 >        for (i = ray_pnprocs-nsub; i < ray_pnprocs; i++)
535 >                close(r_proc[i].fd_send);
536 >
537 >        if (nsub == 1) {                /* awaiting single process? */
538 >                if (waitpid(r_proc[ray_pnprocs-1].pid, &status, 0) < 0)
539                          status = 127<<8;
540 <                close(r_proc[ray_pnprocs].fd_recv);
541 <                if (status) {
542 <                        sprintf(errmsg,
543 <                                "rendering process %d exited with code %d",
544 <                                        r_proc[ray_pnprocs].pid, status>>8);
545 <                        error(WARNING, errmsg);
540 >                close(r_proc[ray_pnprocs-1].fd_recv);
541 >        } else                          /* else unordered wait */
542 >                for (i = 0; i < nsub; ) {
543 >                        int     j, mystatus;
544 >                        RT_PID  pid = wait(&mystatus);
545 >                        for (j = ray_pnprocs-nsub; j < ray_pnprocs; j++)
546 >                                if (r_proc[j].pid == pid) {
547 >                                        if (mystatus)
548 >                                                status = mystatus;
549 >                                        close(r_proc[j].fd_recv);
550 >                                        ++i;
551 >                                }
552                  }
553 <                ray_pnidle--;
553 >        ray_pnprocs -= nsub;
554 >        ray_pnidle -= nsub;
555 >        if (status) {
556 >                sprintf(errmsg, "rendering process exited with code %d", status>>8);
557 >                error(WARNING, errmsg);
558          }
559          inclose--;
560   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines