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.37 by gregl, Fri Jan 16 11:45:43 1998 UTC vs.
Revision 3.48 by gwlarson, Tue Feb 2 16:13:24 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 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
20 + #ifndef FRAGWARN
21 + #define FRAGWARN        20              /* fragmentation for warning (%) */
22 + #endif
23   #ifndef MAXQTIME
24   #define MAXQTIME        5               /* target maximum seconds in queue */
25   #endif
# Line 26 | Line 32 | char   *progname;              /* our program name */
32   char    *hdkfile;               /* holodeck file name */
33   char    froot[256];             /* root file name */
34  
29 int     nowarn = 0;             /* turn warnings off? */
30
35   int     ncprocs = 0;            /* desired number of compute processes */
36  
37   char    *outdev = NULL;         /* output device name */
# Line 51 | Line 55 | long   nraysdone = 0L;         /* number of rays done */
55   long    npacksdone = 0L;        /* number of packets done */
56  
57   PACKET  *freepacks;             /* available packets */
58 < int     avgqlen;                /* average queue length when full */
58 > int     totqlen;                /* maximum queue length when full */
59  
60   char  *sigerr[NSIG];            /* signal error messages */
61  
62 + extern int      nowarn;         /* turn warnings off? */
63 +
64   extern time_t   time();
65  
66  
# Line 144 | Line 150 | int  signo;
150   {
151          static int  gotsig = 0;
152  
153 <        if (gotsig++)                   /* two signals and we're gone! */
153 >        if (gotsig > 1)                 /* we're going as fast as we can! */
154 >                return;
155 >        if (gotsig++) {                 /* two signals and we split */
156 >                hdsync(NULL, 0);        /* don't leave w/o saying goodbye */
157                  _exit(signo);
158 <
159 <        alarm(60);                      /* allow 60 seconds to clean up */
151 <        signal(SIGALRM, SIG_DFL);       /* make certain we do die */
158 >        }
159 >        alarm(300);                     /* allow 5 minutes to clean up */
160          eputs("signal - ");
161          eputs(sigerr[signo]);
162          eputs("\n");
# Line 222 | Line 230 | initrholo()                    /* get our holodeck running */
230                  endtime = starttime + vflt(TIME)*3600. + .5;
231                                                  /* start rtrace */
232          if (ncprocs > 0) {
233 <                i = start_rtrace();
233 >                totqlen = i = start_rtrace();
234                  if (i < 1)
235                          error(USER, "cannot start rtrace process(es)");
236                  if (vdef(REPORT)) {             /* make first report */
# Line 233 | Line 241 | initrholo()                    /* get our holodeck running */
241                  freepacks = (PACKET *)bmalloc(i*sizeof(PACKET));
242                  if (freepacks == NULL)
243                          goto memerr;
236                if (!(avgqlen = i/nprocs))      /* record mean queue length */
237                        avgqlen = 1;
244                  freepacks[--i].nr = 0;
245                  freepacks[i].next = NULL;
246                  if (!vdef(OBSTRUCTIONS) || !vbool(OBSTRUCTIONS)) {
# Line 271 | Line 277 | memerr:
277  
278   rholo()                         /* holodeck main loop */
279   {
280 +        static long     nextfragwarn = 100*(1L<<20);
281          static int      idle = 0;
282          PACKET  *pl = NULL, *plend;
283 +        long    fsiz;
284          int     pksiz;
285          register PACKET *p;
286          time_t  t;
# Line 286 | Line 294 | rholo()                                /* holodeck main loop */
294                          return(1);
295          } else if (idle)
296                  return(0);              /* all done */
297 <                                        /* check file size */
298 <        if (maxdisk > 0 && hdfilen(hdlist[0]->fd) >= maxdisk) {
297 >        fsiz = hdfilen(hdlist[0]->fd);  /* check file size */
298 >        if (maxdisk > 0 && fsiz >= maxdisk) {
299                  error(WARNING, "file limit exceeded");
300                  done_rtrace();
301                  return(1);      /* comes back */
302          }
303 + #if FRAGWARN
304 +        if (fsiz >= nextfragwarn &&
305 +                (fsiz-hdfiluse(hdlist[0]->fd,0))/(fsiz/100) > FRAGWARN) {
306 +                sprintf(errmsg, "holodeck file fragmentation is %.0f%%",
307 +                                100.*(fsiz-hdfiluse(hdlist[0]->fd,1))/fsiz);
308 +                error(WARNING, errmsg);
309 +                nextfragwarn = fsiz + (fsiz>>2);        /* decent interval */
310 +        }
311 + #endif
312          t = time(NULL);                 /* check time */
313          if (endtime > 0 && t >= endtime) {
314                  error(WARNING, "time limit exceeded");
# Line 301 | Line 318 | rholo()                                /* holodeck main loop */
318          if (reporttime > 0 && t >= reporttime)
319                  report(t);
320                                          /* figure out good packet size */
321 +        pksiz = RPACKSIZ;
322   #if MAXQTIME
323 <        pksiz = nraysdone*MAXQTIME/(avgqlen*(t - starttime + 1L));
324 <        if (pksiz < 1)
325 <                pksiz = 1;
326 <        else if (pksiz > RPACKSIZ)
323 >        if (!chunkycmp) {
324 >                pksiz = nraysdone*MAXQTIME/(totqlen*(t - starttime + 1L));
325 >                if (pksiz < 1) pksiz = 1;
326 >                else if (pksiz > RPACKSIZ) pksiz = RPACKSIZ;
327 >        }
328   #endif
310                pksiz = RPACKSIZ;
329          idle = 0;                       /* get packets to process */
330          while (freepacks != NULL) {
331                  p = freepacks; freepacks = p->next; p->next = NULL;
# Line 369 | Line 387 | register HDGRID        *gp;
387                  for (i = 0; i < 3; i++)
388                          len[i] = VLEN(gp->xv[i]);
389                  if (!vdef(GRID)) {
390 <                        d = 2/5e5*( len[0]*len[0]*(len[1]*len[1] +
390 >                        d = 2/2e5*( len[0]*len[0]*(len[1]*len[1] +
391                                          len[2]*len[2] + 4*len[1]*len[2])
392                                  + len[1]*len[1]*len[2]*(len[2] + 4*len[0])
393                                  + 4*len[0]*len[1]*len[2]*len[2] );
# Line 422 | Line 440 | HDGRID *gp;
440   }
441  
442  
443 + int
444   headline(s)                     /* process information header line */
445   char    *s;
446   {
# Line 435 | Line 454 | char   *s;
454                                          HOLOFMT, hdkfile, FMTSTR, fmt);
455                          error(USER, errmsg);
456                  }
457 <                return;
457 >                return(0);
458          }
459          for (cp = s; *cp; cp++)         /* take off any comments */
460                  if (*cp == '#') {
# Line 443 | Line 462 | char   *s;
462                          break;
463                  }
464          setvariable(s, matchvar);       /* don't flag errors */
465 +        return(0);
466   }
467  
468  
# Line 455 | Line 475 | loadholo()                     /* start loading a holodeck from fname */
475          int4    nextloc;
476                                          /* open holodeck file */
477          if ((fp = fopen(hdkfile, ncprocs>0 ? "r+" : "r")) == NULL) {
478 <                sprintf(errmsg, "cannot open \"%s\" for %s", hdkfile,
479 <                                ncprocs>0 ? "appending" : "reading");
478 >                sprintf(errmsg, "cannot %s \"%s\"",
479 >                                ncprocs>0 ? "append" : "read", hdkfile);
480                  error(SYSTEM, errmsg);
481          }
482                                          /* load variables from header */
# Line 497 | Line 517 | PACKET *pl;
517                                  p->nr*sizeof(RAYVAL));
518                          if (outdev != NULL)     /* display it */
519                                  disp_packet((PACKHEAD *)p);
520 <                        if (hdcachesize <= 0)   /* manual flushing */
520 >                        if (hdcachesize <= 0) {
521 > #if RTFLUSH
522 >                                if (outdev == NULL)
523 >                                        hdfreebeam(hdlist[p->hd], p->bi);
524 > #endif
525                                  n2flush++;
526 +                        }
527                          nraysdone += p->nr;
528                          npacksdone++;
529                          p->nr = 0;
# Line 506 | Line 531 | PACKET *pl;
531                  p->next = freepacks;            /* push onto free list */
532                  freepacks = p;
533          }
534 <        if (n2flush > 300/MAXQTIME*avgqlen*nprocs) {
535 <                hdflush(NULL);                  /* flush holodeck buffers */
534 > #if MAXQTIME
535 >        if (n2flush > 300/MAXQTIME*totqlen) {
536 > #else
537 >        if (n2flush > 50*totqlen) {
538 > #endif
539 > #if RTFLUSH
540 >                hdsync(NULL, outdev!=NULL);     /* sync beams & directories */
541 > #else
542 >                if (outdev != NULL)
543 >                        hdsync(NULL, 1);
544 >                else
545 >                        hdflush(NULL);
546 > #endif
547                  n2flush = 0;
548          }
549   }
# Line 552 | Line 588 | register char  *s;
588                  fflush(stderr);
589                  midline = 0;
590          }
555 }
556
557
558 wputs(s)                        /* put warning string to stderr */
559 char    *s;
560 {
561        if (!nowarn)
562                eputs(s);
591   }
592  
593  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines