Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have checked example which is wrapping c by using numpy. there is two converting function( function for converting numpy to c, function for converting c to numpy) and they both use malloc function. but if I do not use memory copy, how can I make the code?

def matmul1(np.ndarray[DTYPE_t, ndim=2] a, np.ndarray[DTYPE_t, ndim=2]b):
    ''' Matrix multiplication. Takes two square Float32 numpy arrays.'''

    cdef int N = a.shape[0]
    cdef int i
    cdef float **a_c
    cdef float **b_c
    cdef float **res

    # check if square arrays:
    if a.shape[1] != N or b.shape[0] != N or b.shape[1] != N:
        raise ValueError, 'matmul1: need square arrays for multiplication!'

    # check if contiguous, if not force C contiguous arrays
    if not (<object>a).flags["C_CONTIGUOUS"]:
        a = a.copy('C')
    if not (<object>b).flags["C_CONTIGUOUS"]:
        b = b.copy('C')

    # convert using the function
    a_c = npy2c_float(a)
    b_c = npy2c_float(b)

    # allocate res
    res = <float **> malloc(N*sizeof(float*))
    for i in range(N):
        res[i] = <float *> malloc(N * sizeof(float))

    matmul(a_c,b_c,res,N)

    free(a_c)
    free(b_c)

    # convert to numpy array and free res
    result = c2npy_float(res,N,N)

    return result
share|improve this question
2  
I don't undertand what is the question – fabrizioM Sep 9 '11 at 17:06
nervermind, I solved my problem. thank you. btw, I don't know how to delete this post. – wonjun Sep 13 '11 at 23:52
2  
@wonjun Would you consider posting the answer you came across rather than deleting the question? It may assist other developers in the future. – Jonathan Sampson Nov 5 '11 at 23:39
Closing this for now. If you'd like to share your solution, just flag your question for moderator attention to be re-opened. – Tim Post Nov 6 '11 at 11:16

closed as too localized by Tim Post Nov 6 '11 at 11:16

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.