Skip to content
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

Stackoverflow error when using certain functions with non-Float64 precision #2611

Closed
mtanneau opened this issue Jan 15, 2025 · 2 comments
Closed

Comments

@mtanneau
Copy link
Contributor

I encountered this bug while looking for a MRE for jump-dev/JuMP.jl#3912...
Something in primal_feasibility_report triggers a stack overflow error when using certain nonlinear operators with non-32, non-64 precision (e.g. BigFloat) arithmetic.

I opened a separate issue because I believe the root cause is different.

MRE:

using JuMP

model = JuMP.GenericModel{BigFloat}()
@variable(model, x)
@constraint(model, cos(x) == one(BigFloat))
JuMP.primal_feasibility_report(model, Dict(x => zero(BigFloat)))

triggers the following overflow:

ERROR: StackOverflowError:
Stacktrace:
 [1] cos(x::BigFloat) (repeats 79984 times)
   @ NaNMath ~/.julia/packages/NaNMath/nN4v2/src/NaNMath.jl:11

The stacktrace points to this line in NaNMath. At that point, it is clear to me that we have entered an infinite loop, but I have no idea what triggered it 🤔

@mtanneau
Copy link
Contributor Author

This might actually get fixed upstream by JuliaMath/NaNMath.jl#79

@odow
Copy link
Member

odow commented Jan 15, 2025

Closing because this seems like a bug in NaNMath. I don't know if we should do anything in MOI.

@odow odow closed this as completed Jan 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants