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
I do not have a reproducible example at hand, but there is a problem with using the default Array constructor on chunked AbstractDiskArrays. Adding the following method fixed the code:
functionArray(a::AbstractDiskArray)
aout =similar(a)
aout .= a
aout
end
but it is worth to investigate and add some unit tests when fixing this.
The text was updated successfully, but these errors were encountered:
I do not have a reproducible example at hand, but there is a problem with using the default
Array
constructor on chunkedAbstractDiskArrays
. Adding the following method fixed the code:but it is worth to investigate and add some unit tests when fixing this.
The text was updated successfully, but these errors were encountered: