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
When simulating BOLD with the Numba backend, one currently has to first do the simulation then process the time series with the BOLD analyzer. For long time series, it is more memory-efficient to compute the BOLD in an online fashion.
Some of the BOLD derivatives are subject to loss of precision: open Herbie and enter f * (1 - pow(1 - e0, 1 / f)) * recip_e0 - pow(v,recip_alpha) * (q / v), and click v for bit error,
Their analysis suggest how to rewrite to drop that bit error from the red line to the blue line.
Fortunately the 1st ODE where x appears is linear wrt. x, so maybe these changes aren't needed.
Describe the new feature or enhancement
When simulating BOLD with the Numba backend, one currently has to first do the simulation then process the time series with the BOLD analyzer. For long time series, it is more memory-efficient to compute the BOLD in an online fashion.
Describe your proposed implementation
This should be integrated with the Numba backend:
The text was updated successfully, but these errors were encountered: