Skip to content

Commit 93d58c6

Browse files
Fix Vitis demo ip name and xo file path
1 parent 1909ed7 commit 93d58c6

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

examples/vitis_import/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2+
# Must use default top module name = 'top' (same as --top top)
23
../../src/pipelinec axis.c --out_dir OUT --xo_axis --coarse --sweep
3-

examples/vitis_import/vitis_scripts/build_all.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
#!/bin/bash
2+
3+
# Use ../build.sh to produce PipelineC ../OUT/package_axis_xo.tcl file
4+
5+
# Vitis build steps:
26
#TARGET=hw
37
TARGET=hw_emu
48
VITIS_PLATFORM=xilinx_u50_gen3x16_xdma_5_202210_1

examples/vitis_import/vitis_scripts/sources/vitis_link.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ synth.jobs=4
33
impl.jobs=12
44

55
[connectivity]
6-
stream_connect=maxi_to_stream_1.output:my_ip_1.input_stream
7-
stream_connect=my_ip_1.output_stream:stream_to_maxi_1.input
6+
stream_connect=maxi_to_stream_1.output:top_ip_1.input_stream
7+
stream_connect=top_ip_1.output_stream:stream_to_maxi_1.input

examples/vitis_import/vitis_scripts/vitis_link.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ v++ -g \
33
--link \
44
--platform $2 \
55
--output kernel.xclbin \
6-
--input_files xo/my_ip.xo \
6+
--input_files ../xo/top_ip.xo \
77
--input_files xo/maxi_to_stream.xo \
88
--input_files xo/stream_to_maxi.xo \
99
--config sources/vitis_link.cfg \

0 commit comments

Comments
 (0)