Commit 5b698407 authored by Mark Florisson's avatar Mark Florisson

Merge pull request #201 from strohel/transpose-refcount-fix

Naive approach to fix memview incref/decref asymmetry in transpose
parents d5bb23f7 f0ca61d4
......@@ -5254,6 +5254,16 @@ class AttributeNode(ExprNode):
# C method implemented as function call with utility code
code.globalstate.use_utility_code(self.entry.utility_code)
def generate_disposal_code(self, code):
if self.is_temp and self.type.is_memoryviewslice and self.is_memslice_transpose:
# mirror condition for putting the memview incref here:
if self.obj.is_name or (self.obj.is_attribute and
self.obj.is_memslice_transpose):
code.put_xdecref_memoryviewslice(
self.result(), have_gil=True)
else:
ExprNode.generate_disposal_code(self, code)
def generate_assignment_code(self, rhs, code):
self.obj.generate_evaluation_code(code)
if self.is_py_attr:
......
# mode: run
from cython cimport view
cdef bint print_upper_right(double[:, :] M):
print M[0, 1]
cdef class MemViewContainer:
cdef double[:, :] A
def __init__(self, A):
self.A = A
cpdef run(self):
print_upper_right(self.A)
print_upper_right(self.A.T)
print_upper_right(self.A.T)
def test_transpose_refcount():
"""
>>> test_transpose_refcount()
2.0
3.0
3.0
"""
cdef double[:, :] A = view.array(shape=(2, 2), itemsize=sizeof(double), format="d")
A[0, 0], A[0, 1], A[1, 0], A[1, 1] = 1., 2., 3., 4.
cdef MemViewContainer container = MemViewContainer(A)
container.run()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment