Jerry Ling
Jerry Ling
union splitting not kicking in 🤔 ?
(or just don't target ForwardDiff)
that's an interesting idea -- I never thought about the differentiability of anti-kT, what are some possible applications? I'm thinking about in terms of what is {y} and {x} in...
I thought about them but then it doesn't make that much sense to me -- dR is probably scanned / optimized for something, I don't see us pushing a different...
Yeah at this point it feels to me the window CI is unrelated and apparently Documenter.jl?? Will investigate
I'm not so sure about this one. For example, `copy(reinterpret(...))` also changes type and return a Vector(). I think it could be argued that current behavior is the correct one...
## Arrow.jl ```julia julia> d = Arrow.Table("/tmp/a.feather"); julia> d.x #this is memory-mapped 100-element Arrow.Primitive{Int64, Vector{Int64}}: ... julia> copy(d.x) 100-element Vector{Int64}: ... ```
but then you also have this from Julia itself being weird/inconsistent: ```julia julia> a = rand(2,2)' 2×2 adjoint(::Matrix{Float64}) with eltype Float64: 0.651229 0.952613 0.723043 0.00959459 julia> copy(a) 2×2 Matrix{Float64}: 0.651229...
another thing is I just realized we no longer need `mutable struct LazyBranch`, it can be immutable. But after making it immutable it breaks CI and seems like allocation in...
>The issue is that copycols=true is the default, which can be very expansive in HEP use case But it is what it is, user of DataFrame needs to know what's...