Ecosyste.ms: Timeline

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

JuliaLang/julia

KristofferC created a comment on an issue on JuliaLang/julia
> So the output precompile(Tuple{typeof(Base.print), Base.TTY, String}) means that Julia had to compile this method while loading my session. Presumably, it would load faster if the method was prec...

View on GitHub

gbaraldi created a branch on JuliaLang/julia

gb/juliac-master - The Julia Programming Language

IanButterworth created a comment on an issue on JuliaLang/julia
A lot of it does seem to be compilation time ``` 264.1 ms REPL 40.88% compilation time ```

View on GitHub

Keno created a comment on a pull request on JuliaLang/julia
At the very least commands that are expected to produce large outputs (e.g. the various `@code` macros) need to be exempted.

View on GitHub

Keno created a comment on a pull request on JuliaLang/julia
I'm very much not a fan of this. Most of my REPL output is > 20KiB. I'd be ok with switching to a pager at this output size (with a quick keyboard shortcut to continue or interrupt), but forcing me...

View on GitHub

gbaraldi deleted a branch JuliaLang/julia

gb/misc-juliac

gbaraldi closed a pull request on JuliaLang/julia
Add small tweaks to juliac script and misc fixes to juliac
This comments out an assert thats currently faulty and also marks apply_iterate as safe when we can special case it to not dispatch
jishnub pushed 1 commit to master JuliaLang/julia
  • Specialize `haszero` for `Union{Missing,<:Number}` (#56169) Since `zero(::Union{Missing,T})` calls `zero(T)` interna... 82e0e28

View on GitHub

jishnub closed a pull request on JuliaLang/julia
Specialize `haszero` for `Union{Missing,<:Number}`
Since `zero(::Union{Missing,T})` calls `zero(T)` internally, we may use the same logic for `LinearAlgebra.haszero`. This helps with certain structured matrix operations: ```julia julia> M = Matri...
IanButterworth created a comment on an issue on JuliaLang/julia
For completeness can you run this (which looks like this on my m2 macbook) ``` % julia +1.11 --startup-file=no -e "using InteractiveUtils; @time @time_imports using REPL" 47.6 ms StyledString...

View on GitHub

topolarity created a review comment on a pull request on JuliaLang/julia
Is this `deps` lookup fix related? Does it need a test to match?

View on GitHub

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

View on GitHub

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

View on GitHub

topolarity created a review on a pull request on JuliaLang/julia
LGTM - nice to lift this restriction (which afaiu wasn't really solving our cycle problems anyway) I didn't look much at the code since I'm assuming this is a clean revert, but the revert seems ...

View on GitHub

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

View on GitHub

maleadt pushed 3 commits 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... cb575ab
  • fix precompile process flag propagation (#56214) CacheFlags could get set, but were never propagated to the target p... 592152c
  • Actually setup jit targets when compiling packageimages instead of targeting only one (#54471) Co-authored-by: Gabri... 9c8e43b

View on GitHub

topolarity created a review on a pull request on JuliaLang/julia
Thanks! Looks like an important safeguard. This should resolve https://github.com/JuliaLang/julia/pull/56005#issuecomment-2408706340 IIUC

View on GitHub

Keno pushed 1 commit to master JuliaLang/julia
  • Add basic infrastructure for binding replacement (#56224) Now that I've had a few months to recover from the slog of... 8bdacc3

View on GitHub

Keno closed a pull request on JuliaLang/julia
Add basic infrastructure for binding replacement
Now that I've had a few months to recover from the slog of adding `BindingPartition`, it's time to renew my quest to finish #54654. This adds the basic infrastructure for having multiple partitions...
mkitti created a comment on a pull request on JuliaLang/julia
> I don't think we want integrators to do that at all. This is completely anathema to what JLLs do. We want them to be immutable To be clear, I do not particularly want people to do this either, b...

View on GitHub

terasakisatoshi starred JuliaLang/julia
KristofferC created a comment on a pull request on JuliaLang/julia
@maleadt, seems like the llvmpasses test fails after backporting https://github.com/JuliaLang/julia/pull/56228/commits/9c94a386914d330f04a602a3aa9adf9ee9512979

View on GitHub

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

View on GitHub

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

View on GitHub

jishnub pushed 1 commit to jishnub/muldiag_tri_fix JuliaLang/julia

View on GitHub

jishnub opened a pull request on JuliaLang/julia
Fix multiplying a triangular matrix and a Diagonal
This fixes the bug introduced by https://github.com/JuliaLang/julia/pull/55984 Closes https://github.com/JuliaLang/julia/pull/56267
jishnub created a branch on JuliaLang/julia

jishnub/muldiag_tri_fix - The Julia Programming Language

IanButterworth closed an issue on JuliaLang/julia
`Error: Error in the keymap` in autocompleting properties involving copy of adjoint matrices
This is triggered by the `copy(A').` line in the following (might need to wait for a few seconds after the dot): ```julia julia> A = zeros(2,2) 2×2 Matrix{Float64}: 0.0 0.0 0.0 0.0 jul...
IanButterworth closed a pull request on JuliaLang/julia
REPL: fix brace detection when ' is used for transpose
Fixes https://github.com/JuliaLang/julia/issues/55856 Since https://github.com/JuliaLang/julia/pull/56041 it required pressing tab to hit the error, but this tries to fix the actual error.
KristofferC created a comment on an issue on JuliaLang/julia
I believe https://github.com/JuliaLang/julia/pull/56234/commits/ad1dc390e3123b65433ee06a651ca6de88c29914 (that is in #56234) should fix this.

View on GitHub

Load more