Skip to content

Commit

Permalink
fix: remove hardcoded partnum
Browse files Browse the repository at this point in the history
Not all installations have that partnum. Without explicitly specifying a partnum, a default will be used.
  • Loading branch information
Blaok committed Feb 18, 2024
1 parent 72b2951 commit 22c9391
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tapa_fast_cosim/vivado.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ def get_vivado_tcl(config: Dict, tb_rtl_path: str, save_waveform: bool):
tapa_hdl_path = config['verilog_path']

script = []
script.append(f'create_project -force tapa-fast-cosim ./vivado -part xc7vx485tffg1157-1')
script.append(f'create_project -force tapa-fast-cosim ./vivado')

# read in the original RTLs by HLS
script.append(f'set ORIG_RTL_PATH "{tapa_hdl_path}"')
Expand Down

0 comments on commit 22c9391

Please sign in to comment.