Sunday, October 17, 2010

[Discuss-gnuradio] Re: Lots of mallocs in my gnuradio block ... is it safe?

haha! I just realized that this is a great deal of memory used. 250*2046*4.

I am so dumb. :) 

I guess I will have to calculate this on each iteration i use that data.



On Sun, Oct 17, 2010 at 9:08 PM, John Andrews <gnu.fanz@gmail.com> wrote:
Hi,
I am writing the code for a gnuradio block and I use a lot of dynamic memory allocation. The code isn't finished yet but I thought I would ask this question anyways. For an idea this is how the mallocs look like.

1. (204 + 5 + 204) gr_complex arrays of size 2046 each
2. 1 double array of size 2046

The reason why I have this is most of the data allocated in these arrays is reused and I don't have to calculate it again and again. i thought having this data ready when the block is initialized will speed up the processing.

Being pessimistic programmer I am circumspect about my method. What are your thoughts?

Thanks,
John

No comments:

Post a Comment