Ecosyste.ms: Timeline

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

JuliaLang/julia

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

View on GitHub

giordano created a comment on an issue on JuliaLang/julia
> https://github.com/JuliaLang/julia/pull/55802 changed stuff related to `muladd` which `pow` uses at > > https://github.com/JuliaLang/julia/blob/2a06376c18afd7ec875335070743dcebcd85dee7/base/math...

View on GitHub

PallHaraldsson created a comment on a pull request on JuliaLang/julia
Add my trivial approved speed-optimization #56308 to this? I.e. those 3 commits, I plan to add investigate and add more that might be non-trivial. This bug-fix #56278 too?

View on GitHub

d-netto pushed 8 commits to dcn-all-task-profiler JuliaLang/julia
  • Reduce generic matrix*vector latency (#56289) ```julia julia> using LinearAlgebra julia> A = rand(Int,4,4); x = ran... b9b4dfa
  • Type `Base.is_interactive` as `Bool` (#56303) Before, typing `Base.is_interactive = 7` would cause weird internal RE... 28b0abd
  • REPL: don't complete str and cmd macros when the input matches the internal name like `r_` to `r"` (#56254) 4236a33
  • fix REPL test if a "juliadev" directory exists in home (#56218) 0a6277d
  • Fix trampoline warning on x86 as well (#56280) 894296b
  • typeintersect: more fastpath to skip intersect under circular env (#56304) fix #56040 53ffe56
  • Preserve type in `first` for `OneTo` (#56263) With this PR, ```julia julia> first(Base.OneTo(10), 4) Base.OneTo(4) `... 2a06376
  • all tasks profiler 282b845

View on GitHub

diegozea opened an issue on JuliaLang/julia
zeros performance regression in Julia 1.11
Hi! I was trying to chase some performance regression, and I have found that the regression is possibly due to the `zeros` function being slower in Julia 1.11.1 compared to Julia 1.10.5—when we com...
aviatesk opened a pull request on JuliaLang/julia
inference: don't allow `SSAValue`s in assignment lhs
In `InferenceState` the lhs of a `:=` expression should only contain `GlobalRef` or `SlotNumber` and no other IR elements. Currently when `SSAValue` appears in `lhs`, the invalid assignment effect ...
aviatesk created a branch on JuliaLang/julia

avi/minor-correction-typeinf_local - The Julia Programming Language

putianyi889 created a comment on an issue on JuliaLang/julia
I'm into having a table to list the methods the types support, something similar to https://docs.julialang.org/en/v1/stdlib/LinearAlgebra/#Special-matrices

View on GitHub

nanosoldier created a comment on a pull request on JuliaLang/julia
The package evaluation job [you requested](https://github.com/JuliaLang/julia/pull/56228#issuecomment-2434730208) has completed - possible new issues were detected. The [**full report**](https://s3...

View on GitHub

jishnub pushed 1 commit to jishnub/matmulenumdispatch JuliaLang/julia
  • Remove Val from BlasFlag union variable 1dc825e

View on GitHub

nanosoldier commented on a commit on JuliaLang/julia
Executing the daily package evaluation, I will reply here when finished: @nanosoldier `runtests(isdaily = true)`

View on GitHub

jishnub created a comment on a pull request on JuliaLang/julia
I'm unsure where it features according to the current structure. We may think of adding a section in the future to include such auxiliary functions.

View on GitHub

KristofferC created a comment on an issue on JuliaLang/julia
> Note that https://github.com/JuliaLang/julia/pull/49405 first appeared in v1.10, and https://github.com/JuliaLang/julia/pull/55802 restored the muladd behaviour outside of @simd on master. I st...

View on GitHub

pogudingleb created a comment on an issue on JuliaLang/julia
Thanks, @N5N3 !

View on GitHub

KristofferC created a comment on an issue on JuliaLang/julia
> It's exact now, and used to have an error (within one ulp, probably?). Maybe I am dumb but isn't it the opposite?

View on GitHub

giordano created a comment on an issue on JuliaLang/julia
```console % julia +1.8 -E '10.0 ^ 68' 1.0000000000000001e68 % julia +1.9 -E '10.0 ^ 68' 1.0000000000000001e68 % julia +1.10 -E '10.0 ^ 68' 1.0e68 % julia +1.11 -E '10.0 ^ 68' 1.0e68 % julia +nigh...

View on GitHub

KristofferC pushed 2 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... 69ed5fd
  • Revert "Remove llvm-muladd pass and move it's functionality to to llvm-simdloop (#55802)" This reverts commit 69ed5f... 71838b9

View on GitHub

KristofferC created a branch on JuliaLang/julia

kc/backport_llvmpass - The Julia Programming Language

Seelengrab created a comment on an issue on JuliaLang/julia
Arguably, the new result is more correct, no? It's exact now, and used to have an error (within one ulp, probably?).

View on GitHub

N5N3 created a comment on an issue on JuliaLang/julia
@KristofferC That should be ok.

View on GitHub

jishnub pushed 1 commit to jishnub/eachindex JuliaLang/julia

View on GitHub

KristofferC created a comment on an issue on JuliaLang/julia
> Do you know if the fix gets in 1.11.2 ? I backported this so yes. @N5N3, to avoid merge conflicts I also backported https://github.com/JuliaLang/julia/pull/54745. Is that ok with you?

View on GitHub

KristofferC pushed 2 commits to backports-release-1.11 JuliaLang/julia
  • typeintersect: allocation tuning for large `UnionAll` (#54745) This PR tries to reduce the allocation caused by `sav... 716cf46
  • typeintersect: more fastpath to skip intersect under circular env (#56304) fix #56040 (cherry picked from commit 53... addff45

View on GitHub

jishnub pushed 1 commit to jishnub/lrscale JuliaLang/julia
  • Move `@stable_muladdmul` within `generic_mul!` dc14d7a

View on GitHub

KristofferC created a comment on an issue on JuliaLang/julia
It is strange to me how in ```julia ❯ julia +1.11.1 --startup-file=no -e "using InteractiveUtils; @time_imports @time using REPL" 30.6 ms StyledStrings 0.2 ms Unicode ...

View on GitHub

sumiya11 created a comment on an issue on JuliaLang/julia
@N5N3 Thank you very much for fixing this so quickly. Do you know if the fix gets in 1.11.2 ?

View on GitHub

jishnub opened a pull request on JuliaLang/julia
Scaling `mul!` for generic `AbstractArray`s
This improves performance in the scaling `mul!` for `StridedArray`s by using loops instead of broadcasting. ```julia julia> using LinearAlgebra julia> A = zeros(200,200); C = similar(A); ju...
KristofferC created a comment on a pull request on JuliaLang/julia
@nanosoldier `runtests(["BracedErrors", "JuliaSyntaxHighlighting", "Cosmology", "NeighbourLists", "QSFit", "SwitchOnSafety", "IncompressibleNavierStokes"])`

View on GitHub

KristofferC pushed 4 commits to backports-release-1.11 JuliaLang/julia
  • fix precompile process flag propagation (#56214) CacheFlags could get set, but were never propagated to the target p... 34a8c47
  • Actually setup jit targets when compiling packageimages instead of targeting only one (#54471) Co-authored-by: Gabri... ba0e9b9
  • Make ASAN build not be debug, following clangs recommendation (#54094) (cherry picked from commit 6c17db1ba12e8b6922... 7bc6e0c
  • add Pkg 1.11 NEWS 8d07746

View on GitHub

KristofferC created a comment on a pull request on JuliaLang/julia
Due to https://github.com/JuliaLang/julia/issues/56312 I will not backport this to 1.12.

View on GitHub

Load more