Ticket #514 (new defect)
Buffers: Some forms of C/Fortran contiguous buffers not acquired
| Reported by: | dagss | Owned by: | somebody |
|---|---|---|---|
| Priority: | minor | Milestone: | wishlist |
| Component: | Code Generation | Keywords: | |
| Cc: |
Description
A can be acquired in mode='fortran' by Cython, while B can not:
In [7]: A=np.arange(100).reshape(1,10,10, order='F') In [9]: A.strides Out[9]: (8, 8, 80) In [10]: B=np.arange(100).reshape(10,10, order='F')[None,:,:] In [11]: B.shape Out[11]: (1, 10, 10) In [12]: B.strides Out[12]: (0, 8, 80)
Change History
Note: See
TracTickets for help on using
tickets.
