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 3 commits to dcn-all-task-profiler JuliaLang/julia
  • 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
  • all tasks profiler 72a58f8

View on GitHub

xili-h created a comment on a pull request on JuliaLang/julia
> Thanks for looking into this, @xili-h! This is a good specialization to have. > > This clearly has higher performance than the generic fallback, especially because the indices themselves have ...

View on GitHub

oscardssmith created a comment on an issue on JuliaLang/julia
It looks like the thing that pushes it over the inlining threshold is the (unnecessary) check ``` if length(a) != length(xs) throw(ArgumentError("argument count does not match specified...

View on GitHub

oscardssmith pushed 1 commit to master JuliaLang/julia
  • add recompile comment in --trace-compile in terminal color mode too (#56275) Update: Just adds the comment in color ... e4101b7

View on GitHub

oscardssmith closed a pull request on JuliaLang/julia
add recompile comment in --trace-compile in terminal color mode too
Update: Just adds the comment in color terminal mode too --- I didn't think adding the `# recompile` text to the end in the repl was a good idea as it increases likelihood of text wrapping. ...
oscardssmith created a comment on an issue on JuliaLang/julia
With the following example, I do think a `hasmethod` type version of this won't work well. ``` julia> g(u::Float64,p) = u g (generic function with 1 method) julia> g(u::Int,p) = u g (generic funct...

View on GitHub

Keno created a comment on a pull request on JuliaLang/julia
I think it's reasonable, but there's a bit of a problem that you're not technically supposed to be able to add additional code to old worlds. We could add a limited feature where only the outermos...

View on GitHub

topolarity created a comment on an issue on JuliaLang/julia
> Covered by exactly one method is the actual definition of this query, since that is the definition used by invoke, and this does the same query as invoke during runtime Right, I see - this is em...

View on GitHub

topolarity pushed 1 commit to master JuliaLang/julia
  • lowering: split `finally` blocks for exceptional control-flow (#55876) This change duplicates `finally` blocks in lo... 6de6b46

View on GitHub

topolarity closed a pull request on JuliaLang/julia
lowering: split `finally` blocks for exceptional control-flow
This change duplicates `finally` blocks in lowered IR, so that they can have a static nesting depth in the `try-catch` hierarchy. Previously, `finally` control-flow looked like this: ``` err...
MilesCranmer created a comment on a pull request on JuliaLang/julia
I added the test to the jldoctest. Lmk if that's good enough or not. The code for the vector unittests will now hit the tuple version though so should be tested elsewhere anyways.

View on GitHub

jishnub pushed 1 commit to jishnub/matvecmul JuliaLang/julia
  • Restore _generic_matvecmul! method that accepts a MulAddMul 00c2e6f

View on GitHub

LilithHafner created a comment on a pull request on JuliaLang/julia
We should definitely accept tuples if the length is known at design time (which it is). This should have tests. Tagging triage because it's a new API

View on GitHub

mbauman created a comment on an issue on JuliaLang/julia
I think this is slightly different, and the minimal thing — erroring if a `--flag` arg is itself a flag without an explicit `=` — could be categorized as a UX bugfix.

View on GitHub

fredrikekre created a comment on an issue on JuliaLang/julia
Could probably be folded into #29669

View on GitHub

vtjnash created a review comment on a pull request on JuliaLang/julia
This PR works, but probably not for the reasons you intended. You're trying to using the local variable `f55729` as a global, causing nothing to happen: ```UndefVarError: `f55729` not defined in `...

View on GitHub

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

View on GitHub

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

View on GitHub

gbaraldi created a comment on a pull request on JuliaLang/julia
Pending review comments LGTM!

View on GitHub

d-netto pushed 2 commits to dcn-all-task-profiler JuliaLang/julia
  • move time_imports and trace_* macros to Base but remain owned by InteractiveUtils (#56276) This way all packages can... ab22f98
  • all tasks profiler e12822b

View on GitHub

p2er1n starred JuliaLang/julia
d-netto created a comment on a pull request on JuliaLang/julia
> Is it expected that the currently-scheduled tasks seem to have their stacks starting at a different frame than the waiting tasks? Good question, I don't know. Will investigate this.

View on GitHub

gbaraldi created a review comment on a pull request on JuliaLang/julia
There is one :). I was also talking with @topolarity and @vtjnash that we should just do what that pass does at codegen time and remove it.

View on GitHub

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

View on GitHub

oscardssmith created a comment on a pull request on JuliaLang/julia
looks pretty backportable.

View on GitHub

NHDaly created a comment on a pull request on JuliaLang/julia
My instinct is that this is not desirable, and we should figure out why they're different, and correct that.

View on GitHub

NHDaly created a comment on a pull request on JuliaLang/julia
Cool, thanks! 🎉 🤔 Is it expected that the currently-scheduled tasks seem to have their stacks **starting at a different frame** than the waiting tasks? It looks like the executing tasks star...

View on GitHub

LilithHafner created a comment on an issue on JuliaLang/julia
> two incompatible meanings exist Can you provide an example where the two definitions give different answers? Or where an answer is defined for one definition but not the other? AFAICT the defini...

View on GitHub

gbaraldi created a review comment on a pull request on JuliaLang/julia
I think the solution is to make gc_allocas a set instead of a smallvector. So if we end up pushing the same thing twice that's still fine

View on GitHub

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

View on GitHub

Load more