Open Arunachalam96 opened 1 year ago
were you able to solve the error @Arunachalam96? thanks.
were you able to solve the error @Arunachalam96? thanks.
Hi,
Yes, I was able to solve the error. Referred this link for solution https://blog.csdn.net/qq_39229006/article/details/98598315
Kind regards, Arun.
Thanks for the reference @Arunachalam96. What version of Vivado were you using and whether on Windows or Linux? Also I'm stuck at compiling riscv-gnu-toolchain on PYNQ-Z2 Board.
Thanks for the reference @Arunachalam96. What version of Vivado were you using and whether on Windows or Linux? Also I'm stuck at compiling riscv-gnu-toolchain on PYNQ-Z2 Board.
Vivado 2022.1 on Windows. What is the error that you are facing?
What is the error that you are facing? @Arunachalam96
I have successfully downloaded the latest riscv-gnu-toolchain on my PYNQ but since hours I have been stuck on a single line of output from make
command inside it. How long did it take to build for you?
What's the version of your PYNQ vX.X img?
Also The tutorial notebooks layout some make commands to run after you have setup the project in Vivado.
make -C <Path-To-RISC-V-On-PYNQ>/riscvonpynq/picorv32/tut/ synth
How are you able to run make
on Windows? I have installed make
using Chocolatey on Windows, but when I run the make
it gives me an error that 'PATH' command doesn't exist.
What's the work around?
critical
Hi,
We followed all the steps for RISC-V setup on PYNQ Z2 board. But during the last step, in packaging the overlay, when we tried to run this code
`import numpy as np arg1 = np.array([4,2,3], np.uint32)
retval = overlay.tutorialProcessor.run(test, arg1)
if(retval != arg1[2]): print("Test failed!") else: print("Test passed!")`
it keeps throwing the following error:
How to solve this memory error?