Memory leak with Mex

조회 수: 4 (최근 30일)
Sridutt Nayak
Sridutt Nayak 2013년 3월 11일
I am doing below in a loop with dims = [1024 768 256]
1. I want to read a set of block loaded by block_iter(1 to 16) into a RAM of Hardware. The memory call seems to display the memory leaking. Am I doing it wrong somewhere?
// Create memory for reading in data
mxArray *B= mxCreateNumericArray(3,dims,mxUINT8_CLASS,mxREAL);
mxArray *in = mxCreateDoubleMatrix(1, 1, mxREAL);
// See Memory usage
mexCallMATLAB(0,NULL,0,NULL,"memory");
memcpy(mxGetPr(in), &block_iter, sizeof(double)*1*1);
// Read a block of 256 images of 1024*768. Even the temp variable is cleared in the dmd_feeder function
mexCallMATLAB(1,&B,1,&in,"data_feeder");
//Call RAM_FILL
ram_fill(d,B); // As of now does nothing, its an empty void function and I would be replacing it to copy data to ram of hardware.
//Deallocate memory;
mxDestroyArray(B);
mxDestroyArray(in);
PS: The memory leak is around 192 MB each loop which is exactly the amount of data in array B
  댓글 수: 1
Jan
Jan 2013년 3월 11일
What is "a loop with dims"? What is "block_iter(1 to 16)"? What does "memory exactly reply"? Do you mean the size of the largest available block or the sum of the free memory? What happens inside "data_feeder"? What is "d" in the call of ram_fill() and are you really sure, that this function does not matter? If so, why do you include it in the example?

댓글을 달려면 로그인하십시오.

채택된 답변

James Tursa
James Tursa 2013년 3월 11일
편집: James Tursa 2013년 3월 11일
You are leaking memory behind the B mxArray. E.g.,
mxArray *B= mxCreateNumericArray(3,dims,mxUINT8_CLASS,mxREAL);
:
mexCallMATLAB(1,&B,1,&in,"data_feeder");
The mxCreateNumericArray call allocates memory for the mxArray B. The subsequent mexCallMATLAB call allocates a brand new mxArray B. The call itself overwrites the value of B with a new value. The currently existing B value from your previous mxCreateNumericArray call becomes lost and thus you leak the memory behind it (at least temporarily until the mex routine exits back to the calling function). You need to get rid of your mxCreateNumericArray call since mexCallMATLAB will allocate memory for the B result itself.
  댓글 수: 1
Jan
Jan 2013년 4월 29일
I have accpeted this answer.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by