Re: [Discuss-gnuradio] Performance monitoring within Gnuradio

2017-10-30 Thread Dave NotTelling
There is also the Linux tool `perf`. I use that instead of the GNU Radio tools due to library compatibility issues (also thrift is a pita to get working with GNU Radio in my experience). An example is: `perf top -p --call-graph=fp` (use sudo if needed). If you want to see everything you can use

Re: [Discuss-gnuradio] Performance monitoring within Gnuradio

2017-10-30 Thread Vipin Sharma
Thanks for the tip! I will try htop first and then rebuild if necessary. On Mon, Oct 30, 2017 at 5:29 AM Michael Dickens wrote: > Hi Vipin - To get performance counters, you have to rebuild GNU Radio > and enable them specifically via the cmake command addition > "-DENABLE_PERFORMANCE_COUNTERS=

Re: [Discuss-gnuradio] Performance monitoring within Gnuradio

2017-10-30 Thread Michael Dickens
Hi Vipin - To get performance counters, you have to rebuild GNU Radio and enable them specifically via the cmake command addition "-DENABLE_PERFORMANCE_COUNTERS=ON". Make sure to review the output of the cmake command to verify that they have been enabled, then once you're satisfied do the usual bu

[Discuss-gnuradio] Performance monitoring within Gnuradio

2017-10-29 Thread Vipin Sharma
I am trying to monitor performance for my custom blocks using GnuRadio's perf monitoring tools. After researching a bit, I found out that I need to install Apache Thrift. Do I need to re-build GnuRadio to leverage Thrift? If yes, what options should I give to build script so that it recognizes an