Re: [Discuss-gnuradio] multi thread fft execution

2014-10-25 Thread Marcus Müller
That would be a case for flow graph reconfiguration, most probably :) On 26.10.2014 06:13, Mostafa Alizadeh wrote: > Hello Marcus, > I checked my sliding fft works fine and the bug was somewhere else :) > > In fact I want to detect a known sequence within data non-coherently. After > detection I wa

Re: [Discuss-gnuradio] multi thread fft execution

2014-10-25 Thread Mostafa Alizadeh
Sliding fft is fundamentally different from spectral estimation in practice. Because in practice we never do sliding on sample by sample to get estimate of spectrum. The using purpose of sliding fft here is something else. Best, On Sat, Oct 25, 2014 at 6:08 PM, Marcus D. Leech wrote: > On 10

Re: [Discuss-gnuradio] multi thread fft execution

2014-10-25 Thread Mostafa Alizadeh
Hello Marcus, I checked my sliding fft works fine and the bug was somewhere else :) In fact I want to detect a known sequence within data non-coherently. After detection I want to neglect this 'work' process. How would you prefer to stop this work process after detection? (Something like putting t

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-25 Thread West, Nathan
That looks like the exact same error and will have the exact same resolution. We'll fix it before the next release. If you don't feel comfortable making the changes discussed in this thread then I suggest you stick with a package manager (macports) and heed Michael Dickens' advice: http://lists.gnu

Re: [Discuss-gnuradio] What does "Feedback" mean in the issue tracker?

2014-10-25 Thread Kevin Reid
On Oct 25, 2014, at 5:27, Jeff Long wrote: > On 10/24/2014 09:02 PM, Kevin Reid wrote: >> What does it mean in the GNU Radio issue tracker for an issue to have the >> status "Feedback"? > > Usually "Feedback" does mean "waiting for user feedback". But in this case, I > think it means "hmm, hav

Re: [Discuss-gnuradio] multi thread fft execution

2014-10-25 Thread Marcus D. Leech
On 10/25/2014 08:26 AM, Marcus Müller wrote: Also, sliding FFTs do look like a computational heavy load. What is the application for that? I ask because getting an fft_length FFT for every item increases item/sample rate without giving you (information-theoretically speaking) any advantage o

Re: [Discuss-gnuradio] What does "Feedback" mean in the issue tracker?

2014-10-25 Thread Jeff Long
On 10/24/2014 09:02 PM, Kevin Reid wrote: What does it mean in the GNU Radio issue tracker for an issue to have the status "Feedback"? Usually "Feedback" does mean "waiting for user feedback". But in this case, I think it means "hmm, have to think about that". Both reports have the same unde

Re: [Discuss-gnuradio] multi thread fft execution

2014-10-25 Thread Marcus Müller
Hi Mostafa, >is there any "race" problem between these 2 threads and the work one? I think you might be confused what the FFT multithreading means here; I hope I can illustrate this. Let's set the FFT multithreading level to two threads: sliding_fft_impl::work() | enter "

[Discuss-gnuradio] multi thread fft execution

2014-10-25 Thread Mostafa Alizadeh
Hi all, I have the following c++ code which gets fft by sliding on sample by sample fo the input. /* * The private constructor */ sliding_fft_impl::sliding_fft_impl(uint fft_size) : gr::sync_block("sliding_fft", gr::io_signature::make(1, 1, sizeof(gr_comp