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.44 by gwlarson, Wed Dec 30 08:02:37 1998 UTC vs.
Revision 3.50 by gwlarson, Tue Mar 9 08:51:39 1999 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1998 Silicon Graphics, Inc. */
1 > /* Copyright (c) 1999 Silicon Graphics, Inc. */
2  
3   #ifndef lint
4   static char SCCSid[] = "$SunId$ SGI";
# Line 11 | Line 11 | static char SCCSid[] = "$SunId$ SGI";
11   #include "rholo.h"
12   #include "random.h"
13   #include <signal.h>
14 #include <sys/types.h>
14   #include <sys/stat.h>
15  
16   #ifndef FRAGWARN
# Line 20 | Line 19 | static char SCCSid[] = "$SunId$ SGI";
19   #ifndef MAXQTIME
20   #define MAXQTIME        5               /* target maximum seconds in queue */
21   #endif
22 +                                        /* manual cache flushing frequency */
23 + #ifndef RTFLUSH
24 + #if MAXQTIME
25 + #define RTFLUSH         (300/MAXQTIME*totqlen)  /* <= 5 minutes */
26 + #else
27 + #define RTFLUSH         (50*totqlen)            /* just guess */
28 + #endif
29 + #endif
30                          /* the following must be consistent with rholo.h */
31   int     NVARS = NRHVARS;                /* total number of variables */
32  
# Line 52 | Line 59 | long   nraysdone = 0L;         /* number of rays done */
59   long    npacksdone = 0L;        /* number of packets done */
60  
61   PACKET  *freepacks;             /* available packets */
62 < int     totqlen;                /* maximum queue length when full */
62 > int     totqlen;                /* maximum queue length (number of packets) */
63  
64   char  *sigerr[NSIG];            /* signal error messages */
65  
# Line 147 | Line 154 | int  signo;
154   {
155          static int  gotsig = 0;
156  
157 <        if (gotsig++)                   /* two signals and we're gone! */
157 >        if (gotsig > 1)                 /* we're going as fast as we can! */
158 >                return;
159 >        if (gotsig++) {                 /* two signals and we split */
160 >                hdsync(NULL, 0);        /* don't leave w/o saying goodbye */
161                  _exit(signo);
162 <
163 <        alarm(60);                      /* allow 60 seconds to clean up */
154 <        signal(SIGALRM, SIG_DFL);       /* make certain we do die */
162 >        }
163 >        alarm(300);                     /* allow 5 minutes to clean up */
164          eputs("signal - ");
165          eputs(sigerr[signo]);
166          eputs("\n");
# Line 207 | Line 216 | initrholo()                    /* get our holodeck running */
216                  maxdisk = 1024.*1024.*vflt(DISKSPACE);
217                                                  /* set up memory cache */
218          if (outdev == NULL)
219 <                hdcachesize = 0;        /* manual flushing */
219 >                hdcachesize = 0;                /* manual flushing */
220          else if (vdef(CACHE))
221                  hdcachesize = 1024.*1024.*vflt(CACHE);
222                                                  /* open report file */
# Line 262 | Line 271 | initrholo()                    /* get our holodeck running */
271          sigdie(SIGXCPU, "CPU limit exceeded");
272          sigdie(SIGXFSZ, "File size exceeded");
273   #endif
274 <                                                /* protect holodeck file */
274 >                                        /* protect holodeck file */
275          orig_mode = resfmode(hdlist[0]->fd, ncprocs>0 ? 0 : 0444);
276          return;
277   memerr:
# Line 313 | Line 322 | rholo()                                /* holodeck main loop */
322          if (reporttime > 0 && t >= reporttime)
323                  report(t);
324                                          /* figure out good packet size */
325 +        pksiz = RPACKSIZ;
326   #if MAXQTIME
327 <        pksiz = nraysdone*MAXQTIME/(totqlen*(t - starttime + 1L));
328 <        if (pksiz < 1)
329 <                pksiz = 1;
330 <        else if (pksiz > RPACKSIZ)
327 >        if (!chunkycmp) {
328 >                pksiz = nraysdone*MAXQTIME/(totqlen*(t - starttime + 1L));
329 >                if (pksiz < 1) pksiz = 1;
330 >                else if (pksiz > RPACKSIZ) pksiz = RPACKSIZ;
331 >        }
332   #endif
322                pksiz = RPACKSIZ;
333          idle = 0;                       /* get packets to process */
334          while (freepacks != NULL) {
335                  p = freepacks; freepacks = p->next; p->next = NULL;
# Line 511 | Line 521 | PACKET *pl;
521                                  p->nr*sizeof(RAYVAL));
522                          if (outdev != NULL)     /* display it */
523                                  disp_packet((PACKHEAD *)p);
524 <                        if (hdcachesize <= 0)   /* manual flushing */
524 >                        if (hdcachesize <= 0)
525                                  n2flush++;
526                          nraysdone += p->nr;
527                          npacksdone++;
# Line 520 | Line 530 | PACKET *pl;
530                  p->next = freepacks;            /* push onto free list */
531                  freepacks = p;
532          }
533 < #if MAXQTIME
534 <        if (n2flush > 300/MAXQTIME*totqlen) {
535 < #else
526 <        if (n2flush > 50*totqlen) {
527 < #endif
528 <                if (outdev == NULL)
529 <                        hdflush(NULL);          /* flush holodeck buffers */
533 >        if (n2flush >= RTFLUSH) {
534 >                if (outdev != NULL)
535 >                        hdsync(NULL, 1);
536                  else
537 <                        hdsync(NULL, 1);        /* sync holodeck file */
537 >                        hdflush(NULL);
538                  n2flush = 0;
539          }
540   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines