Ticket #514 (new defect)

Opened 3 years ago

Last modified 2 years ago

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

Changed 3 years ago by dagss

  • milestone changed from wishlist to 0.13

Changed 3 years ago by dagss

  • milestone changed from 0.13 to 0.13.1

No time for this

Changed 2 years ago by robertwb

  • priority changed from major to minor
  • milestone changed from 0.14 to wishlist
Note: See TracTickets for help on using tickets.