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

Comparing ray/src/util/rcomb.c (file contents):
Revision 2.2 by greg, Mon Dec 18 23:04:05 2023 UTC vs.
Revision 2.23 by greg, Fri Jun 7 03:55:59 2024 UTC

# Line 3 | Line 3 | static const char RCSid[] = "$Id$";
3   #endif
4   /*
5   * General component matrix combiner, operating on a row at a time.
6 + *
7 + * Multi-processing mode under Unix creates children that each work
8 + * on one input row at a time, fed by the original process.  Final conversion
9 + * and output to stdout is sorted by last child while its siblings send it
10 + * their record calculations.
11   */
12  
8 #include <errno.h>
13   #include <math.h>
14   #include "platform.h"
15 + #include "rtprocess.h"
16   #include "rtio.h"
12 #include "resolu.h"
17   #include "rmatrix.h"
18   #include "calcomp.h"
15 #include "paths.h"
19  
20   #ifndef M_PI
21   #define M_PI    3.14159265358979323846
# Line 55 | Line 58 | int            cur_row;                        /* current input/output row */
58   int             cur_col;                        /* current input/output column */
59   int             cur_chan;                       /* if we're looping channels */
60  
61 < static int      checksymbolic(ROPMAT *rop);
61 > SUBPROC         *cproc = NULL;                  /* child process array */
62 > int             nchildren = 0;                  /* # of child processes */
63 > int             inchild = -1;                   /* our child ID (-1: parent) */
64  
65 < static int
65 > extern int      checksymbolic(ROPMAT *rop);
66 >
67 > int
68   split_input(ROPMAT *rop)
69   {
70          if (rop->rmp == &rop->imx && !(rop->rmp = rmx_copy(&rop->imx))) {
# Line 69 | Line 76 | split_input(ROPMAT *rop)
76   }
77  
78   /* Check/set transform based on a reference input file */
79 < static int
79 > int
80   checkreffile(ROPMAT *rop)
81   {
82          static const char       *curRF = NULL;
# Line 132 | Line 139 | checkreffile(ROPMAT *rop)
139   }
140  
141   /* Compute conversion row from spectrum to one channel of RGB */
142 < static void
142 > void
143   rgbrow(ROPMAT *rop, int r, int p)
144   {
145          const int       nc = rop->imx.ncomp;
# Line 149 | Line 156 | rgbrow(ROPMAT *rop, int r, int p)
156   }
157  
158   /* Compute conversion row from spectrum to one channel of XYZ */
159 < static void
159 > void
160   xyzrow(ROPMAT *rop, int r, int p)
161   {
162          const int       nc = rop->imx.ncomp;
# Line 166 | Line 173 | xyzrow(ROPMAT *rop, int r, int p)
173   }
174  
175   /* Use the spectral sensitivity function to compute matrix coefficients */
176 < static void
176 > void
177   sensrow(ROPMAT *rop, int r, double (*sf)(SCOLOR sc, int ncs, const float wlpt[4]))
178   {
179          const int       nc = rop->imx.ncomp;
# Line 181 | Line 188 | sensrow(ROPMAT *rop, int r, double (*sf)(SCOLOR sc, in
188   }
189  
190   /* Check/set symbolic transform */
191 < static int
191 > int
192   checksymbolic(ROPMAT *rop)
193   {
194          const int       nc = rop->imx.ncomp;
195          const int       dt = rop->imx.dtype;
196 +        double          cf = 1;
197          int             i, j;
198                                          /* check suffix => reference file */
199          if (strchr(rop->preop.csym, '.') > rop->preop.csym)
# Line 206 | Line 214 | checksymbolic(ROPMAT *rop)
214                  int     comp = 0;
215                  switch (rop->preop.csym[j]) {
216                  case 'B':
217 +                case 'b':
218                          ++comp;
219                          /* fall through */
220                  case 'G':
221 +                case 'g':
222                          ++comp;
223                          /* fall through */
224                  case 'R':
225 +                case 'r':
226 +                        if (rop->preop.csym[j] <= 'Z')
227 +                                cf = 1./WHTEFFICACY;
228                          if (dt == DTxyze) {
229                                  for (i = 3; i--; )
230 <                                        rop->preop.cmat[j*nc+i] = 1./WHTEFFICACY *
218 <                                                        xyz2rgbmat[comp][i];
230 >                                        rop->preop.cmat[j*nc+i] = cf*xyz2rgbmat[comp][i];
231                          } else if (nc == 3)
232                                  rop->preop.cmat[j*nc+comp] = 1.;
233                          else
234                                  rgbrow(rop, j, comp);
235                          break;
236                  case 'Z':
237 +                case 'z':
238                          ++comp;
239                          /* fall through */
240                  case 'Y':
241 +                case 'y':
242                          ++comp;
243                          /* fall through */
244                  case 'X':
245 +                case 'x':
246 +                        if ((rop->preop.csym[j] <= 'Z') & (dt != DTxyze))
247 +                                cf = WHTEFFICACY;
248                          if (dt == DTxyze) {
249                                  rop->preop.cmat[j*nc+comp] = 1.;
250                          } else if (nc == 3) {
# Line 239 | Line 256 | checksymbolic(ROPMAT *rop)
256                          else
257                                  xyzrow(rop, j, comp);
258  
259 <                        for (i = nc*(dt != DTxyze); i--; )
260 <                                rop->preop.cmat[j*nc+i] *= WHTEFFICACY;
259 >                        for (i = nc*(cf != 1); i--; )
260 >                                rop->preop.cmat[j*nc+i] *= cf;
261                          break;
262                  case 'S':               /* scotopic (il)luminance */
263 +                        cf = WHTSCOTOPIC;
264 +                        /* fall through */
265 +                case 's':
266                          sensrow(rop, j, scolor2scotopic);
267 <                        for (i = nc; i--; )
268 <                                rop->preop.cmat[j*nc+i] *= WHTSCOTOPIC;
267 >                        for (i = nc*(cf != 1); i--; )
268 >                                rop->preop.cmat[j*nc+i] *= cf;
269                          break;
270                  case 'M':               /* melanopic (il)luminance */
271 +                        cf = WHTMELANOPIC;
272 +                        /* fall through */
273 +                case 'm':
274                          sensrow(rop, j, scolor2melanopic);
275 <                        for (i = nc; i--; )
276 <                                rop->preop.cmat[j*nc+i] *= WHTMELANOPIC;
275 >                        for (i = nc*(cf != 1); i--; )
276 >                                rop->preop.cmat[j*nc+i] *= cf;
277                          break;
278                  case 'A':               /* average component */
279 +                case 'a':
280                          for (i = nc; i--; )
281                                  rop->preop.cmat[j*nc+i] = 1./(double)nc;
282                          break;
# Line 267 | Line 291 | checksymbolic(ROPMAT *rop)
291          memcpy(rop->rmp->wlpart, WLPART, sizeof(rop->rmp->wlpart));
292          rop->rmp->ncomp = rop->preop.clen / nc;
293                                          /* decide on output type */
294 <        if (!strcmp(rop->preop.csym, "XYZ")) {
294 >        if (!strcasecmp(rop->preop.csym, "XYZ")) {
295                  if (dt <= DTspec)
296                          rop->rmp->dtype = DTxyze;
297 <        } else if (!strcmp(rop->preop.csym, "RGB")) {
297 >        } else if (!strcasecmp(rop->preop.csym, "RGB")) {
298                  if (dt <= DTspec)
299                          rop->rmp->dtype = DTrgbe;
300          } else if (rop->rmp->dtype == DTspec)
# Line 278 | Line 302 | checksymbolic(ROPMAT *rop)
302          return(1);
303   }
304  
305 < static int
305 > int
306   get_component_xfm(ROPMAT *rop)
307   {
308          int     i, j;
# Line 361 | Line 385 | get_component_xfm(ROPMAT *rop)
385          return(1);
386   }
387  
388 < static int
388 > int
389   apply_op(RMATRIX *dst, const RMATRIX *src, const RUNARYOP *ro)
390   {
391          if (ro->clen > 0) {
# Line 374 | Line 398 | apply_op(RMATRIX *dst, const RMATRIX *src, const RUNAR
398                          return(0);
399                  rmx_free(res);
400          } else if (dst != src)
401 <                memcpy(dst->mtx, src->mtx,
378 <                                sizeof(double)*dst->ncomp*dst->ncols*dst->nrows);
401 >                memcpy(dst->mtx, src->mtx, rmx_array_size(dst));
402          if (ro->nsf == dst->ncomp)
403                  rmx_scale(dst, ro->sca);
404          return(1);
405   }
406  
407 < static int
407 > int
408   open_input(ROPMAT *rop)
409   {
410          int     outtype;
# Line 403 | Line 426 | open_input(ROPMAT *rop)
426   }
427  
428   /* Return nominal wavelength associated with input component (return nm) */
429 < static double
429 > double
430   l_wavelength(char *nam)
431   {
432          double  comp = argument(1);
# Line 427 | Line 450 | l_wavelength(char *nam)
450   }
451  
452   /* Return ith input with optional channel selector */
453 < static double
453 > double
454   l_chanin(char *nam)
455   {
456          double  inp = argument(1);
# Line 452 | Line 475 | l_chanin(char *nam)
475          return(mop[mi].rmp->mtx[cur_col*in_ncomp + chan]);
476   }
477  
478 < static int
478 > int
479   initialize(RMATRIX *imp)
480   {
481          int     i;
# Line 499 | Line 522 | initialize(RMATRIX *imp)
522          return(1);
523   }
524  
525 < static void
525 > void
526   output_headinfo(FILE *fp)
527   {
528          int     i;
# Line 522 | Line 545 | output_headinfo(FILE *fp)
545          }
546   }
547  
548 < static int
549 < combine_input(ROPMAT *res, FILE *fout)
548 > int
549 > spawned_children(int np)
550   {
551 <        int     set_r, set_c;
552 <        RMATRIX *tmp = NULL;
553 <        int     co_set;
554 <        int     i;
555 <                                        /* allocate input row buffers */
551 >        int     i, rv;
552 >
553 > #if defined(_WIN32) || defined(_WIN64)
554 >        if (np > 1) {
555 >                fputs("Warning: only one process under Windows\n", stderr);
556 >                np = 1;
557 >        } else
558 > #endif
559 >        if ((in_nrows > 0) & (np*4 > in_nrows))
560 >                np = in_nrows/4;
561 >                                /* we'll be doing a row at a time */
562          for (i = 0; i < nmats; i++) {
563 <                mop[i].imx.nrows = 1;   /* we'll be doing a row at a time */
563 >                mop[i].imx.nrows = 1;
564                  if (!rmx_prepare(&mop[i].imx))
565                          goto memerror;
566                  if (mop[i].rmp != &mop[i].imx) {
# Line 540 | Line 569 | combine_input(ROPMAT *res, FILE *fout)
569                                  goto memerror;
570                  }
571          }
572 <                                        /* prep output row buffers */
573 <        if (mcat || res->preop.clen > 0) {
574 <                if (!split_input(res))  /* need separate buffer */
546 <                        return(0);
547 <                if (res->preop.clen > 0)
548 <                        res->rmp->ncomp = res->preop.clen / res->imx.ncomp;
549 <                res->rmp->nrows = 1;
550 <                if (!mcat | !mcat_last && !rmx_prepare(res->rmp))
572 >                                /* prep output row buffer(s) */
573 >        if (mop[nmats].preop.clen > 0) {
574 >                if (!split_input(&mop[nmats]))  /* need separate buffer */
575                          goto memerror;
576 +                mop[nmats].rmp->ncomp = mop[nmats].preop.clen /
577 +                                        mop[nmats].imx.ncomp;
578          }
579 <        if (mcat && mcat_last &&
580 <                        !(tmp = rmx_alloc(1, res->imx.ncols, res->rmp->ncomp)))
579 >        mop[nmats].imx.nrows = 1;
580 >        if (!rmx_prepare(&mop[nmats].imx))
581                  goto memerror;
582 <        res->imx.nrows = 1;
583 <        if (!rmx_prepare(&res->imx))
582 >        if (mop[nmats].rmp != &mop[nmats].imx) {
583 >                mop[nmats].rmp->nrows = 1;
584 >                if (!rmx_prepare(mop[nmats].rmp))
585 >                        goto memerror;
586 >        }
587 >        if (np <= 1) {          /* single process return */
588 > #ifdef getc_unlocked
589 >                for (i = 0; i < nmats; i++)
590 >                        flockfile(mop[i].infp);
591 >                flockfile(stdout);
592 > #endif
593 >                return(0);
594 >        }
595 >        fflush(stdout);         /* flush header & spawn children */
596 >        nchildren = np + 1;     /* extra child to sequence output */
597 >        cproc = (SUBPROC *)malloc(sizeof(SUBPROC)*nchildren);
598 >        if (!cproc)
599                  goto memerror;
600 +        for (i = nchildren; i--; ) cproc[i] = sp_inactive;
601 +        cproc[nchildren-1].flags |= PF_FILT_OUT;
602 +                                /* start each child from parent */
603 +        for (i = 0; i < nchildren; i++)
604 +                if ((rv = open_process(&cproc[i], NULL)) <= 0)
605 +                        break;  /* child breaks here */
606 +        if (rv < 0) {
607 +                perror("fork"); /* WTH? */
608 +                close_processes(cproc, i);
609 +                exit(1);
610 +        }
611 +        if (i != nchildren-1) { /* last child is sole reader */
612 +                int     j = i;
613 +                while (j-- > 0) {
614 +                        close(cproc[j].r);
615 +                        cproc[j].r = -1;
616 +                }
617 +        }
618 +        if (rv > 0)
619 +                return(1);      /* parent return value */
620 +
621 +        inchild = i;            /* else set our child index */
622 +        while (i-- > 0)         /* only parent writes siblings */
623 +                close(cproc[i].w);
624 +
625 +        i = nmats;              /* close matrix streams (carefully) */
626 +        while (i-- > 0) {
627 +                if (mop[i].infp != stdin) {
628 +                        close(fileno(mop[i].infp));     /* avoid lseek() */
629 +                        fclose(mop[i].infp);            /* ! pclose() */
630 +                }
631 +                mop[i].infp = NULL;
632 +        }
633 +        fpurge(stdin);          /* discard previously buffered input */
634 +
635 +        if (inchild == nchildren-1)
636 +                return(-1);     /* output process return value */
637 +
638 +        i = nmats;              /* get matrix rows from parent */
639 +        while (i-- > 0) {
640 +                mop[i].infp = stdin;
641 +                mop[i].imx.dtype = DTrmx_native;
642 +                mop[i].imx.pflags &= ~RMF_SWAPIN;
643 +        }
644 + #ifdef getc_unlocked
645 +        flockfile(stdin);
646 + #endif
647 +        mop[nmats].rmp->dtype = DTrmx_native;
648 +        return(0);              /* worker child return value */
649 + memerror:
650 +        fputs("Out of memory in spawned_children()\n", stderr);
651 +        exit(1);
652 + }
653 +
654 + int
655 + parent_loop(void)
656 + {
657 +        int     i;
658 +
659 +        rmx_reset(&mop[nmats].imx);             /* not touching output side */
660 +        if (mop[nmats].rmp != &mop[nmats].imx) {
661 +                rmx_free(mop[nmats].rmp);
662 +                mop[nmats].rmp = &mop[nmats].imx;
663 +        }
664 + #ifdef getc_unlocked
665 +        for (i = 0; i < nmats; i++)             /* we handle matrix inputs */
666 +                flockfile(mop[i].infp);
667 + #endif
668 +                                                /* load & send rows to kids */
669 +        for (cur_row = 0; (in_nrows <= 0) | (cur_row < in_nrows); cur_row++) {
670 +            int         wfd = cproc[cur_row % (nchildren-1)].w;
671 +            for (i = 0; i < nmats; i++)
672 +                if (!rmx_load_row(mop[i].imx.mtx, &mop[i].imx, mop[i].infp)) {
673 +                        if (cur_row > in_nrows) /* unknown #input rows? */
674 +                                break;
675 +                        fprintf(stderr, "%s: parent_loop() load error at row %d\n",
676 +                                        mop[i].inspec, cur_row);
677 +                        return(0);
678 +                }
679 +            if (i < nmats)
680 +                break;
681 +            for (i = 0; i < nmats; i++)
682 +                if (writebuf(wfd, mop[i].imx.mtx, rmx_array_size(&mop[i].imx))
683 +                                        != rmx_array_size(&mop[i].imx)) {
684 +                        fprintf(stderr, "%s: parent_loop() write error at row %d\n",
685 +                                        mop[i].inspec, cur_row);
686 +                        return(0);
687 +                }
688 +        }
689 +        i = close_processes(cproc, nchildren);  /* collect family */
690 +        free(cproc); cproc = NULL; nchildren = 0;
691 +        if (i < 0) {
692 +                fputs("Warning: lost child in parent_loop()\n", stderr);
693 +                return(1);
694 +        }
695 +        if (i > 0) {
696 +                fprintf(stderr, "Child exited with status %d\n", i);
697 +                return(0);
698 +        }
699 +        return(1);                              /* return success! */
700 + }
701 +
702 + int
703 + combine_input(void)
704 + {
705 +        const int       row0 = (inchild >= 0)*inchild;
706 +        const int       rstep = nchildren ? nchildren-1 : 1;
707 +        ROPMAT          *res = &mop[nmats];
708 +        int             set_r, set_c;
709 +        RMATRIX         *tmp = NULL;
710 +        int             co_set;
711 +        int             i;
712 +
713 +        if (mcat_last && !(tmp = rmx_alloc(1, res->imx.ncols, res->rmp->ncomp))) {
714 +                fputs("Out of buffer space in combine_input()\n", stderr);
715 +                return(0);
716 +        }
717                                          /* figure out what the user set */
718          co_set = fundefined("co");
719          if (!co_set)
# Line 571 | Line 729 | combine_input(ROPMAT *res, FILE *fout)
729          } else                          /* save a little time */
730                  set_r = set_c = 0;
731                                          /* read/process row-by-row */
732 <        for (cur_row = 0; (in_nrows <= 0) | (cur_row < in_nrows); cur_row++) {
732 >        for (cur_row = row0; (in_nrows <= 0) | (cur_row < in_nrows); cur_row += rstep) {
733              RMATRIX     *mres = NULL;
734 <            for (i = 0; i < nmats; i++) {
734 >            for (i = 0; i < nmats; i++)
735                  if (!rmx_load_row(mop[i].imx.mtx, &mop[i].imx, mop[i].infp)) {
736 <                        if (in_nrows <= 0)      /* normal end? */
737 <                                goto loop_exit;
738 <                        fprintf(stderr, "%s: read error at row %d\n",
736 >                        if (cur_row > in_nrows) /* unknown #input rows? */
737 >                                break;
738 >                        fprintf(stderr, "%s: combine_input() load error at row %d\n",
739                                          mop[i].inspec, cur_row);
740                          return(0);
741                  }
742 +            if (i < nmats)
743 +                break;
744 +            for (i = 0; i < nmats; i++)
745                  if (!apply_op(mop[i].rmp, &mop[i].imx, &mop[i].preop))
746                          return(0);
586            }
747              if (set_r) varset("r", '=', cur_row);
748              for (cur_col = 0; cur_col < in_ncols; cur_col++) {
749                  if (set_c) varset("c", '=', cur_col);
# Line 621 | Line 781 | combine_input(ROPMAT *res, FILE *fout)
781              }
782              rmx_free(mres); mres = NULL;
783              if (!rmx_write_data(res->rmp->mtx, res->rmp->ncomp,
784 <                                res->rmp->ncols, res->rmp->dtype, fout))
784 >                                res->rmp->ncols, res->rmp->dtype, stdout) ||
785 >                                 (inchild >= 0 && fflush(stdout) == EOF)) {
786 >                fprintf(stderr, "Conversion/write error at row %d in combine_input()\n",
787 >                                cur_row);
788                  return(0);
789 +            }
790          }
791 < loop_exit:
628 < #if 0           /* we're about to exit, so who cares? */
629 <        rmx_free(tmp);                  /* clean up */
630 <        rmx_reset(res->rmp);
631 <        rmx_reset(&res->imx);
632 <        for (i = 0; i < nmats; i++) {
633 <                rmx_reset(mop[i].rmp);
634 <                rmx_reset(&mop[i].imx);
635 <                if (mop[i].inspec[0] == '!')
636 <                        pclose(mop[i].infp);
637 <                else if (mop[i].inspec != stdin_name)
638 <                        fclose(mop[i].infp);
639 <                mop[i].infp = NULL;
640 <        }
641 < #endif
642 <        return(fflush(fout) != EOF);
643 < memerror:
644 <        fputs("Out of buffer space in combine_input()\n", stderr);
645 <        return(0);
791 >        return(inchild >= 0 || fflush(stdout) != EOF);
792   multerror:
793          fputs("Unexpected matrix multiply error in combine_input()\n", stderr);
794          return(0);
795   }
796  
797 < static int
797 > int
798 > output_loop(void)
799 > {
800 >        const size_t    row_size = rmx_array_size(mop[nmats].rmp);
801 >        int             cur_child = 0;
802 >        int             i = nmats;
803 >
804 >        while (i-- > 0) {                               /* free input buffers */
805 >                rmx_reset(&mop[i].imx);
806 >                if (mop[i].rmp != &mop[i].imx) {
807 >                        rmx_free(mop[i].rmp);
808 >                        mop[i].rmp = &mop[i].imx;
809 >                }
810 >        }
811 >        if (mop[nmats].rmp != &mop[nmats].imx)          /* output is split? */
812 >                rmx_reset(&mop[nmats].imx);
813 > #ifdef getc_unlocked
814 >        flockfile(stdout);                              /* we own this, now */
815 > #endif
816 >        for ( ; ; ) {                                   /* loop until no more */
817 >                ssize_t         rv;
818 >                rv = readbuf(cproc[cur_child].r, mop[nmats].rmp->mtx, row_size);
819 >                if (!rv)                                /* out of rows? */
820 >                        break;
821 >                if (rv != row_size) {
822 >                        fputs("Read error in output_loop()\n", stderr);
823 >                        return(0);
824 >                }                                       /* do final conversion */
825 >                if (!rmx_write_data(mop[nmats].rmp->mtx, mop[nmats].rmp->ncomp,
826 >                                mop[nmats].rmp->ncols, mop[nmats].rmp->dtype, stdout)) {
827 >                        fputs("Conversion/write error in output_loop()\n", stderr);
828 >                        return(0);
829 >                }
830 >                cur_child++;
831 >                cur_child *= (cur_child < inchild);     /* loop over workers */
832 >        }
833 >        return(fflush(stdout) != EOF);
834 > }
835 >
836 > int
837   get_factors(double da[], int n, char *av[])
838   {
839          int     ac;
# Line 658 | Line 843 | get_factors(double da[], int n, char *av[])
843          return(ac);
844   }
845  
846 < static void
846 > void
847   resize_inparr(int n2alloc)
848   {
849          int     i;
850  
851 <        for (i = nmats; i > n2alloc; i--) {
851 >        if (n2alloc == nall)
852 >                return;
853 >        for (i = nall; i > n2alloc; i--) {
854                  rmx_reset(&mop[i].imx);
855                  if (mop[i].rmp != &mop[i].imx)
856                          rmx_free(mop[i].rmp);
# Line 673 | Line 860 | resize_inparr(int n2alloc)
860                  fputs("Out of memory in resize_inparr()\n", stderr);
861                  exit(1);
862          }
863 <        if (n2alloc > nmats)
864 <                memset(mop+nmats, 0, (n2alloc-nmats)*sizeof(ROPMAT));
863 >        if (n2alloc > nall)
864 >                memset(mop+nall, 0, (n2alloc-nall)*sizeof(ROPMAT));
865          nall = n2alloc;
866   }
867  
# Line 687 | Line 874 | main(int argc, char *argv[])
874          const char      *defCsym = NULL;
875          int             echoheader = 1;
876          int             stdin_used = 0;
877 +        int             nproc = 1;
878          const char      *mcat_spec = NULL;
879          int             n2comp = 0;
880          uby8            comp_ndx[128];
# Line 714 | Line 902 | main(int argc, char *argv[])
902                          case 'h':
903                                  echoheader = !echoheader;
904                                  break;
905 +                        case 'n':
906 +                                nproc = atoi(argv[++i]);
907 +                                if (nproc <= 0)
908 +                                        goto userr;
909 +                                break;
910                          case 'e':
911                                  if (!n) goto userr;
912                                  comp_ndx[n2comp++] = i++;
# Line 752 | Line 945 | main(int argc, char *argv[])
945                                  }
946                                  break;
947                          case 'C':
948 +                                mcat_last = 0;
949                                  if (!n || isflt(argv[i+1]))
950                                          goto userr;
951                                  defCsym = mop[nmats].preop.csym = argv[++i];
952                                  mop[nmats].preop.clen = 0;
759                                mcat_last = 0;
953                                  break;
954                          case 'c':
955 +                                mcat_last = 0;
956                                  if (n && !isflt(argv[i+1])) {
957                                          mop[nmats].preop.csym = argv[++i];
958                                          mop[nmats].preop.clen = 0;
# Line 774 | Line 968 | main(int argc, char *argv[])
968                                          goto userr;
969                                  }
970                                  mop[nmats].preop.csym = NULL;
777                                mcat_last = 0;
971                                  break;
972                          case 'm':
973 +                                mcat_last = 1;
974                                  if (!n) goto userr;
975                                  if (argv[++i][0] == '-' && !argv[i][1]) {
976                                          if (stdin_used++) goto stdin_error;
977                                          mcat_spec = stdin_name;
978                                  } else
979                                          mcat_spec = argv[i];
786                                mcat_last = 1;
980                                  break;
981                          default:
982                                  fprintf(stderr, "%s: unknown option '%s'\n",
# Line 851 | Line 1044 | main(int argc, char *argv[])
1044                  fprintf(stderr, "%s: unsupported output format\n", argv[0]);
1045                  return(1);
1046          }
1047 <                                        /* process & write rows */
1048 <        return(combine_input(&mop[nmats], stdout) ? 0 : 1);
1047 >        doptimize(1);                   /* optimize definitions */
1048 >        i = spawned_children(nproc);    /* create multiple processes if requested */
1049 >        if (i > 0)                      /* running in parent process? */
1050 >                return(parent_loop() ? 0 : 1);
1051 >        if (i < 0)                      /* running in output process? */
1052 >                return(output_loop() ? 0 : 1);
1053 >                                        /* else we are a worker process */
1054 >        return(combine_input() ? 0 : 1);
1055   stdin_error:
1056          fprintf(stderr, "%s: %s used for more than one input\n",
1057                          argv[0], stdin_name);
1058          return(1);
1059   userr:
1060          fprintf(stderr,
1061 <        "Usage: %s [-h][-f{adfc}][-e expr][-f file][-s sf .. | -c ce ..] m1 .. -m mcat > mres\n",
1061 >        "Usage: %s [-h][-f{adfc}][-n nproc][-e expr][-f file][-s sf .. | -c ce ..] m1 .. -m mcat > mres\n",
1062                          argv[0]);
1063          return(1);
1064   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines