Shuhei Kadowaki
Shuhei Kadowaki
use `Julia > Lint > Disabled Dirs` configuration for the time being.
This issue seems to cause an issue when compiling Unitful.jl with JuliaSyntax.jl, https://github.com/PainterQubits/Unitful.jl/blob/242f5c76958dae03c80f6d336780939eccf27edd/src/logarithm.jl#L266-L278
> I am trying to use JET on a package I am developing (`DiffEqJump`). Is this a bug? > > ``` > julia> JET.@report_call solve(jp, SSAStepper()) > ERROR: type JETAnalyzer...
Yea, would be great if you could put up a PR!
Hi, sorry for my delayed response. > a program is using the x>0 branch of exp, instead of converting it to exp(-x) form for x > 0 etc. Maybe you...
Interesting, any link or reference ?
Yeah, that sounds good.
Thanks for raising this interesting issue. In Julia, most information about array shape doesn't appear in Julia's type lattice (i.e. compile time), which its type inference works on, but only...
Another target example would be: > https://github.com/JuliaLang/julia/blob/ac7974acef22b357e790be418b750987e86cb386/base/tuple.jl#L360-L371 ```julia isequal(t1::Tuple, t2::Tuple) = (length(t1) == length(t2)) && _isequal(t1, t2) _isequal(t1::Tuple{}, t2::Tuple{}) = true _isequal(t1::Tuple{Any}, t2::Tuple{Any}) = isequal(t1[1], t2[1]) _isequal(t1::Tuple, t2::Tuple) = isequal(t1[1],...
https://github.com/JuliaLang/julia/pull/40594 is a band-aid for the time being.