Ecosyste.ms: Timeline

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

JuliaLang/julia

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

edward-bestx opened an issue on JuliaLang/julia
Possible bug when interpreting date format from string `200241022`
I think I may have found a potential bug when interpreting the following string as a date: ``` arg = "200241022" date::Date = Date(arg, "yyyymmdd") ``` Which produces the following error. ``` ER...
jishnub pushed 1 commit to jishnub/matvecmul JuliaLang/julia
  • Split branches into separate functions ff1a06c

View on GitHub

maleadt opened a pull request on JuliaLang/julia
llvmpasses: skip vectorization checks on non-x86.
The pipeline-prints test currently fails when running on an aarch64-macos device: ``` /Users/tim/Julia/src/julia/test/llvmpasses/pipeline-prints.ll:309:23: error: AFTERVECTORIZATION: expected s...
maleadt created a branch on JuliaLang/julia

tb/llvmpasses - The Julia Programming Language

KristofferC created a comment on an issue on JuliaLang/julia
Someone needs to identify the fix.

View on GitHub

wsmoses created a comment on an issue on JuliaLang/julia
gentle bump for backporting the fix

View on GitHub

bvdmitri created a comment on an issue on JuliaLang/julia
> One resolution for this would be a new hasmethod_n_args(n) intrinsic. This approach would be much clearer, as `hasmethod(g, Tuple{Union{}, Union{}})` is quite obscure for someone unfamiliar wit...

View on GitHub

Load more