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
axis slice iterator is broken when used with xtensors (godbolt) and axis_iterator simply does not compile.
This issue for both cases is that the strides_type and shape_type in axis_slice_iterator and axis_iterator are taken from the given xexpression, which is not correct for xtensor as the resulting strided_view should anyhow be dynamically sized.
The alternative would be to assign a dynamic strides and shape_type, but it was not clear to me what the correct replacement type should be.
The text was updated successfully, but these errors were encountered:
axis slice iterator is broken when used with xtensors (godbolt) and axis_iterator simply does not compile.
This issue for both cases is that the strides_type and shape_type in axis_slice_iterator and axis_iterator are taken from the given xexpression, which is not correct for xtensor as the resulting strided_view should anyhow be dynamically sized.
The alternative would be to assign a dynamic strides and shape_type, but it was not clear to me what the correct replacement type should be.
The text was updated successfully, but these errors were encountered: