Ecosyste.ms: Timeline

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

JuliaLang/julia

jishnub pushed 1 commit to jishnub/onetofirst JuliaLang/julia

View on GitHub

aviatesk opened a pull request on JuliaLang/julia
inference: fix inference error from constructing invalid `TypeVar`
- fixes JuliaLang/julia#56248
aviatesk pushed 1 commit to avi/56248 JuliaLang/julia
  • inference: fix inference error from constructing invalid `TypeVar` - fixes JuliaLang/julia#56248 0e261d8

View on GitHub

aviatesk created a branch on JuliaLang/julia

avi/56248 - The Julia Programming Language

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

View on GitHub

jishnub created a branch on JuliaLang/julia

jishnub/onetofirst - The Julia Programming Language

jishnub pushed 1 commit to backports-release-1.11 JuliaLang/julia
  • Specialize adding/subtracting mixed Upper/LowerTriangular (#56149) 168f7e7

View on GitHub

jishnub opened a pull request on JuliaLang/julia
Warn about negative size in array construction
After this, ```julia julia> zeros(-1) ERROR: ArgumentError: invalid GenericMemory size: the number of elements is either negative or too large for system address width [...] ``` The error mes...
vchuravy created a comment on a pull request on JuliaLang/julia
@nanosoldier `runtests(ALL, vs = ":master", configuration = (buildflags=["LLVM_ASSERTIONS=1", "FORCE_ASSERTIONS=1"],), vs_configuration = (buildflags = ["LLVM_ASSERTIONS=1", "FORCE_ASSERTIONS=1"],))`

View on GitHub

vchuravy created a review comment on a pull request on JuliaLang/julia
Coould we have an IR test for this?

View on GitHub

vchuravy created a review comment on a pull request on JuliaLang/julia
```suggestion std::move(LPM), /*UseMemorySSA=*/false, /*UseBlockFrequencyInfo=*/false)); ```

View on GitHub

vchuravy created a review comment on a pull request on JuliaLang/julia
```suggestion // XXX: This should really do a dataflow analysis but assuming worst case means that we will always have enough space ```

View on GitHub

vchuravy created a review comment on a pull request on JuliaLang/julia
Formatting

View on GitHub

vchuravy created a review comment on a pull request on JuliaLang/julia
```suggestion // XXX: This should really do a dataflow analysis but assuming worst case means that we will always have enough space ```

View on GitHub

vchuravy created a review comment on a pull request on JuliaLang/julia
What if `TrueSRet == FalseSRet` but it hasn't been eliminated yet?

View on GitHub

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

View on GitHub

vchuravy created a review comment on a pull request on JuliaLang/julia
Formatting?

View on GitHub

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

View on GitHub

vchuravy created a review comment on a pull request on JuliaLang/julia
With something like #56188 this may fail if we use `llvm.compiler.used`.

View on GitHub

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

View on GitHub

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

View on GitHub

nanosoldier commented on a commit on JuliaLang/julia
The package evaluation job [you requested](https://github.com/JuliaLang/julia/commit/e08280a24fba1b5f1ecf5dce7d8b974d880dae5a#commitcomment-148138733) has completed - possible new issues were detec...

View on GitHub

jishnub created a comment on a pull request on JuliaLang/julia
I wonder if `diagview` should accept an argument to specify if the view should be translated to the parent? By default, it may return a view into the top-level array as in this PR, but one may opt ...

View on GitHub

jishnub pushed 38 commits to jishnub/addmul_atol 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
  • 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
  • Fix printing of `AbstractDict`s with unknown length (#56009) Also fix interacting with them at the REPL. Fixes #5... afb65fa
  • module: Prepare `usings` array for world age partition (#55357) This is a relatively independent part of the binding... eb3ed5e
  • Add a convenience object for expressing once-like / per-runtime patterns (#55793) This adds 3 new types, to convenie... d36417b
  • [REPL] fix lock ordering mistake in load_pkg (#56215) Fixes #56206 1f935af
  • REPL: fix unsafe_write return type (#56220) Fixes: #56219 I am not really sure why we have a test for this, but w... 1cf3842
  • Fix triu/tril for partly initialized matrices (#55312) This fixes ```julia julia> using LinearAlgebra, StaticArray... f1990e2
  • Specialize adding/subtracting mixed Upper/LowerTriangular (#56149) Fixes https://github.com/JuliaLang/julia/issues/5... e33c6a8
  • juliac: remove call to jl_set_newly_inferred (#56222) Moved in #56186 6317e02
  • Fix `goto` insertion when dom-sorting IR in `slot2ssa` pass (#56189) Fix-up this pass a bit to correctly handle fall... a64ffa3
  • fix infinite recursion in `promote_type` for `Irrational` (#55870) Fixes #51001 ca3713e
  • and 18 more ...

View on GitHub

jishnub closed a pull request on JuliaLang/julia
Reroute` (Upper/Lower)Triangular * Diagonal` through `__muldiag`
Currently, `::Diagonal * ::AbstractMatrix` calls the method `LinearAlgebra.__muldiag!` in general that scales the rows, and similarly for the diagonal on the right. The implementation of `__muldiag...
jishnub deleted a branch JuliaLang/julia

jishnub/kronfix

jishnub pushed 1 commit to master JuliaLang/julia
  • Fix kron indexing for types without a unique zero (#56229) This fixes a bug introduced in https://github.com/JuliaL... b01095e

View on GitHub

jishnub closed a pull request on JuliaLang/julia
Fix kron indexing for types without a unique zero
This fixes a bug introduced in https://github.com/JuliaLang/julia/pull/55941. We may also take this opportunity to limit the scope of the `@inbounds` annotations, and also use `axes` to compute ...
MilesCranmer created a comment on an issue on JuliaLang/julia
Seeing this on SymbolicRegression.jl too. The latency is so large I had to switch back to 1.10 for development.

View on GitHub

vchuravy deleted a branch JuliaLang/julia

gb/memmove-memory

Load more