Ecosyste.ms: Timeline

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

JuliaLang/julia

aviatesk created a comment on a pull request on JuliaLang/julia
Now we have these remaining TODOs for the Julia-side refactoring: - Finalize the format for `sv.edges`. There might be cases where no `edge::CodeInstance` exists as a result of `abstract_call_m...

View on GitHub

jishnub created a comment on a pull request on JuliaLang/julia
This PR seems to worsen the latency in some unusual combinations: ```julia julia> using LinearAlgebra julia> A = rand(2,2); julia> @time Symmetric(A) * A'; 0.626372 seconds (2.43 M alloc...

View on GitHub

aviatesk pushed 79 commits to jn/codeinfo-edges JuliaLang/julia
  • add objects to concisely specify initialization PerProcess: once per process PerThread: once per thread id PerTask: ... 8a18f27
  • add precompile support for recording fields to change Somewhat generalizes our support for changing Ptr to C_NULL. N... a66733f
  • improve OncePer implementation Address reviewer feedback, add more fixes and more tests, rename to add Once prefix. dbbd4d9
  • fix use-after-free in test (detected in win32 CI) 9d56856
  • Some small follow-ups to stackless compiler (#55972) 1. Adjust the docstring for `Future`, which had its design chan... c07a40f
  • Break dependency between loading and Core.Compiler (#56186) This code was originally added in df81bf9a96c59f257a013... b7b79eb
  • Implement parallel sweeping of stack pools (#55643) Also use a round robin to only return stacks one thread at a tim... df5f437
  • add fenv cache to task struct (#51288) Fixes #51277, though we give no guarantee that it keeps working this way, or... 12aa9de
  • url relocation LinearAlgebra markdown (#56202) _cf_: https://github.com/JuliaLang/julia/issues/56147 .html and .p... 5c3f477
  • Update stable release tag to 1.11.1 in README.md (#56205) This still points to 1.10 and should be updated. e252877
  • Split reflection into compiler-dependent and compiler-independent pieces (#56185) The `reflection.jl` file provides ... 222cde9
  • Move EffectsOverride to expr.jl (#56187) It makes sense that we originally added this to the compiler, but these an... 7ee3ba9
  • Fix some grammatical errors on docstring of `GenericMemory` (#56197) bbd8158
  • Read views of destination in adjoint * adjoint (#56138) Also, add an aggressive constprop annotation to `generic_mat... 727a57e
  • Add context to `errorshow` `except_str` tests (#56199) With this, the error message in https://buildkite.com/julial... c4effc3
  • Include default user depot when JULIA_DEPOT_PATH has leading empty entry (#56195) af51bcc
  • Add news entry for `matprod_dest` (#56160) This was missed out in https://github.com/JuliaLang/julia/pull/55537 4329422
  • Improve type inference of nonmissingtype, nonnothingtype and of Ryu (#56120) Co-authored-by: Cody Tapscott <84105208... d32cc26
  • Limit implicit `show` in REPL to printing 20 KiB by default (#53959) closes https://github.com/JuliaLang/julia/issue... 6b95ac0
  • Add inferFunctionAttrsPass to the pipeline so that libfuncs get attributes (#52946) I doubt this will make too much ... c2e3498
  • and 59 more ...

View on GitHub

edward-bestx created a comment on an issue on JuliaLang/julia
As I already stated, it should not be printing an error which says `ArgumentError: Day: 111 out of range (1:30)`. That doesn't make any sense, because the user didn't pass `111` as the number of d...

View on GitHub

giordano created a comment on an issue on JuliaLang/julia
> It can see 9 digits have been supplied as input rather than the typical 8 which would be expected. So you want it to throw you an error for a mismatched input string/format? Which is what's alr...

View on GitHub

dkarrasch created a comment on a pull request on JuliaLang/julia
Just to play safe: @nanosoldier `runbenchmarks("linalg", vs = ":master")`

View on GitHub

edward-bestx created a comment on an issue on JuliaLang/julia
> How can the program possibly know you meant the year to have 5 digits if you literally put 4 ys there without mindreading capabilities? It doesn't need to have mind reading capabilities. It can ...

View on GitHub

d-netto pushed 5 commits to dcn-all-task-profiler JuliaLang/julia
  • REPL: Don't search for ?( completions when hinting (#56278) 049d92a
  • Use a curried helper for module-local eval/include (#55949) In https://github.com/JuliaLang/julia/pull/55466, the au... 73b85cf
  • Don't try to allocate new binding partitions from static show (#56298) In particular static show is used inside the ... be0ce9d
  • Fix fetching parent in symmetric algebra (#56286) We only need the `parent` of the result if it is a triangular matr... 5e4fb51
  • all tasks profiler 5b00668

View on GitHub

jishnub pushed 1 commit to jishnub/matmulenumdispatch JuliaLang/julia
  • Add `@stable_muladdmul` to `_symm_hemm_generic!` for `NONE` cbdea0a

View on GitHub

giordano created a comment on an issue on JuliaLang/julia
> Since the datetime format was specified as "yyyymmdd" there should perhaps be a warning that the number of digits for the year is 5 instead of 4. How can the program possibly know you meant the ...

View on GitHub

dkarrasch created a comment on a pull request on JuliaLang/julia
What's the effect on runtime, as this seems to introduce branches in "hot loops"?

View on GitHub

jishnub created a review comment on a pull request on JuliaLang/julia
Yes, you're right, although I think it might make sense to narrow its scope similar to https://github.com/JuliaLang/julia/pull/56289

View on GitHub

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

View on GitHub

jishnub deleted a branch JuliaLang/julia

jishnub/parentof_applytri

jishnub closed an issue on JuliaLang/julia
Scalar times Hermitian (`*(x::Float64, A::Hermitian{F, Diagonal{F, Vector{F}}})`) is broken
```julia julia> a = 1.0 D = Diagonal(randn(10)) a*Hermitian(D*D') ``` this yields ```julia ERROR: MethodError: no method matching Hermitian(::Vector{Float64}, ::Symbol) The type `Her...
jishnub closed an issue on JuliaLang/julia
Scalar times Hermitian (`*(x::Float64, A::Hermitian{F, Diagonal{F, Vector{F}}})`) is broken
```julia julia> a = 1.0 D = Diagonal(randn(10)) a*Hermitian(D*D') ``` this yields ```julia ERROR: MethodError: no method matching Hermitian(::Vector{Float64}, ::Symbol) The type `Her...
jishnub pushed 1 commit to master JuliaLang/julia
  • Fix fetching parent in symmetric algebra (#56286) We only need the `parent` of the result if it is a triangular matr... 5e4fb51

View on GitHub

jishnub closed a pull request on JuliaLang/julia
Fix fetching parent in symmetric algebra
We only need the `parent` of the result if it is a triangular matrix. For other structurally triangular matrices, such as `Diagonal`s, we may use these directly in the `Hermitian` constructor. T...
edward-bestx created a comment on an issue on JuliaLang/julia
By the way, if you disagree with my above suggestion please just close the issue as a non issue. I'm raising it because I am unsure if this is the behavior you would want to see or expect. Maybe it...

View on GitHub

edward-bestx created a comment on an issue on JuliaLang/julia
> Did you mean to write `"20241022"`? No, this is what I think is a bug. The date `200241022` should be interpreted as year=20024 October 22nd. It isn't interpreted as this - the month is 41 inst...

View on GitHub

dkarrasch created a review comment on a pull request on JuliaLang/julia
Do we want to aggressively const-propagate here?

View on GitHub

dkarrasch created a review comment on a pull request on JuliaLang/julia
Do we want/need the "`@stable_muladdmul`" (or whatever it's called) macro here?

View on GitHub

dkarrasch created a review on a pull request on JuliaLang/julia
Some thoughts, otherwise LGTM.

View on GitHub

dkarrasch created a review on a pull request on JuliaLang/julia
Some thoughts, otherwise LGTM.

View on GitHub

giordano created a comment on an issue on JuliaLang/julia
> Hi, just to follow up, is this issue solved? Does BLAS default to physical core count as of Julia 1.11.1? Technically no, as Julia itself has still no clue of the number of physical cores. > An...

View on GitHub

KristofferC created a comment on a pull request on JuliaLang/julia
The approach makes sense to me at leat.

View on GitHub

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

View on GitHub

jishnub pushed 668 commits to jishnub/matmulenumdispatch JuliaLang/julia
  • repl: Also ignore local imports with specified symbols (#54982) Otherwise it's trying to find the `.` package, which... 4b4468a
  • remove reference to a few stale GC environment variables (#54990) Did a quick grep and couldn't find any reference t... 6139779
  • NFC: create an actual set of functions to manipulate GC thread ids (#54984) Also adds a bunch of integrity constrain... 1fdc6a6
  • Add timing to precompile trace compile (#54962) I think this tool is there mainly to see what's taking so long, so ... f2558c4
  • RFC: Make `include_dependency(path; track_content=true)` the default (#54965) By changing the default to `true` we m... 6cf3a05
  • inference: add missing `MustAlias` widening in `_getfield_tfunc` (#54996) Otherwise it may result in missing `⊑` met... 7579659
  • remove stale objprofile (#54991) As mentioned in https://github.com/JuliaLang/julia/issues/54968, `OBJPROFILE` expo... 2712633
  • Don't require that `@inbounds` depends only on local information (#54270) Co-authored-by: Steven G. Johnson <stevenj... 1193997
  • Make ScopedValues public (#54574) ce4f090
  • delete possibly stale reset_gc_stats (#55015) See discussion in https://github.com/JuliaLang/julia/issues/55014. ... 34bacaa
  • staticdata: Unique Bindings by mod/name (#54993) Currently we error when attempting to serialize Bindings that do no... 8083506
  • Make the __init__ in GMP more statically compilable (#55012) Co-authored-by: Jeff Bezanson <[email protected]> c388382
  • mark a flaky Sockets test as broken (#55030) As suggested in https://github.com/JuliaLang/julia/issues/55008#issuec... 8f1f223
  • Support `@opaque Tuple{T,U...}->RT (...)->...` syntax for explicit arg/return types (#54947) This gives users a way ... a5f0016
  • Fix a regression in the test for #13432 (#55004) The test for #13432 is supposed to test a particular codegen path ... 5468a3e
  • remove unused jl_gc_alloc_*w (#55026) Closes https://github.com/JuliaLang/julia/issues/55024. 2e3628d
  • Point to ModernJuliaWorkflows in "getting started" (#55036) Add link to https://modernjuliaworkflows.github.io/ 140248e
  • LAPACK: annotate size check in `lacpy!` with `@noinline` for reduced latency (#55029) The `@noinline` annotation on ... 59f08df
  • Declare type for `libgcc_s` handles in CompilerSupportLibraries_jll (#55011) This improves the type stability of thi... 0d9404f
  • Some mailmap updates (#55048) Updating for consistency with more recent commits by authors. 7122311
  • and 648 more ...

View on GitHub

KristofferC created a comment on an issue on JuliaLang/julia
Did you mean to write `"20241022"`?

View on GitHub

ImVictorCheng created a comment on an issue on JuliaLang/julia
Hi, just to follow up, is this issue solved? Does BLAS default to physical core count as of Julia 1.11.1? And is physical core count truely better than logical count? I just ran some tests on my c...

View on GitHub

Load more