-
Notifications
You must be signed in to change notification settings - Fork 69
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
Error when loading LoopVectorization after ForwardDiff with --compiled-modules=no #268
Comments
Requires bug? What is your use case for |
I’ve reported it as JuliaPackaging/Requires.jl#105 – let’s see if the Requires people know why this is happening. My use case for |
On master: # julia -q --startup=no --compiled-modules=no
julia> using LoopVectorization
julia> using ForwardDiff
julia> Still a Requires bug, but we can work around it here, so it works on master. |
I ran into this error when using OrdinaryDiffEq.jl with
julia --compiled-modules=no
:The most minimal case I managed to narrow it down to is having a new project with only
ForwardDiff
andLoopVectorization
as dependencies, then starting Julia with--compiled-modules=no
and first importingLoopVectorization
, thenForwardDiff
. When compiled modules are activated or whenForwardDiff
is imported first, the error does not appear.The text was updated successfully, but these errors were encountered: