Ecosyste.ms: Timeline

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

JuliaLang/julia

vtjnash created a review on a pull request on JuliaLang/julia
I would have though “ made more sense for both methods though

View on GitHub

vtjnash commented on a commit on JuliaLang/julia
That is a lot of optimizer and inference slow downs

View on GitHub

PallHaraldsson created a comment on a pull request on JuliaLang/julia
This scales badly (independently of my code): ``` @code_native println("Palli ", "Palli ", "Palli ", "Palli ", "Palli ", "Palli ", "Palli ", "Palli ") ``` vs. already bad: ``` @code_nativ...

View on GitHub

PallHaraldsson created a comment on a pull request on JuliaLang/julia
Also: ``` println(xs...) = print(stdout, xs..., "\n") # 3 fewer allocations ``` Timing is better or same, but misleading? Those allocations would cost in the end with many in a loop? ``` ...

View on GitHub

PallHaraldsson created a comment on a pull request on JuliaLang/julia
Before and after seems to have strangly large code with calls. ``` @noinline println() = println(stdout) ``` seems to have no effect.

View on GitHub

PallHaraldsson opened a pull request on JuliaLang/julia
Faster println()
Would be nice to backport to 1.11.2 since common enough.
vtjnash created a review comment on a pull request on JuliaLang/julia
```suggestion if (overflow) ```

View on GitHub

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

View on GitHub

vtjnash created a review comment on a pull request on JuliaLang/julia
same comment here as to making it signed (or multiply elsz by 2) and adding 1

View on GitHub

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

View on GitHub

vtjnash created a review comment on a pull request on JuliaLang/julia
```suggestion if (!jl_is_long(argv[2].constant)) ``` (occasionally the `.typ` field is a bit less specific than the constant object)

View on GitHub

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

View on GitHub

vtjnash created a review comment on a pull request on JuliaLang/julia
style nit: usually we brace either all or none, like this ```suggestion } else { *ret = emit_memorynew(ctx, typ, argv[2], inst); } ```

View on GitHub

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

View on GitHub

vtjnash created a review comment on a pull request on JuliaLang/julia
style nit: missing this space elsewhere too ```suggestion if (argv[2].constant) { ```

View on GitHub

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

View on GitHub

vtjnash created a review comment on a pull request on JuliaLang/julia
```suggestion { jl_f_memorynew_addr, new JuliaFunction<>{XSTR(jl_f_memorynew), get_func_sig, get_func_attrs} }, ```

View on GitHub

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

View on GitHub

vtjnash created a review comment on a pull request on JuliaLang/julia
not true: this returns only 16 bytes for certain

View on GitHub

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

View on GitHub

PallHaraldsson opened an issue on JuliaLang/julia
22 ms startup regression on master (14% slower)
On just downloaded nightly: ``` $ hyperfine 'julia +nightly -e ""' Benchmark 1: julia +nightly -e "" Time (mean ± σ): 210.8 ms ± 17.7 ms [User: 297.9 ms, System: 74.5 ms] Range (min … m...
vtjnash created a review comment on a pull request on JuliaLang/julia
This arithmetic appears to be unsigned, while the overflow itself is supposed to be a signed check (or multiply elsz by 2 for the same effect)

View on GitHub

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

View on GitHub

N5N3 closed an issue on JuliaLang/julia
StackOverflowError during precompilation of StructuralIdentifiability on Julia 1.12
On Julia 1.12, version of October 7, 2024, the following command produces a StackOverflowError with the latest StructuralIdentifiability v0.5.9: ```julia ./julia -e "using StructuralIdentifiabili...
N5N3 closed an issue on JuliaLang/julia
StackOverflowError during precompilation of StructuralIdentifiability on Julia 1.12
On Julia 1.12, version of October 7, 2024, the following command produces a StackOverflowError with the latest StructuralIdentifiability v0.5.9: ```julia ./julia -e "using StructuralIdentifiabili...
N5N3 pushed 1 commit to master JuliaLang/julia
  • typeintersect: more fastpath to skip intersect under circular env (#56304) fix #56040 53ffe56

View on GitHub

N5N3 closed a pull request on JuliaLang/julia
typeintersect: more fastpath to skip intersect under circular env
fix #56040
vtjnash created a review comment on a pull request on JuliaLang/julia
we should probably also check that it is a GenericMemory subtype ```suggestion jl_datatype_t *jl_genericmemory_type_type = jl_datatype_type; JL_TYPECHK(memorynew, genericmemory_type, arg...

View on GitHub

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

View on GitHub

IanButterworth deleted a branch JuliaLang/julia

gb/trampoline

Load more