mirror of
https://github.com/chipsalliance/f4pga.git
synced 2025-01-03 03:43:37 -05:00
cd2ad7144c
Signed-off-by: Krzysztof Boronski <kboronski@antmicro.com>
23 lines
No EOL
358 B
Python
23 lines
No EOL
358 B
Python
#!/usr/bin/python3
|
|
|
|
import argparse
|
|
import subprocess
|
|
import os
|
|
import shutil
|
|
from symbiflow_common import *
|
|
|
|
mypath = my_path()
|
|
parser = setup_vpr_arg_parser()
|
|
args = parser.parse_args()
|
|
|
|
vprargs = VprArgs(mypath, args)
|
|
vprargs.export()
|
|
|
|
noisy_warnings(args.device)
|
|
|
|
vprargs.optional += '--route'
|
|
|
|
print('Routing...')
|
|
vpr(vprargs)
|
|
|
|
save_vpr_log('route.log') |