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
Now that arrays with Union of bitstypes elements have an optimized layout, it would be useful if one could mmap them. Alternatively, exporting the API that would allow the user to mmap the constituent flag and content vectors, then "assemble" the array, would also be as solution.
The in memory representation of union bits types is not (and is not supposed to be) stable. However, you can achieve the same performance by an array view type of the appropriate element that uses the same logic (implemented in julia) and that'll keep working if we decide to change the representation.
Now that arrays with
Union
of bitstypes elements have an optimized layout, it would be useful if one couldmmap
them. Alternatively, exporting the API that would allow the user tommap
the constituent flag and content vectors, then "assemble" the array, would also be as solution.Cf
The text was updated successfully, but these errors were encountered: