-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Backports for 1.2-RC1 #31727
Backports for 1.2-RC1 #31727
Conversation
(cherry picked from commit b08f120)
Using a WeakRef meant we might not actually `bind` the result. If nobody was still holding a reference to put contents into the Condition, we would simply garbage collect it, and then never need to close it. Since that does not seem to be the intent, instead move to just keeping a strong reference (alternatively, we would have to switch to using `stream_wait` with ref-counting, but that seems suboptimal for several reasons.). fix #31507 (cherry picked from commit 29f61cd)
* edit 1.2 release notes * Run NEWS-update.jl (cherry picked from commit ccd9574)
(cherry picked from commit bbb8eae)
(cherry picked from commit 20834c3)
(cherry picked from commit 3e6a893)
(cherry picked from commit 50ec39c)
Backported the non-feature part of #31489 |
@nanosoldier |
Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan |
Added #31687, merged both commits into one. |
Most Pkg regressions fixed. Need fix to #32084 and then we should rerun PkgEval. @nanosoldier |
Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan |
Looks pretty good overall. The sparse matmul memory regressions maybe deserve investigation, as do the |
BigFloat regressions are #31759. |
are right, thanks. |
It is possible when marking task objects in the GC for the associated jl_ptls_t reference to be NULL. To determine whether a task is a root task, we therefore also have to check if that reference is valid. (cherry picked from commit 25c33e4)
@nanosoldier |
Your benchmark job has completed - possible performance regressions were detected. A full report can be found here. cc @ararslan |
@staticfloat, could you double check my backport for your commit above this comment |
I think we should rerun PkgEval now @ararslan |
One minor issue, I have directly pushed the fix; it wasn't critical, but it's better this way. |
Newest PkgEval run regressions:
Logs are here: https://gist.github.com/ararslan/fd6edd0d6d3b61babab8cb7fe5b661f0. |
Merged and rc1 tagged. |
Backported PRs:
free
in subtyping #31668 - add a missingfree
in subtypingiterate
#31762 - fix Regression in iterate on Dicts vs 1.1 #31760, regression in Dictiterate
schedule
#31812 - fix incorrect error path inschedule
fieldtype_tfunc
#31848 - fix Fatal error in type inference in StatsModels #31803, covariance handling infieldtype_tfunc
jl_code_requires_compiler
#31967 - fix Regression with --compile=min for 1.2/master compared to 1.0/1.1 #31965, bug in interpreter stacktraces andjl_code_requires_compiler
Type{Vec}
andType{<:Vec{T}}
#31997 - fix ambiguity error with non-applicable methods #31993, intersection ofType{Vec}
andType{<:Vec{T}}
isa
fast path for typevars with lower bounds #32040 - fixisa
fast path for typevars with lower boundsEvent
from Base back to Threads #32043 - move export ofEvent
from Base back to Threadsview(a,:) .+= view(b,:)
#31300USE_BINARYBUILDER_xxx
whenUSE_SYSTEM_xxx
is set #31725 - Automatically disableUSE_BINARYBUILDER_xxx
whenUSE_SYSTEM_xxx
is setNon-merged PRs with backport label: