Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

JuliaLang/julia

KristofferC pushed 47 commits to kc/revert_sysimnage_ext JuliaLang/julia
  • add objects to concisely specify initialization PerProcess: once per process PerThread: once per thread id PerTask: ... 8a18f27
  • add precompile support for recording fields to change Somewhat generalizes our support for changing Ptr to C_NULL. N... a66733f
  • improve OncePer implementation Address reviewer feedback, add more fixes and more tests, rename to add Once prefix. dbbd4d9
  • fix use-after-free in test (detected in win32 CI) 9d56856
  • Some small follow-ups to stackless compiler (#55972) 1. Adjust the docstring for `Future`, which had its design chan... c07a40f
  • Break dependency between loading and Core.Compiler (#56186) This code was originally added in df81bf9a96c59f257a013... b7b79eb
  • Implement parallel sweeping of stack pools (#55643) Also use a round robin to only return stacks one thread at a tim... df5f437
  • add fenv cache to task struct (#51288) Fixes #51277, though we give no guarantee that it keeps working this way, or... 12aa9de
  • url relocation LinearAlgebra markdown (#56202) _cf_: https://github.com/JuliaLang/julia/issues/56147 .html and .p... 5c3f477
  • Update stable release tag to 1.11.1 in README.md (#56205) This still points to 1.10 and should be updated. e252877
  • Split reflection into compiler-dependent and compiler-independent pieces (#56185) The `reflection.jl` file provides ... 222cde9
  • Move EffectsOverride to expr.jl (#56187) It makes sense that we originally added this to the compiler, but these an... 7ee3ba9
  • Fix some grammatical errors on docstring of `GenericMemory` (#56197) bbd8158
  • Read views of destination in adjoint * adjoint (#56138) Also, add an aggressive constprop annotation to `generic_mat... 727a57e
  • Add context to `errorshow` `except_str` tests (#56199) With this, the error message in https://buildkite.com/julial... c4effc3
  • Include default user depot when JULIA_DEPOT_PATH has leading empty entry (#56195) af51bcc
  • Add news entry for `matprod_dest` (#56160) This was missed out in https://github.com/JuliaLang/julia/pull/55537 4329422
  • Improve type inference of nonmissingtype, nonnothingtype and of Ryu (#56120) Co-authored-by: Cody Tapscott <84105208... d32cc26
  • Limit implicit `show` in REPL to printing 20 KiB by default (#53959) closes https://github.com/JuliaLang/julia/issue... 6b95ac0
  • Add inferFunctionAttrsPass to the pipeline so that libfuncs get attributes (#52946) I doubt this will make too much ... c2e3498
  • and 27 more ...

View on GitHub

KristofferC pushed 45 commits to kc/revert_sysimnage_ext JuliaLang/julia
  • Some small follow-ups to stackless compiler (#55972) 1. Adjust the docstring for `Future`, which had its design chan... 898df1e
  • Break dependency between loading and Core.Compiler (#56186) This code was originally added in df81bf9a96c59f257a013... 5819b41
  • Implement parallel sweeping of stack pools (#55643) Also use a round robin to only return stacks one thread at a tim... 0d145a9
  • add fenv cache to task struct (#51288) Fixes #51277, though we give no guarantee that it keeps working this way, or... 2af05c5
  • url relocation LinearAlgebra markdown (#56202) _cf_: https://github.com/JuliaLang/julia/issues/56147 .html and .p... 46a5d4d
  • Update stable release tag to 1.11.1 in README.md (#56205) This still points to 1.10 and should be updated. 4f8bb4d
  • Split reflection into compiler-dependent and compiler-independent pieces (#56185) The `reflection.jl` file provides ... 2e75c0a
  • Move EffectsOverride to expr.jl (#56187) It makes sense that we originally added this to the compiler, but these an... 2442fb5
  • Fix some grammatical errors on docstring of `GenericMemory` (#56197) 5c70068
  • Read views of destination in adjoint * adjoint (#56138) Also, add an aggressive constprop annotation to `generic_mat... c77ccbe
  • Add context to `errorshow` `except_str` tests (#56199) With this, the error message in https://buildkite.com/julial... a4f07c6
  • Include default user depot when JULIA_DEPOT_PATH has leading empty entry (#56195) 2304cb1
  • Add news entry for `matprod_dest` (#56160) This was missed out in https://github.com/JuliaLang/julia/pull/55537 0f0a20b
  • Improve type inference of nonmissingtype, nonnothingtype and of Ryu (#56120) Co-authored-by: Cody Tapscott <84105208... 6625b40
  • Limit implicit `show` in REPL to printing 20 KiB by default (#53959) closes https://github.com/JuliaLang/julia/issue... 7a63789
  • Add inferFunctionAttrsPass to the pipeline so that libfuncs get attributes (#52946) I doubt this will make too much ... fe786c7
  • Fix printing of `AbstractDict`s with unknown length (#56009) Also fix interacting with them at the REPL. Fixes #5... 2e33c58
  • module: Prepare `usings` array for world age partition (#55357) This is a relatively independent part of the binding... 636008a
  • add objects to concisely specify initialization PerProcess: once per process PerThread: once per thread id PerTask: ... e9bfc9c
  • add precompile support for recording fields to change Somewhat generalizes our support for changing Ptr to C_NULL. N... 0438f2a
  • and 25 more ...

View on GitHub

KristofferC created a comment on an issue on JuliaLang/julia
I think this code has to look in deps as well: https://github.com/JuliaLang/julia/blob/04259daf8a339f99d7cd8503d9c1f154b247e4e1/base/loading.jl#L1003-L1019 That is what failed CI in https://gith...

View on GitHub

Keno pushed 49 commits to kf/curryinclude JuliaLang/julia
  • add objects to concisely specify initialization PerProcess: once per process PerThread: once per thread id PerTask: ... 8a18f27
  • add precompile support for recording fields to change Somewhat generalizes our support for changing Ptr to C_NULL. N... a66733f
  • improve OncePer implementation Address reviewer feedback, add more fixes and more tests, rename to add Once prefix. dbbd4d9
  • fix use-after-free in test (detected in win32 CI) 9d56856
  • Remove zero arg methods of `+` and `*` from linalg tests (#56184) There are tests elsewhere that i) make sure there ... f5937b4
  • optimizer: allow EA-powered `finalizer` inlining (#55954) E.g. this allows `finalizer` inlining in the following cas... b19a7c1
  • Some small follow-ups to stackless compiler (#55972) 1. Adjust the docstring for `Future`, which had its design chan... c07a40f
  • Break dependency between loading and Core.Compiler (#56186) This code was originally added in df81bf9a96c59f257a013... b7b79eb
  • Implement parallel sweeping of stack pools (#55643) Also use a round robin to only return stacks one thread at a tim... df5f437
  • add fenv cache to task struct (#51288) Fixes #51277, though we give no guarantee that it keeps working this way, or... 12aa9de
  • url relocation LinearAlgebra markdown (#56202) _cf_: https://github.com/JuliaLang/julia/issues/56147 .html and .p... 5c3f477
  • Update stable release tag to 1.11.1 in README.md (#56205) This still points to 1.10 and should be updated. e252877
  • Split reflection into compiler-dependent and compiler-independent pieces (#56185) The `reflection.jl` file provides ... 222cde9
  • Move EffectsOverride to expr.jl (#56187) It makes sense that we originally added this to the compiler, but these an... 7ee3ba9
  • Fix some grammatical errors on docstring of `GenericMemory` (#56197) bbd8158
  • Read views of destination in adjoint * adjoint (#56138) Also, add an aggressive constprop annotation to `generic_mat... 727a57e
  • Add context to `errorshow` `except_str` tests (#56199) With this, the error message in https://buildkite.com/julial... c4effc3
  • Include default user depot when JULIA_DEPOT_PATH has leading empty entry (#56195) af51bcc
  • Add news entry for `matprod_dest` (#56160) This was missed out in https://github.com/JuliaLang/julia/pull/55537 4329422
  • Improve type inference of nonmissingtype, nonnothingtype and of Ryu (#56120) Co-authored-by: Cody Tapscott <84105208... d32cc26
  • and 29 more ...

View on GitHub

maleadt opened a pull request on JuliaLang/julia
Remove NewPM pass exports.
All ecosystem consumers have switched to the string-based API. I don't think we even ever used these; even before LLVM.jl switch to the string API for pipelines, we added individual passes by name ...
maleadt created a branch on JuliaLang/julia

tb/rm_newpm_exports - The Julia Programming Language

gbaraldi pushed 107 commits to gb/misc-juliac JuliaLang/julia
  • fix `_growbeg!` unncessary resizing (#56029) This was very explicitly designed such that if there was a bunch of ex... d4ca92c
  • REPL: hide any prints to stdio during `complete_line` (#55959) 84a2458
  • teach llvm-alloc-helpers about `gc_loaded` (#56030) combined with https://github.com/JuliaLang/julia/pull/55913, the... ce83853
  • mpfr: prevent changing precision (#56049) Changing precision requires reallocating the data field, which is better ... 6fa4af5
  • stackwalk: fix jl_thread_suspend_and_get_state race (#56047) There was a missing re-assignment of old = -1; at the e... 224ff57
  • irrationals: restrict assume effects annotations to known types (#55886) Other changes: * replace `:total` with the... d60837f
  • update `hash` doc string: `widen` not required any more (#55867) Implementing `widen` isn't a requirement any more, ... e95860c
  • Merge `diag` methods for triangular matrices (#56086) a233425
  • slightly improve inference in precompilation code (#56084) Avoids the ``` 11: signature Tuple{typeof(convert), T... dc609a7
  • avoid defining `convert(Vector{String}, ...)` in LibGit2 (#56082) This is a weird conversion function to define. See... a007e80
  • array: inline `convert` where possible (#56034) This improves a common scenario, where someone wants to `push!` a p... 7466552
  • Remove some unnecessary `real` specializations for structured matrices (#56083) The `real(::AbstractArray{<:Rea})` f... 055e37e
  • Combine `diag` methods for `SymTridiagonal` (#56014) Currently, there are two branches, one for an `eltype` that is ... 41b1778
  • fix `Vararg{T,T} where T` crashing `code_typed` (#56081) Not sure this is the right place to fix this error, perhaps... d55f38a
  • [libblastrampoline_jll] Upgrade to v5.11.1 (#56094) v5.11.1 is a patch release with a couple of RISC-V fixes. 8169e01
  • Revert "REPL: hide any prints to stdio during `complete_line`" (#56102) 9c619c3
  • Remove warning from c when binding is ambiguous (#56103) 1438b15
  • make `Base.ANSIIterator` have a concrete field (#56088) Avoids the invalidation ``` backedges: 1: superseding... 9844d85
  • Subtype: some performance tuning. (#56007) The main motivation of this PR is to fix #55807. dc689fe8700f70f4a4e2dba... f3a36d7
  • rearrange jl_delete_thread to be thread-safe (#56097) Prior to this, especially on macOS, the gc-safepoint here woul... 0d09f3d
  • and 87 more ...

View on GitHub

maleadt created a comment on an issue on JuliaLang/julia
I guess this can be closed now that https://github.com/JuliaLang/julia/pull/56239 has been merged in the backports branch.

View on GitHub

maleadt closed an issue on JuliaLang/julia
avx512 features no longer detected in target images in v1.11
I use julia on a heterogeneous compute cluster, consisting of many different nodes with different CPUs, but using a single shared file system. This has created problems before: In 1.10, precompilat...
maleadt pushed 1 commit to backports-release-1.11 JuliaLang/julia
  • Actually setup jit targets when compiling packageimages instead of targeting only one (#54471) Co-authored-by: Gabri... ff4549d

View on GitHub

maleadt closed a pull request on JuliaLang/julia
[backports-release-1.11] Actually setup jit targets when compiling packageimages instead of targeting only one (#54471)
Specific backport for https://github.com/JuliaLang/julia/pull/54471 for consideration given https://github.com/JuliaLang/julia/pull/54471#issuecomment-2422327880 Would fix https://github.com/Jul...
knuesel opened an issue on JuliaLang/julia
Regression in startup time to full REPL
The startup time to show a full REPL has significantly increased from 1.10 to 1.11.1: ``` $ time julia +1.10 --startup-file=no -e "using REPL; exit()" ____________________________________________...
KristofferC created a comment on a pull request on JuliaLang/julia
@IanButterworth, I attempted a cherry-pick as well. It seems to work ok.

View on GitHub

KristofferC pushed 1 commit to backports-release-1.11 JuliaLang/julia
  • fix precompile process flag propagation (#56214) CacheFlags could get set, but were never propagated to the target p... 13b69b1

View on GitHub

jishnub opened a pull request on JuliaLang/julia
Revert "Reroute` (Upper/Lower)Triangular * Diagonal` through `__muldiag`"
Reverts JuliaLang/julia#55984 This PR was buggy, but the test failures as seen in https://buildkite.com/julialang/julia-master/builds/41300#0192adab-9d07-4900-8592-2d46aff26905 were not caught i...
jishnub created a branch on JuliaLang/julia

revert-55984-jishnub/muldiag_dispatch - The Julia Programming Language

cheengshuchin created a comment on an issue on JuliaLang/julia
So this is a discussion thread for feature requests by throwing an issue thicket in here?! if this is the case, I have to say "Sorry" to all... as I just trying to help by offering another way to ...

View on GitHub

jishnub opened an issue on JuliaLang/julia
Failure in revise test
In https://buildkite.com/julialang/julia-master/builds/41308#0192ae1c-c55b-4384-877e-72b709138977, the `Revise` test errors with ```julia Starting test Base & stdlib file paths 7-element Vector{Tup...
KristofferC created a comment on an issue on JuliaLang/julia
FWIW, it "works" on 1.10.

View on GitHub

jakobnissen opened an issue on JuliaLang/julia
Segfault when `unsafe_load`ing inbounds pointer
I'm not sure if this is expected behaviour, but I couldn't find any information about expected alignment in Julia. Code to reproduce: ```julia julia> using SIMD julia> s = b"AAAAAAAAAAAAAABBBBBCB...
KristofferC created a comment on an issue on JuliaLang/julia
Please open a new issue with a reproducer there to keep things separate and actionable.

View on GitHub

maleadt pushed 1 commit to backports-release-1.11 JuliaLang/julia
  • Remove llvm-muladd pass and move it's functionality to to llvm-simdloop (#55802) Provides no-op fallbacks for compat... 9c94a38

View on GitHub

motuncoded starred JuliaLang/julia
KristofferC created a review comment on a pull request on JuliaLang/julia
This is not needed because `io` is now inferred?

View on GitHub

KristofferC created a review on a pull request on JuliaLang/julia

View on GitHub

Hastws starred JuliaLang/julia
tpapp created a comment on an issue on JuliaLang/julia
@cheengshuchin: It is understood that you can work around this issue with a closure (and a macro, etc), that is not the point of opening an issue. Please continue unrelated discussion on Discourse.

View on GitHub

maleadt created a comment on a pull request on JuliaLang/julia
> Someone else backport this then. I'll have a look.

View on GitHub

cybersecurity-dev starred JuliaLang/julia
aviatesk pushed 10 commits to avi/early-finalize-insertion JuliaLang/julia
  • REPL: run repl hint generation for modeswitch chars when not switching (#56251) Fixes https://github.com/JuliaLang/j... 1fd7ada
  • 🤖 [master] Bump the Pkg stdlib from 27c1b1ee5 to 799dc2d54 (#56257) Stdlib: Pkg URL: https://github.com/JuliaLang/P... a4a4b95
  • Make isbitstypes use memmove instead of the runtime function in copyto! (#56237) This might help llvm understand wha... fee8090
  • Fix kron indexing for types without a unique zero (#56229) This fixes a bug introduced in https://github.com/JuliaL... b01095e
  • Reroute` (Upper/Lower)Triangular * Diagonal` through `__muldiag` (#55984) Currently, `::Diagonal * ::AbstractMatrix`... 04259da
  • optimizer: early `finalize` insertion Currently, in the finalizer inlining pass, if not all the code between the fin... ad5337b
  • optimizer: cancel finalizer registration rather than inserting `finalize` This seems to perform well. ```julia muta... aab7d83
  • call `_cancel_finalizer` a bit earlier 64fbd63
  • ignore `ThrownEscape` c78131a
  • just null out cancelled finalizers d3cab63

View on GitHub

Load more