You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey @smangham - I'm getting segfault from delay_dump_single() when I run a model with geo.reverb set to zero. I think it's because of these lines in extract.c
if (pp->nrscat>0) // SWM - Records total distance travelled by extract photon
{
stuff_v(pstart.x, pp->x); // Restore photon to initial position (necessary for reweighting)pp->path=pstart.path;
delay_dump_single(pp, 1); // Dump photon now weight has been modified
}
so we call delay_dump_single, even though we haven't allocated the space for the delay dump structures- a simple if (geo.reverb>0) here should sort this. Agreed?
Flagged in case it affects @Higginbottom 's runs too
The text was updated successfully, but these errors were encountered:
Hey @smangham - I'm getting segfault from delay_dump_single() when I run a model with geo.reverb set to zero. I think it's because of these lines in extract.c
so we call delay_dump_single, even though we haven't allocated the space for the delay dump structures- a simple if (geo.reverb>0) here should sort this. Agreed?
Flagged in case it affects @Higginbottom 's runs too
The text was updated successfully, but these errors were encountered: