Re: Teething problems with new GNU Radio 3.9 installation

2021-04-22 Thread David Scaperoth
Brendan, Out of curiosity, what versions of tensorflow and cuda are you using? David On Thu, Apr 22, 2021, 12:50 AM Brendan Horsfield < brendan.horsfi...@vectalabs.com> wrote: > Hi Ryan, > > I have some good news to report. > > While I was waiting for your reply (the curse of living Down

Re: Why does preferences file get installed in /usr/local despite setting custom install prefix?

2021-04-22 Thread Cinaed Simson
On 4/21/21 9:48 PM, wan wrote: Hi all, I set a custom install prefix while installing from source. However, the preference file still gets installed to /usr/local, as you can see from the gnuradio-config-info output below. gnuradio-config-info --print-all /home/.../envs/uhd-gr-default/

FFT MARKER

2021-04-22 Thread Alberto Alletto
Hi! There is a mode to make an Marker on FFT signal as spectrum analyzer instruments ? Alberto Inviato da iPhone

Re: Teething problems with new GNU Radio 3.9 installation

2021-04-22 Thread Brendan Horsfield
Hi David, My current configuration is as follows: - TensorFlow 2.4.1 - CUDA 11.2 I am also running a second version of TensorFlow inside a Docker image that I downloaded from dockerhub: - https://hub.docker.com/r/tensorflow/tensorflow/tags?page=1=last_updated My preferred image

Re: Why does preferences file get installed in /usr/local despite setting custom install prefix?

2021-04-22 Thread Neel Pandeya
Hello Wan: Did you set a custom installation path when you ran CMake? How did you invoke CMake when you built GNU Radio? The Application Note listed below might help you. https://kb.ettus.com/Building_and_Installing_UHD_and_GNU_Radio_to_a_Custom_Prefix --Neel Pandeya On Thu, 22 Apr 2021 at

Re: Why does preferences file get installed in /usr/local despite setting custom install prefix?

2021-04-22 Thread wan
Hi Cinaed and Neel, Thanks for your quick response. My custom prefix is /home/. I was just shortening it with "/home/...", sorry for the confusion. I followed a similar process as in the app note. I ran $ cmake-gui ../ in the build directory. Then I used the GUI to configure and generate the

GNU Radio 3.9 OOT derived class

2021-04-22 Thread Alvaro Pendas Recondo
Hello, I am trying to implement my own header class derived from 'header_format_default' named 'header_format_counter_dif'. As you can imagine, the class is quite similar to 'header_format_counter' with some minor adjustments. My situation is almost identical to the one presented in this mailing

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Vasil Velichkov
Hi Alvaro, On 22/04/2021 17.48, Alvaro Pendas Recondo wrote: > 6. Add the line set(GR_REQUIRED_COMPONENTS RUNTIME DIGITAL) at > gr-TFMv3/CMakeLists.txt The GR_REQUIRED_COMPONENTS is no longer used in GNU Radio 3.8 and 3.9. You need to add "digital" in the Gnuradio's find_package list and then

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Alvaro Pendas Recondo
Hi Vasil, Thank you for your answer. Should not be Gnuradio "3.9" instead of "3.9"?. Anyway, I tried with both options and I got the same error: Target "TFMv3_python" links to target "gnuradio::gnuradio-digital" but the target was not found. Perhaps a find_package() call is missing for an

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Vasil Velichkov
Hi Alvaro, On 22/04/2021 19.02, Alvaro Pendas Recondo wrote: > Thank you for your answer. Should not be Gnuradio "3.9" instead of "3.9"?. Yes, use the version you are developing for. > Anyway, I tried with both options and I got the same error: > > Target "TFMv3_python" links to target

Re: Why does preferences file get installed in /usr/local despite setting custom install prefix?

2021-04-22 Thread Cinaed Simson
Hi Wan - this path   /home/.. is not your home path - or your home directory. Type   cd /home/.. and then   ls and see if you find the gnuradio directory. If you didn't have root privilege at the time then the install failed. Assuming your userid is   wan then   /home/wan is you

Re: Windows 7 x64 problem...

2021-04-22 Thread Alberto
No idea ? Inviato da iPhone > Il giorno 19 apr 2021, alle ore 17:55, Alberto > ha scritto: > > Hi ! > I have created a simple example to View 100MHz signal from sdr receiver...but > i have a problem. > > My OS is Windows 7 x64, GNURadio 3.7.13.5. > > When i start a receiver with

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Alvaro Pendas Recondo
I've tried with no result. The full output is -- The CXX compiler identification is GNU 9.3.0 -- The C compiler identification is GNU 9.3.0 -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- Detecting CXX compiler ABI info -- Detecting CXX

Re: GNU Radio 3.9 OOT derived class

2021-04-22 Thread Jeff Long
I'd suggest starting over with modtool. There are a number of directories in your code that should not be there (e.g., gnuradio-runtime, gr-fec, gr-fft, gr-blocks, ...). Something went wrong in the process of getting all this set up. On Thu, Apr 22, 2021 at 7:45 PM Alvaro Pendas Recondo wrote: