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

Comparing ray/src/hd/rholo.c (file contents):
Revision 3.47 by gwlarson, Wed Jan 20 13:28:49 1999 UTC vs.
Revision 3.49 by gwlarson, Wed Feb 10 16:24:07 1999 UTC

# Line 14 | Line 14 | static char SCCSid[] = "$SunId$ SGI";
14   #include <sys/types.h>
15   #include <sys/stat.h>
16  
17 #ifndef RTFLUSH
18 #define RTFLUSH         0               /* flush one at a time in batch */
19 #endif
17   #ifndef FRAGWARN
18   #define FRAGWARN        20              /* fragmentation for warning (%) */
19   #endif
20   #ifndef MAXQTIME
21   #define MAXQTIME        5               /* target maximum seconds in queue */
22   #endif
23 +                                        /* manual cache flushing frequency */
24 + #ifndef RTFLUSH
25 + #if MAXQTIME
26 + #define RTFLUSH         (300/MAXQTIME*totqlen)  /* <= 5 minutes */
27 + #else
28 + #define RTFLUSH         (50*totqlen)            /* just guess */
29 + #endif
30 + #endif
31                          /* the following must be consistent with rholo.h */
32   int     NVARS = NRHVARS;                /* total number of variables */
33  
# Line 55 | Line 60 | long   nraysdone = 0L;         /* number of rays done */
60   long    npacksdone = 0L;        /* number of packets done */
61  
62   PACKET  *freepacks;             /* available packets */
63 < int     totqlen;                /* maximum queue length when full */
63 > int     totqlen;                /* maximum queue length (number of packets) */
64  
65   char  *sigerr[NSIG];            /* signal error messages */
66  
# Line 318 | Line 323 | rholo()                                /* holodeck main loop */
323          if (reporttime > 0 && t >= reporttime)
324                  report(t);
325                                          /* figure out good packet size */
326 +        pksiz = RPACKSIZ;
327   #if MAXQTIME
328 <        pksiz = nraysdone*MAXQTIME/(totqlen*(t - starttime + 1L));
329 <        if (pksiz < 1)
330 <                pksiz = 1;
331 <        else if (pksiz > RPACKSIZ)
328 >        if (!chunkycmp) {
329 >                pksiz = nraysdone*MAXQTIME/(totqlen*(t - starttime + 1L));
330 >                if (pksiz < 1) pksiz = 1;
331 >                else if (pksiz > RPACKSIZ) pksiz = RPACKSIZ;
332 >        }
333   #endif
327                pksiz = RPACKSIZ;
334          idle = 0;                       /* get packets to process */
335          while (freepacks != NULL) {
336                  p = freepacks; freepacks = p->next; p->next = NULL;
# Line 516 | Line 522 | PACKET *pl;
522                                  p->nr*sizeof(RAYVAL));
523                          if (outdev != NULL)     /* display it */
524                                  disp_packet((PACKHEAD *)p);
525 <                        if (hdcachesize <= 0) {
520 < #if RTFLUSH
521 <                                if (outdev == NULL)
522 <                                        hdfreebeam(hdlist[p->hd], p->bi);
523 < #endif
525 >                        if (hdcachesize <= 0)
526                                  n2flush++;
525                        }
527                          nraysdone += p->nr;
528                          npacksdone++;
529                          p->nr = 0;
# Line 530 | Line 531 | PACKET *pl;
531                  p->next = freepacks;            /* push onto free list */
532                  freepacks = p;
533          }
534 < #if MAXQTIME
534 <        if (n2flush > 300/MAXQTIME*totqlen) {
535 < #else
536 <        if (n2flush > 50*totqlen) {
537 < #endif
538 < #if RTFLUSH
539 <                hdsync(NULL, outdev!=NULL);     /* sync beams & directories */
540 < #else
534 >        if (n2flush > RTFLUSH) {
535                  if (outdev != NULL)
536                          hdsync(NULL, 1);
537                  else
538                          hdflush(NULL);
545 #endif
539                  n2flush = 0;
540          }
541   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines