-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
interpolate and smooth are too slow for large dimension soltabs #96
Comments
Hum, why that step is so long? In practice it is just a median, for me (on cep3) it takes: I don't think I run any interpolation step neither, for what is it needed? |
It's the step that does
I'm not sure exactly ... prefactor now has a median smooth in time, a savitzky-golay smooth in frequency and this interpolate step (which regrids the bandpass to 1chan/sb) before another median smooth in time) - I think this was updated in Oct last year by @adrabent |
I can see why it's slow, I need to understand your update a bit better (maybe we should have a chat - but I'm on holiday now). The smooth in time-only is superfast (few seconds), I don't understand what the "savitzky-golay smooth in frequency" is for |
Hi, Just wondering if this issue got fixed? Im trying to analyse some pretty long calibrator observations and running into speed issues at this same step. Thanks, Tim |
Can you past here the parset of the smooth operation? For things like: it should go rather fast |
This is the parset from prefactor for this step: ncpu = 32 |
(I think this was about 14hrs on 32cpu to run this parset on 4hrs of HBA calibrator data) |
and the bottleneck is the "smooth" step? (you can check how long each step took in the logfile) |
I havent broken it down by steps but we were kind of guessing it was the same issue that wendy had previously (unless that had already been fixed). |
I'm running prefactor on LBA data with an 8hr calibrator run, the losoto bandpass step alone is taking about 10hrs to run (a significant fraction of the entire pipeline run)
The interp and smooth operations each take 4-5 hours because internally it iterates over the time, ant and pol axes and the time axis is long (much longer than 10 min HBA calibrator obs)
I have an update that does this differently... each step runs in <5 minutes
The text was updated successfully, but these errors were encountered: