Xilinx / RapidWright

Build Customized FPGA Implementations for Vivado
http://www.rapidwright.io
Other
294 stars 108 forks source link

Trying to run TimingAndWirelengthExample #1114

Open alimousios98x opened 14 hours ago

alimousios98x commented 14 hours ago

I am trying to run TimingAndWirelengthExample but it seems it isn't recognized as an application or any other method under rwroute. How can i build it or if it's something else I am doing wrong.

issue1
clavin-xlnx commented 11 hours ago

Perhaps you wanted to run this (as seen in this tutorial)?

./gradlew run --args="ReportTimingExample <dcp file name>"

I see that we don't have TimingAndWirelengthReport as a listed execution target. In that case, you can run it directly as long as you set the CLASSPATH environment variable like this (from your screenshot, it looks like you are using Windows PowerShell):

# Assuming PowerShell and you are located in the 'RapidWright' directory
$env:CLASSPATH = (Get-Location).Path + "\bin;" + (Get-Location).Path + "\jars\*"  

Then you can run the application directly:

java com.xilinx.rapidwright.rwroute.TimingAndWirelengthReport <input dcp file name>