-
Notifications
You must be signed in to change notification settings - Fork 11
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
Repeated precompilation due to Radom package issue #116
Comments
I think there's a related issue #114 |
I hope this problem will be resolved soon since it takes quite a bit of time to precompile SingularIntegralEquations.jl. |
I'd like to thank for the developers for their time to make this package as great great as it is. I'd like also to re-iterate other's sentiments in hoping that the precompilation issue is fixed soon. |
What in particular do you use? It might be possible to split that functionality out. I think I know how to work aroundthe issue (in LowRankApprox.jl). I just haven’t had time to do it as there’s a substantial amount of files to change. If you have time I can walk you through what needs to be done. |
I'm using the HyperGeometric functions, specifically I might be able to find the time in my 2 x 40 mins on the train every day. What are the steps? |
That's very easy to move out as it is already a fairly self contained module, and all the external package dependencies are superfluous and easily copied over (e.g., So the steps would be:
Alternatively, we could make the new package first and discuss merging into SpecialFunctions.jl later. |
I'll ask right now in SpecialFunctions.jl whether they'll take the HypergeometricFunctions module. Then proceed with either of your options when we hear back. |
You've basically already done this. I've bumped your issue, but it looks as though it'll be most expedient to create a new HypergeometricFunctions.jl package. Is it appropriate to put this in JuliaMath, or are there correctness restrictions on the packages therein? |
I created JuliaApproximation/HypergeometricFunctions.jl and invited you with write access. We can ask to move the repository to JuliaMath later if we wish. |
Under Julia v1.0.1 with SingularIntegralEquations.jl v0.4.0, every time when I start a new Julia session and run
using SingularIntegralEquations
, it forces to precompile the package even though there is no update. I had a similar problem in our own package recently, and I could resolve this problem by explicitly writingusing Random
in the source files where some functions in the Random package are used. The following is the warning I get each time I runusing SingularIntegralEquations
after a new Julia session starts. The situation does not change even after running] resolve
. This happens regardless I explicitly add Random.jl via] add Random
or not.The text was updated successfully, but these errors were encountered: