You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function DiffEqBase.get_tmp(dc::DiffEqBase.DiffCache, u::LabelledArrays.LArray{T,N,D,Syms}) where {T,N,D,Syms}
x =reinterpret(T, dc.dual_du.__x)
LArray{T,N,D,Syms}(x)
end
we need a better way to handle things like reinterpret and reshape on array types that are actually just wrapping another array type.
The text was updated successfully, but these errors were encountered:
I think in general we need better support for getting at wrapped parameters. For example, parent_type would be helpful for these sorts of methods because we don't know for sure that x will be of the type D.
Today I gave up on something...
we need a better way to handle things like
reinterpret
andreshape
on array types that are actually just wrapping another array type.The text was updated successfully, but these errors were encountered: