Ecosyste.ms: Timeline

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

JuliaLang/julia

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 ...
IanButterworth pushed 1 commit to master JuliaLang/julia
  • REPL: Don't search for ?( completions when hinting (#56278) 049d92a

View on GitHub

IanButterworth closed a pull request on JuliaLang/julia
REPL: Don't search for ?( completions when hinting
Fixes https://github.com/JuliaLang/julia/issues/56272
nsajko created a comment on an issue on JuliaLang/julia
> Can you provide an example where the two definitions give different answers? 1. ```julia-repl julia> gcd(3//7, 6//7) 3//7 ``` 2. ```none (2) -> gcd(3/7, 6/7) (2) 1 ```

View on GitHub

ronisbr created a comment on an issue on JuliaLang/julia
Hi @gbaraldi ! > no longer gets inlined and we allocate because of it. Will those allocations happen on every call to that function (scalar x vector product) ? Or does it depend on the scenario? ...

View on GitHub

d-netto pushed 2 commits to dcn-all-task-profiler JuliaLang/julia
  • Some usability follow-ups and fixes for the world macro (#56273) 1. Allow fully qualified module names: `@world(Foo.... 7c1935d
  • all tasks profiler fd51095

View on GitHub

Keno pushed 23 commits to kf/curryinclude 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 3 more ...

View on GitHub

Keno deleted a branch JuliaLang/julia

kf/worldfollowup

Keno pushed 1 commit to master JuliaLang/julia
  • Some usability follow-ups and fixes for the world macro (#56273) 1. Allow fully qualified module names: `@world(Foo.... 7c1935d

View on GitHub

Keno closed a pull request on JuliaLang/julia
Some usability follow-ups and fixes for the world macro
1. Allow fully qualified module names: `@world(Foo.Bar.baz, 1)` 2. Correct the printing order of the world macro and module qualifier 3. Add pretty printing for Binding(Partition). Example of the...
Keno created a comment on a pull request on JuliaLang/julia
I will also note that `(@world 26866 Foo)(1)` does work and is often the thing that people actually want.

View on GitHub

Keno created a comment on a pull request on JuliaLang/julia
I thought about it some more and it's just too semantically messy right now. We have the invoke in world helper which people can use if they really want it, but otherwise, I don't think we want to ...

View on GitHub

Keno created a comment on a pull request on JuliaLang/julia
Not sure if it matters much, but about 4s for me.

View on GitHub

nsajko created a comment on an issue on JuliaLang/julia
The broadcasted assignment throwing is consistent with how broadcasting works, pretty sure there's nothing to improve on that side. The `=` *assignment* is really just syntax sugar for `setindex!(...

View on GitHub

TheBreadFarmer starred JuliaLang/julia
ericphanson opened a pull request on JuliaLang/julia
[REPL] raise default implicit `show` limit to 1MiB
https://github.com/JuliaLang/julia/pull/53959#issuecomment-2426946640 I would like to understand more where these issues are coming from; it would be easy to exempt some types from Base or Core ...
gbaraldi created a comment on an issue on JuliaLang/julia
This is an inlining change `│ %31 = invoke LinearAlgebra.broadcast(LinearAlgebra.:*::typeof(*), %29::Float64, X::SVector{3, Float64}, %30::Vararg{Any})::SMatrix{3, 3, Float64, 9}` no longer get...

View on GitHub

ronisbr created a comment on an issue on JuliaLang/julia
I can reproduce those results in macOS. I found some interesting scenarios based on the proposed MWE: If I use this version, I see all the allocations: ```julia function mwe2(a, X, n) local K...

View on GitHub

vtjnash created a branch on JuliaLang/julia

jn/require-init - The Julia Programming Language

vtjnash pushed 5 commits to jn/parallel-require-loading JuliaLang/julia
  • 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
  • drop require lock when not needed during loading Fixes _require_search_from_serialized to acquire all start_loading ... c05e8f6

View on GitHub

kaipartmann opened an issue on JuliaLang/julia
Large regression with StaticArrays in v1.11
As also described in https://github.com/JuliaArrays/StaticArrays.jl/issues/1282, there is a large performance regression with `v1.11` when using `StaticArrays`: ```julia using LinearAlgebra, Stati...
mbauman created a comment on an issue on JuliaLang/julia
Interesting — these look like they're all non-Arrays who have axes and support get/setindex with `CartesianIndex` alone?

View on GitHub

charleskawczynski created a comment on an issue on JuliaLang/julia
I'll try to make a reproducer at some point

View on GitHub

charleskawczynski opened an issue on JuliaLang/julia
Broadcast in Julia 1.11 requires `getindex`/`setindex!` to work on multiple integer indexing
This didn't used to be the case in Julia 1.10, and this new requirement means that we cannot reserve this indexing for special behavior. For example, the fix needed: https://github.com/CliMA/Clima...
Load more