Ecosyste.ms: Timeline

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

JuliaLang/julia

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

aviatesk pushed 6 commits to avi/early-finalize-insertion JuliaLang/julia
  • Don't try to allocate new binding partitions from static show (#56298) In particular static show is used inside the ... be0ce9d
  • optimizer: early `finalize` insertion Currently, in the finalizer inlining pass, if not all the code between the fin... da88a0a
  • optimizer: cancel finalizer registration rather than inserting `finalize` This seems to perform well. ```julia muta... 59f2878
  • call `_cancel_finalizer` a bit earlier fe47f55
  • ignore `ThrownEscape` 463c68c
  • just null out cancelled finalizers dac914c

View on GitHub

aviatesk pushed 28 commits to avi/early-finalize-insertion JuliaLang/julia
  • Revert "Extensions: make loading of extensions independent of what packages are in the sysimage (#52841)" This rever... e3f2f6b
  • fix lookup when extension is in `[deps]` ad1dc39
  • REPL: fix brace detection when ' is used for transpose (#56252) 1c67d0c
  • remove new references to explicit_loaded_modules 319ee70
  • Add basic infrastructure for binding replacement (#56224) Now that I've had a few months to recover from the slog of... 8bdacc3
  • Specialize `haszero` for `Union{Missing,<:Number}` (#56169) Since `zero(::Union{Missing,T})` calls `zero(T)` interna... 82e0e28
  • Add small tweaks to juliac script and misc fixes to juliac (#56119) This comments out an assert thats currently faul... 6d7e29f
  • Warn about negative size in array construction (#56262) After this, ```julia julia> zeros(-1) ERROR: ArgumentErro... 11ef8eb
  • Revert "Reroute` (Upper/Lower)Triangular * Diagonal` through `__muldiag`" (#56267) Reverts JuliaLang/julia#55984 Th... cba1cc0
  • precompile: add error for using require_stdlib during precompile (#56233) This function could accidentally add a dep... 2188ba4
  • Fix indexing for block triangular matrices (#56168) Assuming that block matrices contain tiled elements (i.e. all el... f976541
  • trimming: don't abort where we used to resolve dynamic calls (#56271) This call resolution code was deleted in #5617... 1ba035d
  • inference: fix inference error from constructing invalid `TypeVar` (#56264) - fixes JuliaLang/julia#56248 08d11d0
  • add Pkg 1.11 news to HISTORY.md (#56277) Backport already on https://github.com/JuliaLang/julia/pull/56228 36593fd
  • Remove NewPM pass exports. (#56269) All ecosystem consumers have switched to the string-based API. 31f7df6
  • Revert "Extensions: make loading of extensions independent of what packages are in the sysimage (#52841) (#56234) Th... 5b677a1
  • jitlayers: use std::make_tuple instead of tuple constructor (#56287) this should be safer for the type deduction and... 7d4b2b7
  • move time_imports and trace_* macros to Base but remain owned by InteractiveUtils (#56276) This way all packages can... ab22f98
  • lowering: split `finally` blocks for exceptional control-flow (#55876) This change duplicates `finally` blocks in lo... 6de6b46
  • add recompile comment in --trace-compile in terminal color mode too (#56275) Update: Just adds the comment in color ... e4101b7
  • and 8 more ...

View on GitHub

sujang958 starred JuliaLang/julia
Keno deleted a branch JuliaLang/julia

kf/bindingsgcfix

Keno pushed 1 commit to master JuliaLang/julia
  • Don't try to allocate new binding partitions from static show (#56298) In particular static show is used inside the ... be0ce9d

View on GitHub

Keno closed a pull request on JuliaLang/julia
Don't try to allocate new binding partitions from static show
In particular static show is used inside the GC for profiling, which showed up as a segfault on CI, e.g. in https://buildkite.com/julialang/julia-master/builds/41407#0192b628-47f3-49f9-a081-cd2708...
ufechner7 created a comment on an issue on JuliaLang/julia
Is this fixed on 11.1? If yes, can this bug be closed?

View on GitHub

yijun-lee starred JuliaLang/julia
BioTurboNick created a comment on an issue on JuliaLang/julia
BinaryBuilder does this too.

View on GitHub

Keno opened a pull request on JuliaLang/julia
Teach compiler about partitioned bindings
This commit teaches to compiler to update its world bounds whenever it looks at a binding partition, making the compiler sound in the presence of a partitioned binding. The key adjustment is that t...
Keno created a branch on JuliaLang/julia

kf/compilerbindingpartition - The Julia Programming Language

Keno created a review comment on a pull request on JuliaLang/julia
You should be able to just iterate over users of this global rather than iterating through all statements, which is slow.

View on GitHub

Keno deleted a branch JuliaLang/julia

kf/curryinclude

Keno pushed 1 commit to master JuliaLang/julia
  • Use a curried helper for module-local eval/include (#55949) In https://github.com/JuliaLang/julia/pull/55466, the au... 73b85cf

View on GitHub

Keno closed a pull request on JuliaLang/julia
Use a curried helper for module-local eval/include
In https://github.com/JuliaLang/julia/pull/55466, the automatically added `include` method for non-bare modules was adjusted to conform the signature to the version of those methods in Main (defi...
Keno opened a pull request on JuliaLang/julia
Don't try to allocate new binding partitions from static show
In particular static show is used inside the GC for profiling, which showed up as a segfault on CI, e.g. in https://buildkite.com/julialang/julia-master/builds/41407#0192b628-47f3-49f9-a081-cd2708...
Keno created a branch on JuliaLang/julia

kf/bindingsgcfix - The Julia Programming Language

charleskawczynski created a comment on an issue on JuliaLang/julia
> they're all non-AbstractArrays who have axes and previously supported get/setindex with CartesianIndex alone? Yeah, that's accurate. I put a fair bit of work into removing multiple integer index...

View on GitHub

IanButterworth created a comment on an issue on JuliaLang/julia
No, Pkg isn't loaded during startup

View on GitHub

Keno created a review comment on a pull request on JuliaLang/julia
I mean the latter

View on GitHub

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

View on GitHub

udesou created a review comment on a pull request on JuliaLang/julia
Do you mean choosing MMTk as a runtime option or inlining the fastpath as a runtime option? The former is not really possible, at least not at this point. The latter should be possible, with maybe ...

View on GitHub

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

View on GitHub

Load more