Exception with np.ndarray
transpose because it's not row major
#22
Labels
bug
Something isn't working
np.ndarray
transpose because it's not row major
#22
General
np.transpose()
and the.T
operator often (always in the case of.T
) return views of the transposed array. Since it's not actually transposed, it's not row major in memory and will lead to a runtime error on the C++ side.Details
For now we suggest, copying after the transpose to actually produce row major ordering.
The text was updated successfully, but these errors were encountered: