Is it possible to install tensorflow on PYNQ Z2 board ?
There are so many problems with PYNQ board.
It is recommended not to use PYNQ board to implement Python code on FPGA.
Very time consuming and irritating process.
Is it possible to install tensorflow on PYNQ Z2 board ?
There are so many problems with PYNQ board.
It is recommended not to use PYNQ board to implement Python code on FPGA.
Very time consuming and irritating process.
How to not install tensorflow on PYNQ Z2 board?
Just don’t.
How to install tensorflow on PYNQ Z2 board?
Just download the ARM7l whl with Python3.7 and install.
It is recommended not to ask PYNQ question in PYNQ community.
Very slow and sometime not helpful.
Enjoy~
Thank You for replying
How to download and where to install?
Thank You…
Please try this
https://tutorials.logictronix.com/our-resources/tutorials/pynq-fpga-tutorials/install-tensorflow-on-pynq/
I have successfully installed tensorflow on a ZCU111 board using a PYNQ 2.7 image, but I am not sure about the PYNQ z2 boards.
pip3 install tensorflow-aarch64
I was able to install it on Arty Z7 (7020) board using a PYNQ 3.0.1 image by adding some swap space as it was running out of memory.
sudo swapoff /swapfile
sudo fallocate -l 16G /swapfile
sudo mkswap /swapfile
sudo chmod 0600 /swapfile
sudo swapon /swapfile