Ecosyste.ms: Timeline

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

JuliaLang/julia

aviatesk pushed 6 commits to avi/early-finalize-insertion JuliaLang/julia
  • Don't try to allocate new binding partitions from static show (#56298) In particular static show is used inside the ... be0ce9d
  • optimizer: early `finalize` insertion Currently, in the finalizer inlining pass, if not all the code between the fin... da88a0a
  • optimizer: cancel finalizer registration rather than inserting `finalize` This seems to perform well. ```julia muta... 59f2878
  • call `_cancel_finalizer` a bit earlier fe47f55
  • ignore `ThrownEscape` 463c68c
  • just null out cancelled finalizers dac914c

View on GitHub

aviatesk pushed 28 commits to avi/early-finalize-insertion JuliaLang/julia
  • Revert "Extensions: make loading of extensions independent of what packages are in the sysimage (#52841)" This rever... e3f2f6b
  • fix lookup when extension is in `[deps]` ad1dc39
  • REPL: fix brace detection when ' is used for transpose (#56252) 1c67d0c
  • remove new references to explicit_loaded_modules 319ee70
  • Add basic infrastructure for binding replacement (#56224) Now that I've had a few months to recover from the slog of... 8bdacc3
  • Specialize `haszero` for `Union{Missing,<:Number}` (#56169) Since `zero(::Union{Missing,T})` calls `zero(T)` interna... 82e0e28
  • Add small tweaks to juliac script and misc fixes to juliac (#56119) This comments out an assert thats currently faul... 6d7e29f
  • Warn about negative size in array construction (#56262) After this, ```julia julia> zeros(-1) ERROR: ArgumentErro... 11ef8eb
  • Revert "Reroute` (Upper/Lower)Triangular * Diagonal` through `__muldiag`" (#56267) Reverts JuliaLang/julia#55984 Th... cba1cc0
  • precompile: add error for using require_stdlib during precompile (#56233) This function could accidentally add a dep... 2188ba4
  • Fix indexing for block triangular matrices (#56168) Assuming that block matrices contain tiled elements (i.e. all el... f976541
  • trimming: don't abort where we used to resolve dynamic calls (#56271) This call resolution code was deleted in #5617... 1ba035d
  • inference: fix inference error from constructing invalid `TypeVar` (#56264) - fixes JuliaLang/julia#56248 08d11d0
  • add Pkg 1.11 news to HISTORY.md (#56277) Backport already on https://github.com/JuliaLang/julia/pull/56228 36593fd
  • Remove NewPM pass exports. (#56269) All ecosystem consumers have switched to the string-based API. 31f7df6
  • Revert "Extensions: make loading of extensions independent of what packages are in the sysimage (#52841) (#56234) Th... 5b677a1
  • jitlayers: use std::make_tuple instead of tuple constructor (#56287) this should be safer for the type deduction and... 7d4b2b7
  • move time_imports and trace_* macros to Base but remain owned by InteractiveUtils (#56276) This way all packages can... ab22f98
  • lowering: split `finally` blocks for exceptional control-flow (#55876) This change duplicates `finally` blocks in lo... 6de6b46
  • add recompile comment in --trace-compile in terminal color mode too (#56275) Update: Just adds the comment in color ... e4101b7
  • and 8 more ...

View on GitHub

sujang958 starred JuliaLang/julia
Keno deleted a branch JuliaLang/julia

kf/bindingsgcfix

Keno pushed 1 commit to master JuliaLang/julia
  • Don't try to allocate new binding partitions from static show (#56298) In particular static show is used inside the ... be0ce9d

View on GitHub

Keno closed a pull request on JuliaLang/julia
Don't try to allocate new binding partitions from static show
In particular static show is used inside the GC for profiling, which showed up as a segfault on CI, e.g. in https://buildkite.com/julialang/julia-master/builds/41407#0192b628-47f3-49f9-a081-cd2708...
ufechner7 created a comment on an issue on JuliaLang/julia
Is this fixed on 11.1? If yes, can this bug be closed?

View on GitHub

yijun-lee starred JuliaLang/julia
BioTurboNick created a comment on an issue on JuliaLang/julia
BinaryBuilder does this too.

View on GitHub

Keno opened a pull request on JuliaLang/julia
Teach compiler about partitioned bindings
This commit teaches to compiler to update its world bounds whenever it looks at a binding partition, making the compiler sound in the presence of a partitioned binding. The key adjustment is that t...
Keno created a branch on JuliaLang/julia

kf/compilerbindingpartition - The Julia Programming Language

Keno created a review comment on a pull request on JuliaLang/julia
You should be able to just iterate over users of this global rather than iterating through all statements, which is slow.

View on GitHub

Keno deleted a branch JuliaLang/julia

kf/curryinclude

Keno pushed 1 commit to master JuliaLang/julia
  • Use a curried helper for module-local eval/include (#55949) In https://github.com/JuliaLang/julia/pull/55466, the au... 73b85cf

View on GitHub

Keno closed a pull request on JuliaLang/julia
Use a curried helper for module-local eval/include
In https://github.com/JuliaLang/julia/pull/55466, the automatically added `include` method for non-bare modules was adjusted to conform the signature to the version of those methods in Main (defi...
Keno opened a pull request on JuliaLang/julia
Don't try to allocate new binding partitions from static show
In particular static show is used inside the GC for profiling, which showed up as a segfault on CI, e.g. in https://buildkite.com/julialang/julia-master/builds/41407#0192b628-47f3-49f9-a081-cd2708...
Keno created a branch on JuliaLang/julia

kf/bindingsgcfix - The Julia Programming Language

charleskawczynski created a comment on an issue on JuliaLang/julia
> they're all non-AbstractArrays who have axes and previously supported get/setindex with CartesianIndex alone? Yeah, that's accurate. I put a fair bit of work into removing multiple integer index...

View on GitHub

IanButterworth created a comment on an issue on JuliaLang/julia
No, Pkg isn't loaded during startup

View on GitHub

Keno created a review comment on a pull request on JuliaLang/julia
I mean the latter

View on GitHub

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

View on GitHub

udesou created a review comment on a pull request on JuliaLang/julia
Do you mean choosing MMTk as a runtime option or inlining the fastpath as a runtime option? The former is not really possible, at least not at this point. The latter should be possible, with maybe ...

View on GitHub

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

View on GitHub

PallHaraldsson created a comment on an issue on JuliaLang/julia
Does the have to do with this new REPL file https://github.com/JuliaLang/julia/blob/master/stdlib/REPL/src/Pkg_beforeload.jl Note: ``` julia> @time using Pkg 0.661828 seconds (414.84 k allocatio...

View on GitHub

Keno created a review comment on a pull request on JuliaLang/julia
I'd prefer it if this was a runtime option to the pass rather than a compiletime option.

View on GitHub

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

View on GitHub

nsajko created a comment on an issue on JuliaLang/julia
@gbaraldi what's the point with your example? As far as I see it's using different code paths so it seems irrelevant here? To be specific, the MWE is using a three-argument `*` method, while your ...

View on GitHub

nanosoldier created a comment on a pull request on JuliaLang/julia
[Your benchmark job](https://github.com/JuliaLang/julia/pull/56228#issuecomment-2429609566) has completed - possible performance regressions were detected. A full report can be found [here](https:/...

View on GitHub

nsajko created a comment on a pull request on JuliaLang/julia
@cyanescent are you still interested in this? Have you tried creating a new PR with a proper "feature" branch?

View on GitHub

IanButterworth closed an issue on JuliaLang/julia
The string `?(` bogs down REPL input to a crawl
This is a funny one. Having the character combination of `?(` anywhere in a REPL prompt — including in a string — makes input devastatingly slow. This is new in Julia v1.11. I'm on macOS 15.0.1 ...
Load more