-
Notifications
You must be signed in to change notification settings - Fork 5
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
Solve some deprecation warnings #286
Conversation
giordano
commented
Nov 15, 2024
``` ┌ Warning: mpiexec() is deprecated, use the non-do-block form │ caller = ip:0x0 └ @ Core :-1 ┌ Warning: `PDiagMat(dim::Int, diag::AbstractVector{<:Real})` is deprecated, use `PDiagMat(diag)` instead. │ caller = ip:0x0 └ @ Core :-1 ```
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #286 +/- ##
==========================================
- Coverage 92.48% 92.46% -0.02%
==========================================
Files 7 7
Lines 386 385 -1
==========================================
- Hits 357 356 -1
Misses 29 29 ☔ View full report in Codecov by Sentry. |
It appears deprecation warnings massively slow down runtime on Julia v1.12 (Julia Version 1.12.0-DEV.1638 Commit 55bdb54dd2e (2024-11-15 11:14 UTC)), compare TimerOutputs during tests on master (e74ca8c):
There's a slight improvement also for v1.11, but that's of the order of ~10%, not ~10x |