Jerry Ling

Results 308 comments of Jerry Ling

Compiler should infer inbounds when using each index

after some testing, `zip()` is as slow as `eachindex(a, b)` without `@inbounds` I suggest keep using `eachindex(a, b)` but also add `@inbounds`

on the master branch of Julia, the `@inbounds` is inferred from `for i in eachindex(a, b)` as expected. and I don't understand the CI error on nightly

@oschulz thx for pinning me! I'm leaning towards "yes". I think a few good things can spin out of it: There are quite a few things we want to have...

using https://frame.work with Sway on arch and I was so confused... any update / pointer to where to implement this?

Yeah that works for me too, I guess this issue can be closed ?

actually we should be able to just add `AbstractIrrational` to that list?

SciML actually doesn't work: ```julia julia> f(z) = solve(IntegralProblem((x, _)->sin(x)^2, 0.0, z), QuadGKJL())[1] f (generic function with 2 methods) julia> f(3.14) 1.5707963254482846 julia> ForwardDiff.derivative(f, 3.14) ERROR: StackOverflowError: Stacktrace: [1] cachedrule(#unused#::Type{ForwardDiff.Dual{ForwardDiff.Tag{typeof(f),...