discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] To implement WiMAX with GnuRadio or not?


From: Michael Dickens
Subject: Re: [Discuss-gnuradio] To implement WiMAX with GnuRadio or not?
Date: Sat, 28 May 2011 11:38:31 -0400

On May 28, 2011, at 11:26 AM, Alexander Chemeris wrote:
> 5) How well is GnuRadio suited for real-time operation?

In a general sense, yes, GNU Radio is well suited for real-time signal 
processing of data streams.  That said: "Real time" is only meaningful knowing 
the performance criteria.  What sort of performance do you require processing 
for?

> 5.1) Specifically - is memory allocated from heap with malloc() or it
> supports non-blocking memory pools?

IIRC (Tom? Eric?): GNU Radio uses the standard C++ "new" command for most 
memory allocations -- and thus it is memory from the heap.  One can always 
overload this method globally or locally if required, to provide memory from 
pools or other means.

> 5.2) Can the whole flowgraph be executed from a single thread to
> minimize cross-thread communication overhead (and jitter)?

Yes.  Your choices are a single thread for all or 1 thread per block. - MLD




reply via email to

[Prev in Thread] Current Thread [Next in Thread]