-
Notifications
You must be signed in to change notification settings - Fork 76
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
Improve potential bottlenecks in compute_Sv
#1200
Comments
|
@leewujung Could you explain a bit more about the potential bottleneck in |
@leewujung Similar question for improvement in |
I think it is both. We want to enable handling data with lazy-loaded arrays if it's not already, and ensure that the operations are distributed efficiently when dask supports them (and if not, see where dask is heading on the ops, since these ops are not very specific). In In |
For On running some experiments, |
This |
Below are the 2 potential places where the calibration code (
compute_Sv
) code can have bottleneck:in
get_vend_cal_params_power
where a broadcasting is probably used to get a data variable into the "right" shape based on indexing:echopype/echopype/calibrate/cal_params.py
Lines 299 to 304 in 593a7e1
in
harmonize_env_param_time
where there is either a check for all the timestamps or an interpolation:echopype/echopype/calibrate/env_params.py
Lines 53 to 66 in 593a7e1
Originally posted by @leewujung in #1165 (comment)
The text was updated successfully, but these errors were encountered: