Ecosyste.ms: Timeline

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

JuliaLang/julia

oscardssmith closed an issue on JuliaLang/julia
Possible improvement in error messages for invalid array sizes
```julia julia> zeros(-1) ERROR: ArgumentError: invalid GenericMemory size: too large for system address width Stacktrace: [1] GenericMemory @ ./boot.jl:538 [inlined] [2] Array @ ./b...
oscardssmith deleted a branch JuliaLang/julia

jishnub/arrsizeneg

oscardssmith pushed 1 commit to master JuliaLang/julia
  • Warn about negative size in array construction (#56262) After this, ```julia julia> zeros(-1) ERROR: ArgumentErro... 11ef8eb

View on GitHub

oscardssmith closed a pull request on JuliaLang/julia
Warn about negative size in array construction
After this, ```julia julia> zeros(-1) ERROR: ArgumentError: invalid GenericMemory size: the number of elements is either negative or too large for system address width [...] ``` The error mes...
Keno created a comment on a pull request on JuliaLang/julia
I would complain a lot less about 1 MiB.

View on GitHub

KristofferC created a review comment on a pull request on JuliaLang/julia
It is partly related since this runs into https://github.com/JuliaLang/julia/issues/55939 due to how the manifest change with the revert. So it does in some sense already has a test.

View on GitHub

IanButterworth created a comment on a pull request on JuliaLang/julia
Is 20KiB just too low? 1MiB?

View on GitHub

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

Load more