-
Notifications
You must be signed in to change notification settings - Fork 1
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
_equilibriummeasure(V) hanging without error #51
Comments
Thanks for point this out! This package is not actively maintained but I'll have a look. |
This will take a while: as long as I'm updating everything I'm going to turn FastTransformsForwardDiff.jl into extensions, see |
It's fixed if you are on these branches: JuliaMath/AbstractFFTs.jl#138 Will take a while for these to be merged and tagged |
Thanks for that Sheehan, I'll check it out. |
I'm pretty busy right now and I think it will take a bit of back-and-forth with the maintainers of FFTW.jl/AbstractFFTs.jl to get the PRs over the line. @OliverLunt anyway I can convince you to help with those PRs? |
Apologies, I'm currently quite busy finishing a few papers – I might have some time to look at this once those have gone through. |
If I run
equilibriummeasure(x -> x^2)
then the function hangs seemingly indefinitely without returning an output. From playing around with this package a few years ago, I would expect it to return within a few seconds.After investigating, there appears to be an issue on line 24 of EquilibriumMeasures.jl in the _equilibriummeasure function:
H = T̃ \ (inv.(x .- x') * wŨ) # Hilbert wU\-> T̃
It is the backslash operation that seems to hang. I don't think it is an issue with automatic differentiation, since this line hangs even if I call the function directly (rather than via
jacobian
as in line 87).Any idea what's causing the issue? I have found this package very helpful before; thanks for putting it together!
The text was updated successfully, but these errors were encountered: