1 |
|
#ifndef lint |
2 |
|
static const char RCSid[] = "$Id$"; |
3 |
|
#endif |
4 |
+ |
|
5 |
|
/* |
6 |
< |
================================================================== |
7 |
< |
Photon map support for light source contributions |
6 |
> |
====================================================================== |
7 |
> |
Photon map for light source contributions |
8 |
|
|
9 |
|
Roland Schregle (roland.schregle@{hslu.ch, gmail.com}) |
10 |
|
(c) Lucerne University of Applied Sciences and Arts, |
11 |
< |
supported by the Swiss National Science Foundation (SNSF, #147053) |
12 |
< |
================================================================== |
11 |
> |
supported by the Swiss National Science Foundation (SNSF, #147053) |
12 |
> |
====================================================================== |
13 |
|
|
14 |
|
$Id$ |
15 |
|
*/ |
16 |
|
|
17 |
|
|
18 |
|
#include "pmapcontrib.h" |
18 |
– |
#include "pmap.h" |
19 |
|
#include "pmapmat.h" |
20 |
|
#include "pmapsrc.h" |
21 |
|
#include "pmaprand.h" |
23 |
|
#include "pmapdiag.h" |
24 |
|
#include "rcontrib.h" |
25 |
|
#include "otypes.h" |
26 |
+ |
#if NIX |
27 |
+ |
#include <sys/mman.h> |
28 |
+ |
#include <sys/wait.h> |
29 |
+ |
#endif |
30 |
|
|
31 |
|
|
32 |
< |
|
33 |
< |
static void setPmapContribParams (PhotonMap *pmap, LUTAB *srcContrib) |
34 |
< |
/* Set parameters for light source contributions */ |
32 |
> |
static PhotonPrimaryIdx newPhotonPrimary (PhotonMap *pmap, |
33 |
> |
const RAY *primRay, |
34 |
> |
FILE *primHeap) |
35 |
> |
/* Add primary ray for emitted photon and save light source index, origin on |
36 |
> |
* source, and emitted direction; used by contrib photons. The current |
37 |
> |
* primary is stored in pmap -> lastPrimary. If the previous primary |
38 |
> |
* contributed photons (has srcIdx >= 0), it's appended to primHeap. If |
39 |
> |
* primRay == NULL, the current primary is still flushed, but no new primary |
40 |
> |
* is set. Returns updated primary counter pmap -> numPrimary. */ |
41 |
|
{ |
42 |
< |
/* Set light source modifier list and appropriate callback to extract |
43 |
< |
* their contributions from the photon map */ |
44 |
< |
if (pmap) { |
45 |
< |
pmap -> srcContrib = srcContrib; |
46 |
< |
pmap -> lookup = photonContrib; |
47 |
< |
/* Ensure we get all requested photon contribs during lookups */ |
48 |
< |
pmap -> gatherTolerance = 1.0; |
42 |
> |
if (!pmap || !primHeap) |
43 |
> |
return 0; |
44 |
> |
|
45 |
> |
/* Check if last primary ray has spawned photons (srcIdx >= 0, see |
46 |
> |
* newPhoton()), in which case we save it to the primary heap file |
47 |
> |
* before clobbering it */ |
48 |
> |
if (pmap -> lastPrimary.srcIdx >= 0) { |
49 |
> |
if (!fwrite(&pmap -> lastPrimary, sizeof(PhotonPrimary), 1, primHeap)) |
50 |
> |
error(SYSTEM, "failed writing photon primary in newPhotonPrimary"); |
51 |
> |
|
52 |
> |
pmap -> numPrimary++; |
53 |
> |
if (pmap -> numPrimary > PMAP_MAXPRIMARY) |
54 |
> |
error(INTERNAL, "photon primary overflow in newPhotonPrimary"); |
55 |
|
} |
40 |
– |
} |
56 |
|
|
57 |
+ |
/* Mark unused with negative source index until path spawns a photon (see |
58 |
+ |
* newPhoton()) */ |
59 |
+ |
pmap -> lastPrimary.srcIdx = -1; |
60 |
+ |
|
61 |
+ |
if (primRay) { |
62 |
+ |
FVECT dvec; |
63 |
|
|
64 |
< |
|
65 |
< |
static void checkPmapContribs (const PhotonMap *pmap, LUTAB *srcContrib) |
66 |
< |
/* Check modifiers for light source contributions */ |
67 |
< |
{ |
68 |
< |
const PhotonPrimary *primary = pmap -> primary; |
69 |
< |
OBJREC *srcMod; |
70 |
< |
unsigned long i, found = 0; |
71 |
< |
|
72 |
< |
/* Make sure at least one of the modifiers is actually in the pmap, |
73 |
< |
* otherwise findPhotons() winds up in an infinite loop! */ |
53 |
< |
for (i = pmap -> primarySize; i; --i, ++primary) { |
54 |
< |
if (primary -> srcIdx < 0 || primary -> srcIdx >= nsources) |
55 |
< |
error(INTERNAL, "invalid light source index in photon map"); |
56 |
< |
|
57 |
< |
srcMod = findmaterial(source [primary -> srcIdx].so); |
58 |
< |
if ((MODCONT*)lu_find(srcContrib, srcMod -> oname) -> data) |
59 |
< |
++found; |
64 |
> |
#ifdef PMAP_PRIMARYDIR |
65 |
> |
/* Reverse incident direction to point to light source */ |
66 |
> |
dvec [0] = -primRay -> rdir [0]; |
67 |
> |
dvec [1] = -primRay -> rdir [1]; |
68 |
> |
dvec [2] = -primRay -> rdir [2]; |
69 |
> |
pmap -> lastPrimary.dir = encodedir(dvec); |
70 |
> |
#endif |
71 |
> |
#ifdef PMAP_PRIMARYPOS |
72 |
> |
VCOPY(pmap -> lastPrimary.pos, primRay -> rop); |
73 |
> |
#endif |
74 |
|
} |
75 |
|
|
76 |
< |
if (!found) |
63 |
< |
error(USER, "modifiers not in photon map"); |
76 |
> |
return pmap -> numPrimary; |
77 |
|
} |
65 |
– |
|
66 |
– |
|
78 |
|
|
79 |
< |
void initPmapContrib (LUTAB *srcContrib, unsigned numSrcContrib) |
79 |
> |
|
80 |
> |
|
81 |
> |
#ifdef DEBUG_PMAP |
82 |
> |
static int checkPrimaryHeap (FILE *file) |
83 |
> |
/* Check heap for ordered primaries */ |
84 |
|
{ |
85 |
< |
unsigned t; |
85 |
> |
Photon p, lastp; |
86 |
> |
int i, dup; |
87 |
|
|
88 |
< |
for (t = 0; t < NUM_PMAP_TYPES; t++) |
89 |
< |
if (photonMaps [t] && t != PMAP_TYPE_CONTRIB) { |
74 |
< |
sprintf(errmsg, "%s photon map does not support contributions", |
75 |
< |
pmapName [t]); |
76 |
< |
error(USER, errmsg); |
77 |
< |
} |
88 |
> |
rewind(file); |
89 |
> |
memset(&lastp, 0, sizeof(lastp)); |
90 |
|
|
91 |
< |
/* Get params */ |
92 |
< |
setPmapContribParams(contribPmap, srcContrib); |
93 |
< |
|
94 |
< |
if (contribPhotonMapping) { |
95 |
< |
if (contribPmap -> maxGather < numSrcContrib) { |
96 |
< |
/* Adjust density estimate bandwidth if lower than modifier |
97 |
< |
* count, otherwise contributions are missing */ |
98 |
< |
error(WARNING, "contrib density estimate bandwidth too low, " |
99 |
< |
"adjusting to modifier count"); |
100 |
< |
contribPmap -> maxGather = numSrcContrib; |
91 |
> |
while (fread(&p, sizeof(p), 1, file)) { |
92 |
> |
dup = 1; |
93 |
> |
|
94 |
> |
for (i = 0; i <= 2; i++) { |
95 |
> |
if (p.pos [i] < thescene.cuorg [i] || |
96 |
> |
p.pos [i] > thescene.cuorg [i] + thescene.cusize) { |
97 |
> |
|
98 |
> |
sprintf(errmsg, "corrupt photon in heap at [%f, %f, %f]\n", |
99 |
> |
p.pos [0], p.pos [1], p.pos [2]); |
100 |
> |
error(WARNING, errmsg); |
101 |
> |
} |
102 |
> |
|
103 |
> |
dup &= p.pos [i] == lastp.pos [i]; |
104 |
|
} |
105 |
|
|
106 |
< |
/* Sanity check */ |
107 |
< |
checkPmapContribs(contribPmap, srcContrib); |
106 |
> |
if (dup) { |
107 |
> |
sprintf(errmsg, |
108 |
> |
"consecutive duplicate photon in heap at [%f, %f, %f]\n", |
109 |
> |
p.pos [0], p.pos [1], p.pos [2]); |
110 |
> |
error(WARNING, errmsg); |
111 |
> |
} |
112 |
|
} |
113 |
+ |
|
114 |
+ |
return 0; |
115 |
|
} |
116 |
+ |
#endif |
117 |
|
|
118 |
|
|
119 |
|
|
120 |
< |
void photonContrib (PhotonMap *pmap, RAY *ray, COLOR irrad) |
121 |
< |
/* Sum up light source contributions from photons in pmap->srcContrib */ |
120 |
> |
static PhotonPrimaryIdx buildPrimaries (PhotonMap *pmap, FILE **primaryHeap, |
121 |
> |
char **primaryHeapFname, |
122 |
> |
PhotonPrimaryIdx *primaryOfs, |
123 |
> |
unsigned numHeaps) |
124 |
> |
/* Consolidate per-subprocess photon primary heaps into the primary array |
125 |
> |
* pmap -> primaries. Returns offset for primary index linearisation in |
126 |
> |
* numPrimary. The heap files in primaryHeap are closed on return. */ |
127 |
|
{ |
128 |
< |
unsigned i; |
129 |
< |
PhotonSQNode *sq; |
130 |
< |
float r, invArea; |
131 |
< |
RREAL rayCoeff [3]; |
132 |
< |
|
106 |
< |
setcolor(irrad, 0, 0, 0); |
107 |
< |
|
108 |
< |
if (!pmap -> maxGather) |
109 |
< |
return; |
128 |
> |
PhotonPrimaryIdx heapLen; |
129 |
> |
unsigned heap; |
130 |
> |
|
131 |
> |
if (!pmap || !primaryHeap || !primaryOfs || !numHeaps) |
132 |
> |
return 0; |
133 |
|
|
134 |
< |
/* Ignore sources */ |
135 |
< |
if (ray -> ro) |
136 |
< |
if (islight(objptr(ray -> ro -> omod) -> otype)) |
137 |
< |
return; |
134 |
> |
pmap -> numPrimary = 0; |
135 |
> |
|
136 |
> |
for (heap = 0; heap < numHeaps; heap++) { |
137 |
> |
primaryOfs [heap] = pmap -> numPrimary; |
138 |
> |
|
139 |
> |
if (fseek(primaryHeap [heap], 0, SEEK_END) < 0) |
140 |
> |
error(SYSTEM, "failed photon primary seek in buildPrimaries"); |
141 |
> |
pmap -> numPrimary += heapLen = ftell(primaryHeap [heap]) / |
142 |
> |
sizeof(PhotonPrimary); |
143 |
|
|
144 |
< |
/* Get cumulative path |
145 |
< |
* coefficient up to photon lookup point */ |
146 |
< |
raycontrib(rayCoeff, ray, PRIMARY); |
144 |
> |
pmap -> primaries = realloc(pmap -> primaries, |
145 |
> |
pmap -> numPrimary * |
146 |
> |
sizeof(PhotonPrimary)); |
147 |
> |
if (!pmap -> primaries) |
148 |
> |
error(SYSTEM, "failed photon primary alloc in buildPrimaries"); |
149 |
|
|
150 |
< |
/* Lookup photons */ |
151 |
< |
pmap -> squeueEnd = 0; |
152 |
< |
findPhotons(pmap, ray); |
153 |
< |
|
124 |
< |
/* Need at least 2 photons */ |
125 |
< |
if (pmap -> squeueEnd < 2) { |
126 |
< |
#ifdef PMAP_NONEFOUND |
127 |
< |
sprintf(errmsg, "no photons found on %s at (%.3f, %.3f, %.3f)", |
128 |
< |
ray -> ro ? ray -> ro -> oname : "<null>", |
129 |
< |
ray -> rop [0], ray -> rop [1], ray -> rop [2]); |
130 |
< |
error(WARNING, errmsg); |
131 |
< |
#endif |
150 |
> |
rewind(primaryHeap [heap]); |
151 |
> |
if (fread(pmap -> primaries + primaryOfs [heap], sizeof(PhotonPrimary), |
152 |
> |
heapLen, primaryHeap [heap]) != heapLen) |
153 |
> |
error(SYSTEM, "failed reading photon primaries in buildPrimaries"); |
154 |
|
|
155 |
< |
return; |
155 |
> |
fclose(primaryHeap [heap]); |
156 |
> |
unlink(primaryHeapFname [heap]); |
157 |
|
} |
135 |
– |
|
136 |
– |
/* Average (squared) radius between furthest two photons to improve |
137 |
– |
* accuracy and get inverse search area 1 / (PI * r^2), with extra |
138 |
– |
* normalisation factor 1 / PI for ambient calculation */ |
139 |
– |
sq = pmap -> squeue + 1; |
140 |
– |
r = max(sq -> dist, (sq + 1) -> dist); |
141 |
– |
r = 0.25 * (pmap -> maxDist + r + 2 * sqrt(pmap -> maxDist * r)); |
142 |
– |
invArea = 1 / (PI * PI * r); |
158 |
|
|
159 |
< |
/* Skip the extra photon */ |
160 |
< |
for (i = 1 ; i < pmap -> squeueEnd; i++, sq++) { |
146 |
< |
COLOR flux; |
147 |
< |
|
148 |
< |
/* Get photon's contribution to density estimate */ |
149 |
< |
getPhotonFlux(sq -> photon, flux); |
150 |
< |
scalecolor(flux, invArea); |
151 |
< |
#ifdef PMAP_EPANECHNIKOV |
152 |
< |
/* Apply Epanechnikov kernel to photon flux (dists are squared) */ |
153 |
< |
scalecolor(flux, 2 * (1 - sq -> dist / r)); |
154 |
< |
#endif |
155 |
< |
addcolor(irrad, flux); |
156 |
< |
|
157 |
< |
if (pmap -> srcContrib) { |
158 |
< |
const PhotonPrimary *primary = pmap -> primary + |
159 |
< |
sq -> photon -> primary; |
160 |
< |
const SRCREC *sp = &source[primary -> srcIdx]; |
161 |
< |
OBJREC *srcMod = findmaterial(sp -> so); |
162 |
< |
MODCONT *srcContrib = (MODCONT*)lu_find(pmap -> srcContrib, |
163 |
< |
srcMod -> oname) -> data; |
164 |
< |
if (!srcContrib) |
165 |
< |
continue; |
159 |
> |
return pmap -> numPrimary; |
160 |
> |
} |
161 |
|
|
167 |
– |
/* Photon's emitting light source has modifier whose |
168 |
– |
* contributions are sought */ |
169 |
– |
double srcBinReal; |
170 |
– |
int srcBin; |
171 |
– |
RAY srcRay; |
162 |
|
|
173 |
– |
if (srcContrib -> binv -> type != NUM) { |
174 |
– |
/* Use intersection function to set shadow ray parameters |
175 |
– |
* if it's not simply a constant |
176 |
– |
*/ |
177 |
– |
rayorigin(&srcRay, SHADOW, NULL, NULL); |
178 |
– |
srcRay.rsrc = primary -> srcIdx; |
179 |
– |
VCOPY(srcRay.rorg, primary -> pos); |
180 |
– |
decodedir(srcRay.rdir, primary -> dir); |
163 |
|
|
164 |
< |
if (!(sp->sflags & SDISTANT ? sourcehit(&srcRay) |
165 |
< |
: (*ofun[sp -> so -> otype].funp)(sp -> so, &srcRay))) |
166 |
< |
continue; /* XXX shouldn't happen! */ |
164 |
> |
/* Defs for photon emission counter array passed by sub-processes to parent |
165 |
> |
* via shared memory */ |
166 |
> |
typedef unsigned long PhotonContribCnt; |
167 |
|
|
168 |
< |
worldfunc(RCCONTEXT, &srcRay); |
169 |
< |
set_eparams((char *)srcContrib -> params); |
170 |
< |
} |
168 |
> |
/* Indices for photon emission counter array: num photons stored and num |
169 |
> |
* emitted per source */ |
170 |
> |
#define PHOTONCNT_NUMPHOT 0 |
171 |
> |
#define PHOTONCNT_NUMEMIT(n) (1 + n) |
172 |
|
|
190 |
– |
if ((srcBinReal = evalue(srcContrib -> binv)) < -.5) |
191 |
– |
continue; /* silently ignore negative bins */ |
192 |
– |
|
193 |
– |
if ((srcBin = srcBinReal + .5) >= srcContrib -> nbins) { |
194 |
– |
error(WARNING, "bad bin number (ignored)"); |
195 |
– |
continue; |
196 |
– |
} |
197 |
– |
|
198 |
– |
if (!contrib) { |
199 |
– |
/* Ray coefficient mode; normalise by light source radiance |
200 |
– |
* after applying distrib pattern */ |
201 |
– |
int j; |
202 |
– |
raytexture(ray, srcMod -> omod); |
203 |
– |
setcolor(ray -> rcol, srcMod -> oargs.farg [0], |
204 |
– |
srcMod -> oargs.farg [1], srcMod -> oargs.farg [2]); |
205 |
– |
multcolor(ray -> rcol, ray -> pcol); |
206 |
– |
for (j = 0; j < 3; j++) |
207 |
– |
flux [j] = ray -> rcol [j] ? flux [j] / ray -> rcol [j] |
208 |
– |
: 0; |
209 |
– |
} |
210 |
– |
|
211 |
– |
multcolor(flux, rayCoeff); |
212 |
– |
addcolor(srcContrib -> cbin [srcBin], flux); |
213 |
– |
} |
214 |
– |
} |
215 |
– |
|
216 |
– |
return; |
217 |
– |
} |
173 |
|
|
174 |
|
|
175 |
|
|
221 |
– |
void distribPhotonContrib (PhotonMap* pm) |
222 |
– |
{ |
223 |
– |
EmissionMap emap; |
224 |
– |
char errmsg2 [128]; |
225 |
– |
unsigned srcIdx; |
226 |
– |
double *srcFlux; /* Emitted flux per light source */ |
227 |
– |
const double srcDistribTarget = /* Target photon count per source */ |
228 |
– |
nsources ? (double)pm -> distribTarget / nsources : 0; |
176 |
|
|
177 |
+ |
|
178 |
+ |
void distribPhotonContrib (PhotonMap* pm, unsigned numProc) |
179 |
+ |
{ |
180 |
+ |
EmissionMap emap; |
181 |
+ |
char errmsg2 [128], shmFname [PMAP_TMPFNLEN]; |
182 |
+ |
unsigned srcIdx, proc; |
183 |
+ |
int shmFile, stat, pid; |
184 |
+ |
double *srcFlux, /* Emitted flux per light source */ |
185 |
+ |
srcDistribTarget; /* Target photon count per source */ |
186 |
+ |
PhotonContribCnt *photonCnt; /* Photon emission counter array */ |
187 |
+ |
unsigned photonCntSize = sizeof(PhotonContribCnt) * |
188 |
+ |
PHOTONCNT_NUMEMIT(nsources); |
189 |
+ |
FILE **primaryHeap = NULL; |
190 |
+ |
char **primaryHeapFname = NULL; |
191 |
+ |
PhotonPrimaryIdx *primaryOfs = NULL; |
192 |
+ |
|
193 |
|
if (!pm) |
194 |
< |
error(USER, "no photon map defined"); |
194 |
> |
error(USER, "no photon map defined in distribPhotonContrib"); |
195 |
|
|
196 |
|
if (!nsources) |
197 |
< |
error(USER, "no light sources"); |
198 |
< |
|
197 |
> |
error(USER, "no light sources in distribPhotonContrib"); |
198 |
> |
|
199 |
> |
if (nsources > MAXMODLIST) |
200 |
> |
error(USER, "too many light sources in distribPhotonContrib"); |
201 |
> |
|
202 |
|
/* Allocate photon flux per light source; this differs for every |
203 |
|
* source as all sources contribute the same number of distributed |
204 |
|
* photons (srcDistribTarget), hence the number of photons emitted per |
205 |
|
* source does not correlate with its emitted flux. The resulting flux |
206 |
|
* per photon is therefore adjusted individually for each source. */ |
207 |
|
if (!(srcFlux = calloc(nsources, sizeof(double)))) |
208 |
< |
error(SYSTEM, "cannot allocate source flux"); |
208 |
> |
error(SYSTEM, "can't allocate source flux in distribPhotonContrib"); |
209 |
|
|
210 |
< |
/* ================================================================ |
211 |
< |
* INITIALISASHUNN - Set up emisshunn and scattering funcs |
212 |
< |
* ================================================================ */ |
210 |
> |
/* =================================================================== |
211 |
> |
* INITIALISATION - Set up emission and scattering funcs |
212 |
> |
* =================================================================== */ |
213 |
|
emap.samples = NULL; |
214 |
|
emap.src = NULL; |
215 |
|
emap.maxPartitions = MAXSPART; |
216 |
|
emap.partitions = (unsigned char*)malloc(emap.maxPartitions >> 1); |
217 |
|
if (!emap.partitions) |
218 |
< |
error(USER, "can't allocate source partitions"); |
218 |
> |
error(USER, "can't allocate source partitions in distribPhotonContrib"); |
219 |
|
|
220 |
+ |
/* Initialise contrib photon map */ |
221 |
|
initPhotonMap(pm, PMAP_TYPE_CONTRIB); |
222 |
+ |
initPhotonHeap(pm); |
223 |
|
initPhotonEmissionFuncs(); |
224 |
|
initPhotonScatterFuncs(); |
225 |
|
|
226 |
< |
/* Get photon ports if specified */ |
227 |
< |
if (ambincl == 1) |
228 |
< |
getPhotonPorts(); |
226 |
> |
/* Per-subprocess / per-source target counts */ |
227 |
> |
pm -> distribTarget /= numProc; |
228 |
> |
srcDistribTarget = nsources ? (double)pm -> distribTarget / nsources : 0; |
229 |
> |
|
230 |
> |
if (!pm -> distribTarget) |
231 |
> |
error(INTERNAL, "no photons to distribute in distribPhotonContrib"); |
232 |
> |
|
233 |
> |
/* Get photon ports from modifier list */ |
234 |
> |
getPhotonPorts(photonPortList); |
235 |
|
|
236 |
|
/* Get photon sensor modifiers */ |
237 |
|
getPhotonSensors(photonSensorList); |
238 |
+ |
|
239 |
+ |
#if NIX |
240 |
+ |
/* Set up shared mem for photon counters (zeroed by ftruncate) */ |
241 |
+ |
strcpy(shmFname, PMAP_TMPFNAME); |
242 |
+ |
shmFile = mkstemp(shmFname); |
243 |
|
|
244 |
< |
/* Seed RNGs for photon distribution */ |
245 |
< |
pmapSeed(randSeed, partState); |
267 |
< |
pmapSeed(randSeed, emitState); |
268 |
< |
pmapSeed(randSeed, cntState); |
269 |
< |
pmapSeed(randSeed, mediumState); |
270 |
< |
pmapSeed(randSeed, scatterState); |
271 |
< |
pmapSeed(randSeed, rouletteState); |
244 |
> |
if (shmFile < 0 || ftruncate(shmFile, photonCntSize) < 0) |
245 |
> |
error(SYSTEM, "failed shared mem init in distribPhotonContrib"); |
246 |
|
|
247 |
< |
/* Record start time and enable progress report signal handler */ |
248 |
< |
repStartTime = time(NULL); |
249 |
< |
#ifdef SIGCONT |
250 |
< |
signal(SIGCONT, pmapDistribReport); |
251 |
< |
#endif |
247 |
> |
photonCnt = mmap(NULL, photonCntSize, PROT_READ | PROT_WRITE, |
248 |
> |
MAP_SHARED, shmFile, 0); |
249 |
> |
|
250 |
> |
if (photonCnt == MAP_FAILED) |
251 |
> |
error(SYSTEM, "failed shared mem mapping in distribPhotonContrib"); |
252 |
> |
#else |
253 |
> |
/* Allocate photon counters statically on Windoze */ |
254 |
> |
if (!(photonCnt = malloc(photonCntSize))) |
255 |
> |
error(SYSTEM, "failed trivial malloc in distribPhotonContrib"); |
256 |
|
|
257 |
< |
for (srcIdx = 0; srcIdx < nsources; srcIdx++) { |
258 |
< |
unsigned portCnt = 0, passCnt = 0, prePassCnt = 0; |
259 |
< |
double srcNumEmit = 0; /* # photons to emit from source */ |
282 |
< |
unsigned long srcNumDistrib = pm -> heapEnd; /* # photons stored */ |
257 |
> |
for (srcIdx = 0; srcIdx < PHOTONCNT_NUMEMIT(nsources); srcIdx++) |
258 |
> |
photonCnt [srcIdx] = 0; |
259 |
> |
#endif /* NIX */ |
260 |
|
|
261 |
< |
srcFlux [srcIdx] = repProgress = 0; |
261 |
> |
if (verbose) { |
262 |
> |
sprintf(errmsg, "\nIntegrating flux from %d sources", nsources); |
263 |
> |
|
264 |
> |
if (photonPorts) { |
265 |
> |
sprintf(errmsg2, " via %d ports", numPhotonPorts); |
266 |
> |
strcat(errmsg, errmsg2); |
267 |
> |
} |
268 |
> |
|
269 |
> |
strcat(errmsg, "\n"); |
270 |
> |
eputs(errmsg); |
271 |
> |
} |
272 |
> |
|
273 |
> |
/* ============================================================= |
274 |
> |
* FLUX INTEGRATION - Get total flux emitted from sources/ports |
275 |
> |
* ============================================================= */ |
276 |
> |
for (srcIdx = 0; srcIdx < nsources; srcIdx++) { |
277 |
> |
unsigned portCnt = 0; |
278 |
> |
srcFlux [srcIdx] = 0; |
279 |
|
emap.src = source + srcIdx; |
280 |
|
|
281 |
< |
if (photonRepTime) |
282 |
< |
eputs("\n"); |
283 |
< |
|
290 |
< |
/* ============================================================= |
291 |
< |
* FLUX INTEGRATION - Get total flux emitted from light source |
292 |
< |
* ============================================================= */ |
293 |
< |
do { |
294 |
< |
emap.port = emap.src -> sflags & SDISTANT |
295 |
< |
? photonPorts + portCnt : NULL; |
281 |
> |
do { /* Need at least one iteration if no ports! */ |
282 |
> |
emap.port = emap.src -> sflags & SDISTANT ? photonPorts + portCnt |
283 |
> |
: NULL; |
284 |
|
photonPartition [emap.src -> so -> otype] (&emap); |
285 |
< |
|
286 |
< |
if (photonRepTime) { |
287 |
< |
sprintf(errmsg, "Integrating flux from source %s (mod %s) ", |
288 |
< |
source [srcIdx].so -> oname, |
289 |
< |
objptr(source [srcIdx].so -> omod) -> oname); |
302 |
< |
|
285 |
> |
|
286 |
> |
if (verbose) { |
287 |
> |
sprintf(errmsg, "\tIntegrating flux from source %s ", |
288 |
> |
source [srcIdx].so -> oname); |
289 |
> |
|
290 |
|
if (emap.port) { |
291 |
|
sprintf(errmsg2, "via port %s ", |
292 |
|
photonPorts [portCnt].so -> oname); |
293 |
|
strcat(errmsg, errmsg2); |
294 |
|
} |
295 |
< |
|
296 |
< |
sprintf(errmsg2, "(%lu partitions)...\n", |
310 |
< |
emap.numPartitions); |
295 |
> |
|
296 |
> |
sprintf(errmsg2, "(%lu partitions)\n", emap.numPartitions); |
297 |
|
strcat(errmsg, errmsg2); |
298 |
|
eputs(errmsg); |
299 |
+ |
#if NIX |
300 |
|
fflush(stderr); |
301 |
< |
} |
301 |
> |
#endif |
302 |
> |
} |
303 |
|
|
304 |
< |
for (emap.partitionCnt = 0; |
317 |
< |
emap.partitionCnt < emap.numPartitions; |
304 |
> |
for (emap.partitionCnt = 0; emap.partitionCnt < emap.numPartitions; |
305 |
|
emap.partitionCnt++) { |
306 |
|
initPhotonEmission(&emap, pdfSamples); |
307 |
|
srcFlux [srcIdx] += colorAvg(emap.partFlux); |
308 |
|
} |
309 |
|
|
310 |
|
portCnt++; |
311 |
< |
} while (portCnt < numPhotonPorts); |
312 |
< |
|
311 |
> |
} while (portCnt < numPhotonPorts); |
312 |
> |
|
313 |
|
if (srcFlux [srcIdx] < FTINY) { |
314 |
|
sprintf(errmsg, "source %s has zero emission", |
315 |
|
source [srcIdx].so -> oname); |
316 |
|
error(WARNING, errmsg); |
317 |
|
} |
318 |
< |
else { |
319 |
< |
/* ========================================================== |
320 |
< |
* 2-PASS PHOTON DISTRIBUTION |
321 |
< |
* Pass 1 (pre): emit fraction of target photon count |
322 |
< |
* Pass 2 (main): based on outcome of pass 1, estimate |
323 |
< |
* remaining number of photons to emit to |
324 |
< |
* approximate target count |
325 |
< |
* ========================================================== */ |
326 |
< |
do { |
327 |
< |
if (!passCnt) { |
328 |
< |
/* INIT PASS 1 */ |
329 |
< |
if (++prePassCnt > maxPreDistrib) { |
330 |
< |
/* Warn if no photons contributed after sufficient |
331 |
< |
* iterations */ |
332 |
< |
sprintf(errmsg, "too many prepasses, no photons " |
346 |
< |
"from source %s", source [srcIdx].so -> oname); |
347 |
< |
error(WARNING, errmsg); |
348 |
< |
break; |
349 |
< |
} |
318 |
> |
} |
319 |
> |
|
320 |
> |
/* Allocate & init per-subprocess primary heap files */ |
321 |
> |
primaryHeap = calloc(numProc, sizeof(FILE*)); |
322 |
> |
primaryHeapFname = calloc(numProc, sizeof(char*)); |
323 |
> |
primaryOfs = calloc(numProc, sizeof(PhotonPrimaryIdx)); |
324 |
> |
if (!primaryHeap || !primaryHeapFname || !primaryOfs) |
325 |
> |
error(SYSTEM, "failed primary heap allocation in " |
326 |
> |
"distribPhotonContrib"); |
327 |
> |
|
328 |
> |
for (proc = 0; proc < numProc; proc++) { |
329 |
> |
primaryHeapFname [proc] = malloc(PMAP_TMPFNLEN); |
330 |
> |
if (!primaryHeapFname [proc]) |
331 |
> |
error(SYSTEM, "failed primary heap file allocation in " |
332 |
> |
"distribPhotonContrib"); |
333 |
|
|
334 |
< |
/* Num to emit is fraction of target count */ |
335 |
< |
srcNumEmit = preDistrib * srcDistribTarget; |
336 |
< |
} |
334 |
> |
mktemp(strcpy(primaryHeapFname [proc], PMAP_TMPFNAME)); |
335 |
> |
if (!(primaryHeap [proc] = fopen(primaryHeapFname [proc], "w+b"))) |
336 |
> |
error(SYSTEM, "failed opening primary heap file in " |
337 |
> |
"distribPhotonContrib"); |
338 |
> |
} |
339 |
|
|
340 |
< |
else { |
341 |
< |
/* INIT PASS 2 */ |
357 |
< |
/* Based on the outcome of the predistribution we can now |
358 |
< |
* figure out how many more photons we have to emit from |
359 |
< |
* the current source to meet the target count, |
360 |
< |
* srcDistribTarget. This value is clamped to 0 in case |
361 |
< |
* the target has already been exceeded in pass 1. |
362 |
< |
* srcNumEmit and srcNumDistrib is the number of photons |
363 |
< |
* emitted and distributed (stored) from the current |
364 |
< |
* source in pass 1, respectively. */ |
365 |
< |
srcNumDistrib = pm -> heapEnd - srcNumDistrib; |
366 |
< |
srcNumEmit *= srcNumDistrib |
367 |
< |
? max(srcDistribTarget/srcNumDistrib, 1) - 1 |
368 |
< |
: 0; |
340 |
> |
/* Record start time for progress reports */ |
341 |
> |
repStartTime = time(NULL); |
342 |
|
|
343 |
< |
if (!srcNumEmit) |
344 |
< |
/* No photons left to distribute in main pass */ |
345 |
< |
break; |
346 |
< |
} |
374 |
< |
|
375 |
< |
/* Set completion count for progress report */ |
376 |
< |
repComplete = srcNumEmit + repProgress; |
377 |
< |
portCnt = 0; |
378 |
< |
|
379 |
< |
do { |
380 |
< |
emap.port = emap.src -> sflags & SDISTANT |
381 |
< |
? photonPorts + portCnt : NULL; |
382 |
< |
photonPartition [emap.src -> so -> otype] (&emap); |
343 |
> |
if (verbose) { |
344 |
> |
sprintf(errmsg, "\nPhoton distribution @ %d procs\n", numProc); |
345 |
> |
eputs(errmsg); |
346 |
> |
} |
347 |
|
|
348 |
< |
if (photonRepTime) { |
349 |
< |
if (!passCnt) |
350 |
< |
sprintf(errmsg, "PREPASS %d on source %s (mod %s) ", |
351 |
< |
prePassCnt, source [srcIdx].so -> oname, |
352 |
< |
objptr(source[srcIdx].so->omod) -> oname); |
353 |
< |
else |
354 |
< |
sprintf(errmsg, "MAIN PASS on source %s (mod %s) ", |
355 |
< |
source [srcIdx].so -> oname, |
356 |
< |
objptr(source[srcIdx].so->omod) -> oname); |
357 |
< |
|
358 |
< |
if (emap.port) { |
359 |
< |
sprintf(errmsg2, "via port %s ", |
360 |
< |
photonPorts [portCnt].so -> oname); |
361 |
< |
strcat(errmsg, errmsg2); |
348 |
> |
/* MAIN LOOP */ |
349 |
> |
for (proc = 0; proc < numProc; proc++) { |
350 |
> |
#if NIX |
351 |
> |
if (!(pid = fork())) { |
352 |
> |
/* SUBPROCESS ENTERS HERE; opened and mmapped files inherited */ |
353 |
> |
#else |
354 |
> |
if (1) { |
355 |
> |
/* No subprocess under Windoze */ |
356 |
> |
#endif |
357 |
> |
/* Local photon counters for this subprocess */ |
358 |
> |
unsigned long lastNumPhotons = 0, localNumEmitted = 0; |
359 |
> |
double photonFluxSum = 0; /* Accum. photon flux */ |
360 |
> |
|
361 |
> |
/* Seed RNGs from PID for decorellated photon distribution */ |
362 |
> |
pmapSeed(randSeed + proc, partState); |
363 |
> |
pmapSeed(randSeed + (proc + 1) % numProc, emitState); |
364 |
> |
pmapSeed(randSeed + (proc + 2) % numProc, cntState); |
365 |
> |
pmapSeed(randSeed + (proc + 3) % numProc, mediumState); |
366 |
> |
pmapSeed(randSeed + (proc + 4) % numProc, scatterState); |
367 |
> |
pmapSeed(randSeed + (proc + 5) % numProc, rouletteState); |
368 |
> |
|
369 |
> |
#ifdef PMAP_SIGUSR |
370 |
> |
double partNumEmit; |
371 |
> |
unsigned long partEmitCnt; |
372 |
> |
double srcPhotonFlux, avgPhotonFlux; |
373 |
> |
unsigned portCnt, passCnt, prePassCnt; |
374 |
> |
float srcPreDistrib; |
375 |
> |
double srcNumEmit; /* # to emit from source */ |
376 |
> |
unsigned long srcNumDistrib; /* # stored */ |
377 |
> |
|
378 |
> |
void sigUsrDiags() |
379 |
> |
/* Loop diags via SIGUSR1 */ |
380 |
> |
{ |
381 |
> |
sprintf(errmsg, |
382 |
> |
"********************* Proc %d Diags *********************\n" |
383 |
> |
"srcIdx = %d (%s)\nportCnt = %d (%s)\npassCnt = %d\n" |
384 |
> |
"srcFlux = %f\nsrcPhotonFlux = %f\navgPhotonFlux = %f\n" |
385 |
> |
"partNumEmit = %f\npartEmitCnt = %lu\n\n", |
386 |
> |
proc, srcIdx, findmaterial(source [srcIdx].so) -> oname, |
387 |
> |
portCnt, photonPorts [portCnt].so -> oname, |
388 |
> |
passCnt, srcFlux [srcIdx], srcPhotonFlux, avgPhotonFlux, |
389 |
> |
partNumEmit, partEmitCnt); |
390 |
> |
eputs(errmsg); |
391 |
> |
fflush(stderr); |
392 |
> |
} |
393 |
> |
#endif |
394 |
> |
|
395 |
> |
#if PMAP_SIGUSR |
396 |
> |
signal(SIGUSR1, sigUsrDiags); |
397 |
> |
#endif |
398 |
> |
|
399 |
> |
/* Output child process PID after random delay to prevent corrupted |
400 |
> |
* console output due to race condition */ |
401 |
> |
usleep(1e6 * pmapRandom(rouletteState)); |
402 |
> |
fprintf(stderr, "Proc %d: PID = %d\n", proc, getpid()); |
403 |
> |
/* Allow time for debugger to attach to child process */ |
404 |
> |
sleep(10); |
405 |
> |
|
406 |
> |
/* ============================================================= |
407 |
> |
* 2-PASS PHOTON DISTRIBUTION |
408 |
> |
* Pass 1 (pre): emit fraction of target photon count |
409 |
> |
* Pass 2 (main): based on outcome of pass 1, estimate remaining |
410 |
> |
* number of photons to emit to approximate target |
411 |
> |
* count |
412 |
> |
* ============================================================= */ |
413 |
> |
for (srcIdx = 0; srcIdx < nsources; srcIdx++) { |
414 |
> |
#ifndef PMAP_SIGUSR |
415 |
> |
unsigned portCnt, passCnt = 0, prePassCnt = 0; |
416 |
> |
float srcPreDistrib = preDistrib; |
417 |
> |
double srcNumEmit = 0; /* # to emit from source */ |
418 |
> |
unsigned long srcNumDistrib = pm -> numPhotons; /* # stored */ |
419 |
> |
#else |
420 |
> |
passCnt = prePassCnt = 0; |
421 |
> |
srcPreDistrib = preDistrib; |
422 |
> |
srcNumEmit = 0; /* # to emit from source */ |
423 |
> |
srcNumDistrib = pm -> numPhotons; /* # stored */ |
424 |
> |
#endif |
425 |
> |
|
426 |
> |
if (srcFlux [srcIdx] < FTINY) |
427 |
> |
continue; |
428 |
> |
|
429 |
> |
while (passCnt < 2) { |
430 |
> |
if (!passCnt) { |
431 |
> |
/* INIT PASS 1 */ |
432 |
> |
if (++prePassCnt > maxPreDistrib) { |
433 |
> |
/* Warn if no photons contributed after sufficient |
434 |
> |
* iterations; only output from subprocess 0 to reduce |
435 |
> |
* console clutter */ |
436 |
> |
if (!proc) { |
437 |
> |
sprintf(errmsg, |
438 |
> |
"source %s: too many prepasses, skipped", |
439 |
> |
source [srcIdx].so -> oname); |
440 |
> |
error(WARNING, errmsg); |
441 |
> |
} |
442 |
> |
|
443 |
> |
break; |
444 |
|
} |
445 |
|
|
446 |
< |
sprintf(errmsg2, "(%lu partitions)...\n", |
447 |
< |
emap.numPartitions); |
402 |
< |
strcat(errmsg, errmsg2); |
403 |
< |
eputs(errmsg); |
404 |
< |
fflush(stderr); |
446 |
> |
/* Num to emit is fraction of target count */ |
447 |
> |
srcNumEmit = srcPreDistrib * srcDistribTarget; |
448 |
|
} |
449 |
< |
|
450 |
< |
for (emap.partitionCnt = 0; |
451 |
< |
emap.partitionCnt < emap.numPartitions; |
452 |
< |
emap.partitionCnt++) { |
453 |
< |
double partNumEmit; |
411 |
< |
unsigned long partEmitCnt; |
449 |
> |
else { |
450 |
> |
/* INIT PASS 2 */ |
451 |
> |
#ifndef PMAP_SIGUSR |
452 |
> |
double srcPhotonFlux, avgPhotonFlux; |
453 |
> |
#endif |
454 |
|
|
455 |
< |
/* Get photon origin within current source partishunn |
456 |
< |
* and build emission map */ |
457 |
< |
photonOrigin [emap.src -> so -> otype] (&emap); |
458 |
< |
initPhotonEmission(&emap, pdfSamples); |
459 |
< |
|
460 |
< |
/* Number of photons to emit from ziss partishunn; |
461 |
< |
* scale according to its normalised contribushunn to |
462 |
< |
* the emitted source flux */ |
463 |
< |
partNumEmit = srcNumEmit * colorAvg(emap.partFlux) / |
464 |
< |
srcFlux [srcIdx]; |
465 |
< |
partEmitCnt = (unsigned long)partNumEmit; |
466 |
< |
|
467 |
< |
/* Probabilistically account for fractional photons */ |
468 |
< |
if (pmapRandom(cntState) < partNumEmit - partEmitCnt) |
469 |
< |
partEmitCnt++; |
455 |
> |
/* Based on the outcome of the predistribution we can now |
456 |
> |
* figure out how many more photons we have to emit from |
457 |
> |
* the current source to meet the target count, |
458 |
> |
* srcDistribTarget. This value is clamped to 0 in case |
459 |
> |
* the target has already been exceeded in pass 1. |
460 |
> |
* srcNumEmit and srcNumDistrib is the number of photons |
461 |
> |
* emitted and distributed (stored) from the current |
462 |
> |
* source in pass 1, respectively. */ |
463 |
> |
srcNumDistrib = pm -> numPhotons - srcNumDistrib; |
464 |
> |
srcNumEmit *= srcNumDistrib |
465 |
> |
? max(srcDistribTarget/srcNumDistrib, 1) - 1 |
466 |
> |
: 0; |
467 |
> |
|
468 |
> |
if (!srcNumEmit) |
469 |
> |
/* No photons left to distribute in main pass */ |
470 |
> |
break; |
471 |
|
|
472 |
< |
/* Integer counter avoids FP rounding errors */ |
473 |
< |
while (partEmitCnt--) { |
431 |
< |
RAY photonRay; |
472 |
> |
srcPhotonFlux = srcFlux [srcIdx] / srcNumEmit; |
473 |
> |
avgPhotonFlux = photonFluxSum / (srcIdx + 1); |
474 |
|
|
475 |
< |
/* Emit photon according to PDF (if any), allocate |
476 |
< |
* associated primary ray, and trace through scene |
477 |
< |
* until absorbed/leaked */ |
478 |
< |
emitPhoton(&emap, &photonRay); |
479 |
< |
addPhotonPrimary(pm, &photonRay); |
480 |
< |
tracePhoton(&photonRay); |
475 |
> |
if (avgPhotonFlux > FTINY && |
476 |
> |
srcPhotonFlux / avgPhotonFlux < FTINY) { |
477 |
> |
/* Skip source if its photon flux is grossly below the |
478 |
> |
* running average, indicating negligible contributions |
479 |
> |
* at the expense of excessive distribution time; only |
480 |
> |
* output from subproc 0 to reduce console clutter */ |
481 |
> |
if (!proc) { |
482 |
> |
sprintf(errmsg, |
483 |
> |
"source %s: itsy bitsy photon flux, skipped", |
484 |
> |
source [srcIdx].so -> oname); |
485 |
> |
error(WARNING, errmsg); |
486 |
> |
} |
487 |
> |
|
488 |
> |
srcNumEmit = 0; /* Or just break??? */ |
489 |
> |
} |
490 |
> |
|
491 |
> |
/* Update sum of photon flux per light source */ |
492 |
> |
photonFluxSum += srcPhotonFlux; |
493 |
> |
} |
494 |
> |
|
495 |
> |
portCnt = 0; |
496 |
> |
do { /* Need at least one iteration if no ports! */ |
497 |
> |
emap.src = source + srcIdx; |
498 |
> |
emap.port = emap.src -> sflags & SDISTANT |
499 |
> |
? photonPorts + portCnt : NULL; |
500 |
> |
photonPartition [emap.src -> so -> otype] (&emap); |
501 |
> |
|
502 |
> |
if (verbose && !proc) { |
503 |
> |
/* Output from subproc 0 only to avoid race condition |
504 |
> |
* on console I/O */ |
505 |
> |
if (!passCnt) |
506 |
> |
sprintf(errmsg, "\tPREPASS %d on source %s ", |
507 |
> |
prePassCnt, source [srcIdx].so -> oname); |
508 |
> |
else |
509 |
> |
sprintf(errmsg, "\tMAIN PASS on source %s ", |
510 |
> |
source [srcIdx].so -> oname); |
511 |
> |
|
512 |
> |
if (emap.port) { |
513 |
> |
sprintf(errmsg2, "via port %s ", |
514 |
> |
photonPorts [portCnt].so -> oname); |
515 |
> |
strcat(errmsg, errmsg2); |
516 |
> |
} |
517 |
> |
|
518 |
> |
sprintf(errmsg2, "(%lu partitions)\n", |
519 |
> |
emap.numPartitions); |
520 |
> |
strcat(errmsg, errmsg2); |
521 |
> |
eputs(errmsg); |
522 |
> |
#if NIX |
523 |
> |
fflush(stderr); |
524 |
> |
#endif |
525 |
> |
} |
526 |
> |
|
527 |
> |
for (emap.partitionCnt = 0; emap.partitionCnt < emap.numPartitions; |
528 |
> |
emap.partitionCnt++) { |
529 |
> |
#ifndef PMAP_SIGUSR |
530 |
> |
double partNumEmit; |
531 |
> |
unsigned long partEmitCnt; |
532 |
> |
#endif |
533 |
|
|
534 |
< |
/* Record progress */ |
535 |
< |
repProgress++; |
534 |
> |
/* Get photon origin within current source partishunn |
535 |
> |
* and build emission map */ |
536 |
> |
photonOrigin [emap.src -> so -> otype] (&emap); |
537 |
> |
initPhotonEmission(&emap, pdfSamples); |
538 |
|
|
539 |
< |
if (photonRepTime > 0 && |
540 |
< |
time(NULL) >= repLastTime + photonRepTime) |
539 |
> |
/* Number of photons to emit from ziss partishunn; |
540 |
> |
* scale according to its normalised contribushunn to |
541 |
> |
* the emitted source flux */ |
542 |
> |
partNumEmit = srcNumEmit * colorAvg(emap.partFlux) / |
543 |
> |
srcFlux [srcIdx]; |
544 |
> |
partEmitCnt = (unsigned long)partNumEmit; |
545 |
> |
|
546 |
> |
/* Probabilistically account for fractional photons */ |
547 |
> |
if (pmapRandom(cntState) < partNumEmit - partEmitCnt) |
548 |
> |
partEmitCnt++; |
549 |
> |
|
550 |
> |
/* Update local and shared global emission counter */ |
551 |
> |
photonCnt [PHOTONCNT_NUMEMIT(srcIdx)] += partEmitCnt; |
552 |
> |
localNumEmitted += partEmitCnt; |
553 |
> |
|
554 |
> |
/* Integer counter avoids FP rounding errors during |
555 |
> |
* iteration */ |
556 |
> |
while (partEmitCnt--) { |
557 |
> |
RAY photonRay; |
558 |
> |
|
559 |
> |
/* Emit photon according to PDF (if any), allocate |
560 |
> |
* associated primary ray, and trace through scene |
561 |
> |
* until absorbed/leaked; emitPhoton() sets the |
562 |
> |
* emitting light source index in photonRay */ |
563 |
> |
emitPhoton(&emap, &photonRay); |
564 |
> |
#if 1 |
565 |
> |
if (emap.port) |
566 |
> |
/* !!! PHOTON PORT REJECTION SAMPLING HACK: set |
567 |
> |
* !!! photon port as fake hit object for |
568 |
> |
* !!! primary ray to check for intersection in |
569 |
> |
* !!! tracePhoton() */ |
570 |
> |
photonRay.ro = emap.port -> so; |
571 |
> |
#endif |
572 |
> |
newPhotonPrimary(pm, &photonRay, primaryHeap[proc]); |
573 |
> |
/* Set subprocess index in photonRay for post- |
574 |
> |
* distrib primary index linearisation; this is |
575 |
> |
* propagated with the primary index in photonRay |
576 |
> |
* and set for photon hits by newPhoton() */ |
577 |
> |
PMAP_SETRAYPROC(&photonRay, proc); |
578 |
> |
tracePhoton(&photonRay); |
579 |
> |
} |
580 |
> |
|
581 |
> |
/* Update shared global photon count */ |
582 |
> |
photonCnt [PHOTONCNT_NUMPHOT] += pm -> numPhotons - |
583 |
> |
lastNumPhotons; |
584 |
> |
lastNumPhotons = pm -> numPhotons; |
585 |
> |
#if !NIX |
586 |
> |
/* Synchronous progress report on Windoze */ |
587 |
> |
if (!proc && photonRepTime > 0 && |
588 |
> |
time(NULL) >= repLastTime + photonRepTime) { |
589 |
> |
unsigned s; |
590 |
> |
repComplete = pm -> distribTarget * numProc; |
591 |
> |
repProgress = photonCnt [PHOTONCNT_NUMPHOT]; |
592 |
> |
|
593 |
> |
for (repEmitted = 0, s = 0; s < nsources; s++) |
594 |
> |
repEmitted += photonCnt [PHOTONCNT_NUMEMIT(s)]; |
595 |
> |
|
596 |
|
pmapDistribReport(); |
597 |
< |
#ifdef SIGCONT |
598 |
< |
else signal(SIGCONT, pmapDistribReport); |
448 |
< |
#endif |
597 |
> |
} |
598 |
> |
#endif |
599 |
|
} |
450 |
– |
} |
451 |
– |
|
452 |
– |
portCnt++; |
453 |
– |
} while (portCnt < numPhotonPorts); |
600 |
|
|
601 |
< |
if (pm -> heapEnd == srcNumDistrib) |
602 |
< |
/* Double preDistrib in case no photons were stored |
603 |
< |
* for this source and redo pass 1 */ |
604 |
< |
preDistrib *= 2; |
605 |
< |
else { |
606 |
< |
/* Now do pass 2 */ |
607 |
< |
passCnt++; |
608 |
< |
if (photonRepTime) |
609 |
< |
eputs("\n"); |
601 |
> |
portCnt++; |
602 |
> |
} while (portCnt < numPhotonPorts); |
603 |
> |
|
604 |
> |
if (pm -> numPhotons == srcNumDistrib) { |
605 |
> |
/* Double predistrib factor in case no photons were stored |
606 |
> |
* for this source and redo pass 1 */ |
607 |
> |
srcPreDistrib *= 2; |
608 |
> |
} |
609 |
> |
else { |
610 |
> |
/* Now do pass 2 */ |
611 |
> |
passCnt++; |
612 |
> |
} |
613 |
|
} |
614 |
< |
} while (passCnt < 2); |
615 |
< |
|
616 |
< |
/* Flux per photon emitted from this source; repProgress is the |
617 |
< |
* number of emitted photons after both passes */ |
618 |
< |
srcFlux [srcIdx] = repProgress ? srcFlux [srcIdx] / repProgress |
619 |
< |
: 0; |
614 |
> |
} |
615 |
> |
|
616 |
> |
/* Flush heap buffa one final time to prevent data corruption */ |
617 |
> |
flushPhotonHeap(pm); |
618 |
> |
/* Flush final photon primary to primary heap file */ |
619 |
> |
newPhotonPrimary(pm, NULL, primaryHeap [proc]); |
620 |
> |
/* Heap files closed automatically on exit |
621 |
> |
fclose(pm -> heap); |
622 |
> |
fclose(primaryHeap [proc]); */ |
623 |
> |
|
624 |
> |
#ifdef DEBUG_PMAP |
625 |
> |
sprintf(errmsg, "Proc %d total %ld photons\n", proc, |
626 |
> |
pm -> numPhotons); |
627 |
> |
eputs(errmsg); |
628 |
> |
fflush(stderr); |
629 |
> |
#endif |
630 |
> |
|
631 |
> |
#ifdef PMAP_SIGUSR |
632 |
> |
signal(SIGUSR1, SIG_DFL); |
633 |
> |
#endif |
634 |
> |
|
635 |
> |
#if NIX |
636 |
> |
/* Terminate subprocess */ |
637 |
> |
exit(0); |
638 |
> |
#endif |
639 |
|
} |
640 |
+ |
else if (pid < 0) |
641 |
+ |
error(SYSTEM, "failed to fork subprocess in distribPhotonContrib"); |
642 |
|
} |
643 |
|
|
644 |
+ |
#if NIX |
645 |
+ |
/* PARENT PROCESS CONTINUES HERE */ |
646 |
+ |
#ifdef SIGCONT |
647 |
+ |
/* Enable progress report signal handler */ |
648 |
+ |
signal(SIGCONT, pmapDistribReport); |
649 |
+ |
#endif |
650 |
+ |
/* Wait for subprocesses to complete while reporting progress */ |
651 |
+ |
proc = numProc; |
652 |
+ |
while (proc) { |
653 |
+ |
while (waitpid(-1, &stat, WNOHANG) > 0) { |
654 |
+ |
/* Subprocess exited; check status */ |
655 |
+ |
if (!WIFEXITED(stat) || WEXITSTATUS(stat)) |
656 |
+ |
error(USER, "failed photon distribution"); |
657 |
+ |
|
658 |
+ |
--proc; |
659 |
+ |
} |
660 |
+ |
|
661 |
+ |
/* Nod off for a bit and update progress */ |
662 |
+ |
sleep(1); |
663 |
+ |
|
664 |
+ |
/* Asynchronous progress report from shared subprocess counters */ |
665 |
+ |
repComplete = pm -> distribTarget * numProc; |
666 |
+ |
repProgress = photonCnt [PHOTONCNT_NUMPHOT]; |
667 |
+ |
|
668 |
+ |
for (repEmitted = 0, srcIdx = 0; srcIdx < nsources; srcIdx++) |
669 |
+ |
repEmitted += photonCnt [PHOTONCNT_NUMEMIT(srcIdx)]; |
670 |
+ |
|
671 |
+ |
/* Get global photon count from shmem updated by subprocs */ |
672 |
+ |
pm -> numPhotons = photonCnt [PHOTONCNT_NUMPHOT]; |
673 |
+ |
|
674 |
+ |
if (photonRepTime > 0 && time(NULL) >= repLastTime + photonRepTime) |
675 |
+ |
pmapDistribReport(); |
676 |
+ |
#ifdef SIGCONT |
677 |
+ |
else signal(SIGCONT, pmapDistribReport); |
678 |
+ |
#endif |
679 |
+ |
} |
680 |
+ |
#endif /* NIX */ |
681 |
+ |
|
682 |
|
/* ================================================================ |
683 |
|
* POST-DISTRIBUTION - Set photon flux and build kd-tree, etc. |
684 |
|
* ================================================================ */ |
685 |
< |
#ifdef SIGCONT |
686 |
< |
signal(SIGCONT, SIG_DFL); |
687 |
< |
#endif |
685 |
> |
#ifdef SIGCONT |
686 |
> |
/* Reset signal handler */ |
687 |
> |
signal(SIGCONT, SIG_DFL); |
688 |
> |
#endif |
689 |
|
free(emap.samples); |
690 |
|
|
691 |
< |
if (!pm -> heapEnd) |
692 |
< |
error(USER, "empty photon map"); |
691 |
> |
if (!pm -> numPhotons) |
692 |
> |
error(USER, "empty contribution photon map"); |
693 |
|
|
694 |
< |
/* Check for valid primary photon rays */ |
695 |
< |
if (!pm -> primary) |
694 |
> |
/* Load per-subprocess primary rays into pm -> primary array */ |
695 |
> |
/* Dumb compilers apparently need the char** cast */ |
696 |
> |
pm -> numPrimary = buildPrimaries(pm, primaryHeap, |
697 |
> |
(char**)primaryHeapFname, |
698 |
> |
primaryOfs, numProc); |
699 |
> |
if (!pm -> numPrimary) |
700 |
|
error(INTERNAL, "no primary rays in contribution photon map"); |
488 |
– |
|
489 |
– |
if (pm -> primary [pm -> primaryEnd].srcIdx < 0) |
490 |
– |
/* Last primary ray is unused, so decrement counter */ |
491 |
– |
pm -> primaryEnd--; |
701 |
|
|
702 |
< |
if (photonRepTime) { |
703 |
< |
eputs("\nBuilding contrib photon heap...\n"); |
702 |
> |
/* Set photon flux per source */ |
703 |
> |
for (srcIdx = 0; srcIdx < nsources; srcIdx++) |
704 |
> |
srcFlux [srcIdx] /= photonCnt [PHOTONCNT_NUMEMIT(srcIdx)]; |
705 |
> |
#if NIX |
706 |
> |
/* Photon counters no longer needed, unmap shared memory */ |
707 |
> |
munmap(photonCnt, sizeof(*photonCnt)); |
708 |
> |
close(shmFile); |
709 |
> |
unlink(shmFname); |
710 |
> |
#else |
711 |
> |
free(photonCnt); |
712 |
> |
#endif |
713 |
> |
|
714 |
> |
if (verbose) { |
715 |
> |
eputs("\nBuilding contribution photon map...\n"); |
716 |
> |
#if NIX |
717 |
|
fflush(stderr); |
718 |
+ |
#endif |
719 |
|
} |
720 |
+ |
|
721 |
+ |
/* Build underlying data structure; heap is destroyed */ |
722 |
+ |
buildPhotonMap(pm, srcFlux, primaryOfs, numProc); |
723 |
+ |
|
724 |
+ |
/* Free per-subprocess primary heap files */ |
725 |
+ |
for (proc = 0; proc < numProc; proc++) |
726 |
+ |
free(primaryHeapFname [proc]); |
727 |
|
|
728 |
< |
balancePhotons(pm, srcFlux); |
728 |
> |
free(primaryHeapFname); |
729 |
> |
free(primaryHeap); |
730 |
> |
free(primaryOfs); |
731 |
> |
|
732 |
> |
if (verbose) |
733 |
> |
eputs("\n"); |
734 |
|
} |