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 comment on a pull request on JuliaLang/julia
Oh, what, that seems a ridiculously bad assumption. That is literally expected to only be true in rare cases, and not commonly true most of the time: ```julia julia> V = view(A, 1:1, :) 1×2 view...

View on GitHub

oscardssmith created a comment on an issue on JuliaLang/julia
what closed this?

View on GitHub

oscardssmith created a comment on a pull request on JuliaLang/julia
looks like there are a few 8x (vectorization probably) failures here.

View on GitHub

vtjnash pushed 1 commit to master JuliaLang/julia
  • Split up the one big codegen lock into per-function locks and dependency edge tracking (#56179) Disjoint content can... cd99cfc

View on GitHub

vtjnash closed a pull request on JuliaLang/julia
Split up the one big codegen lock into per-function locks and dependency edge tracking
Disjoint content can be LLVM optimized in parallel now, since codegen no longer has any ability to handle recursion, and compilation should even be able to run in parallel with the GC also. Individ...
oscardssmith created a comment on a pull request on JuliaLang/julia
looks like more negative than positive, but lots of the negative is ~5%

View on GitHub

vtjnash created a comment on a pull request on JuliaLang/julia
Looks like it gave LLVM a little bit of trouble on a few benchmarks, but overall seemed potentially worth doing this for the simplification of everything. I am not sure that overall it matters that...

View on GitHub

IanButterworth created a comment on an issue on JuliaLang/julia
For reproducing locally, julia-runtest runs now show how to rerun locally with the same config https://github.com/julia-actions/julia-runtest/pull/124

View on GitHub

nanosoldier created a comment on a pull request on JuliaLang/julia
[Your benchmark job](https://github.com/JuliaLang/julia/pull/56236#issuecomment-2422771188) has completed - possible performance regressions were detected. A full report can be found [here](https:/...

View on GitHub

giordano created a comment on a pull request on JuliaLang/julia
@Vobarkun can you please test that this fully solves the issue for you? I could only check the avx512 features, I don't think I have currently access to a heterogeneous system where I can replicate...

View on GitHub

oscardssmith created a comment on a pull request on JuliaLang/julia
should be doable, but mostly unrelated. it would also probably be restricted to be not a bitsunion memory, or atomic memory, but I think it belongs in a followup pr

View on GitHub

nanosoldier created a comment on a pull request on JuliaLang/julia
[Your benchmark job](https://github.com/JuliaLang/julia/pull/56130#issuecomment-2422589980) has completed - possible performance regressions were detected. A full report can be found [here](https:/...

View on GitHub

giordano deleted a branch JuliaLang/julia

mg/precompile-avx512

giordano pushed 1 commit to master JuliaLang/julia
  • Do not call `rand` during sysimage precompilation (#56227) This change by itself doesn't do anything significant on ... f36f342

View on GitHub

giordano closed a pull request on JuliaLang/julia
Do not call `rand` during sysimage precompilation
This change by itself doesn't do anything significant on `master`, but when backported to the v1.11 branch it'll address #56177. However it'd be great if someone could tell _why_ this fixes that i...
giordano created a comment on a pull request on JuliaLang/julia
To show that this does fix #56177: ```console $ julia +pr56239 -E 'Base.current_image_targets()' Base.ImageTarget[znver4; flags=0; features_en=(sse3, pclmul, ssse3, fma, cx16, sse4.1, sse4.2, mo...

View on GitHub

d-netto pushed 1 commit to dcn-all-task-profiler JuliaLang/julia

View on GitHub

d-netto pushed 1 commit to dcn-all-task-profiler JuliaLang/julia

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/55746#issuecomment-2422190416) has completed - possible new issues were detected. The [**full report**](https://s3...

View on GitHub

d-netto pushed 6 commits to dcn-all-task-profiler JuliaLang/julia
  • fix infinite recursion in `promote_type` for `Irrational` (#55870) Fixes #51001 ca3713e
  • codegen: replace store of freeze in allocop and in emit new struct with memset since aggregate stores are bad (#55879... e5aff12
  • fix reporting of precompile configs on CI (#56232) Currently the header doesn't print for `Pkg.test` with coverage o... 1157c6f
  • stream: fix reading LibuvStream into array (#56092) Adds a new internal function `_take!(dst::Array{T,N}, src::Array... fc40e62
  • fix precompile process flag propagation (#56214) CacheFlags could get set, but were never propagated to the target ... 82b1506
  • all tasks profiler c652996

View on GitHub

IanButterworth created a comment on a pull request on JuliaLang/julia
For review-sake it now looks like this after this PR ![Screenshot 2024-10-18 at 4 16 01 PM](https://github.com/user-attachments/assets/c5b3c261-5883-4033-af17-e4ddf38633be)

View on GitHub

fatteneder created a comment on a pull request on JuliaLang/julia
> Is this how we get a Path type finally. I'd love that FWIW there is already https://juliahub.com/ui/Packages/General/FilePathsBase and https://juliahub.com/ui/Packages/General/FilePaths which ...

View on GitHub

jakobnissen closed a pull request on JuliaLang/julia
Define parent and parentindices for Array
The parent of an Array is the underlying Memory, and the parentindices are the indices of that Memory that corresponds to the Array. Closes #56238
d-netto created a review comment on a pull request on JuliaLang/julia
Yes, profile_lock is not a great name. Let's rename it to bt_data_lock to make it more explicit what data structure it's protecting (and also to avoid the name confusion).

View on GitHub

d-netto created a review on a pull request on JuliaLang/julia

View on GitHub

MasonProtter created a comment on a pull request on JuliaLang/julia
Is there a way to make `memorynew` able to take a pointer so it can be used with `unsafe_wrap`? Or would that just be a separate project without much overlap with this one? I ask because it'd b...

View on GitHub

ndrean starred JuliaLang/julia
jakobnissen created a comment on a pull request on JuliaLang/julia
Turns out this breaks code in Julia itself that relies on that assumption... :/

View on GitHub

jakobnissen created a comment on a pull request on JuliaLang/julia
How so? In that the package code relied on `parent(x::AbstractArray) === x`?

View on GitHub

oscardssmith created a comment on a pull request on JuliaLang/julia
I think this is relatively likely to break package code

View on GitHub

Load more