-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(vck5000): check in VCK5000 DFX case
- Loading branch information
1 parent
71fcec6
commit d4ea943
Showing
123 changed files
with
72,536 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 0 additions & 30 deletions
30
benchmarks/tapa_flow/knn_chipknn/k16D_float_27PEs/design/config/link_config.ini
This file was deleted.
Oops, something went wrong.
46 changes: 29 additions & 17 deletions
46
benchmarks/tapa_flow/knn_chipknn/k16D_float_27PEs/design/config/run.py/link_config.ini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,30 @@ | ||
[connectivity] | ||
sp=Knn_1.in_0:HBM[0] | ||
sp=Knn_1.in_1:HBM[1] | ||
sp=Knn_1.in_2:HBM[2] | ||
sp=Knn_1.in_3:HBM[3] | ||
sp=Knn_1.in_4:HBM[4] | ||
sp=Knn_1.in_5:HBM[5] | ||
sp=Knn_1.in_6:HBM[6] | ||
sp=Knn_1.in_7:HBM[7] | ||
sp=Knn_1.in_8:HBM[8] | ||
sp=Knn_1.in_9:HBM[9] | ||
sp=Knn_1.in_10:HBM[10] | ||
sp=Knn_1.in_11:HBM[11] | ||
sp=Knn_1.in_12:HBM[12] | ||
sp=Knn_1.in_13:HBM[13] | ||
sp=Knn_1.in_14:HBM[14] | ||
sp=Knn_1.final_out_dist:HBM[14] | ||
sp=Knn_1.final_out_id:HBM[14] | ||
sp=Knn.in_0:HBM[0] | ||
sp=Knn.in_1:HBM[1] | ||
sp=Knn.in_2:HBM[2] | ||
sp=Knn.in_3:HBM[3] | ||
sp=Knn.in_4:HBM[4] | ||
sp=Knn.in_5:HBM[5] | ||
sp=Knn.in_6:HBM[6] | ||
sp=Knn.in_7:HBM[7] | ||
sp=Knn.in_8:HBM[8] | ||
sp=Knn.in_9:HBM[9] | ||
sp=Knn.in_10:HBM[10] | ||
sp=Knn.in_11:HBM[11] | ||
sp=Knn.in_12:HBM[12] | ||
sp=Knn.in_13:HBM[13] | ||
sp=Knn.in_14:HBM[14] | ||
sp=Knn.in_15:HBM[15] | ||
sp=Knn.in_16:HBM[16] | ||
sp=Knn.in_17:HBM[17] | ||
sp=Knn.in_18:HBM[18] | ||
sp=Knn.in_19:HBM[19] | ||
sp=Knn.in_20:HBM[20] | ||
sp=Knn.in_21:HBM[21] | ||
sp=Knn.in_22:HBM[22] | ||
sp=Knn.in_23:HBM[23] | ||
sp=Knn.in_24:HBM[24] | ||
sp=Knn.in_25:HBM[25] | ||
sp=Knn.in_26:HBM[26] | ||
sp=Knn.final_out_dist:HBM[26] | ||
sp=Knn.final_out_id:HBM[26] |
Binary file added
BIN
+331 KB
benchmarks/tapa_flow/knn_chipknn/k16D_float_27PEs/design/generated/knn.xo
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright (c) 2024 RapidStream Design Automation, Inc. and contributors. All rights reserved. | ||
# The contributor(s) of this file has/have agreed to the RapidStream Contributor License Agreement. | ||
|
||
|
||
TEMP_DIR := $(CURDIR)/build | ||
VPP := vivado -mode batch -source | ||
OVERLAY := $(TEMP_DIR)/overlay.dcp | ||
OOC := $(TEMP_DIR)/vadd_bw.dcp | ||
PROVERLAY:= $(TEMP_DIR)/pr_overlay.dcp | ||
m=$(shell date) | ||
|
||
all:$(PROVERLAY) | ||
|
||
$(PROVERLAY): $(CURDIR)/tcl/impl.tcl $(OVERLAY) $(OOC) | ||
mkdir -p $(TEMP_DIR) | ||
cd $(TEMP_DIR) && $(VPP) $< | ||
|
||
overlay: $(OVERLAY) | ||
|
||
$(OVERLAY): $(CURDIR)/tcl/prj_gen.tcl | ||
mkdir -p $(TEMP_DIR) | ||
cd $(TEMP_DIR) && $(VPP) $< | ||
|
||
ooc: $(OOC) | ||
|
||
$(OOC): $(CURDIR)/tcl/ooc_syn.tcl | ||
mkdir -p $(TEMP_DIR) | ||
cd $(TEMP_DIR) && $(VPP) $< | ||
|
||
proverlay:$(PROVERLAY) | ||
|
||
|
||
git: | ||
git add . | ||
git commit -m "$(m)" | ||
git push origin main | ||
|
||
clean: | ||
rm -rf $(TEMP_DIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- | ||
Copyright (c) 2024 RapidStream Design Automation, Inc. and contributors. All rights reserved. | ||
The contributor(s) of this file has/have agreed to the RapidStream Contributor License Agreement. | ||
--> | ||
|
||
# How to make VCK5000 Overlay | ||
|
||
1. Copy vck5000 to <your Vivado installation>/Vivado/2022.2/data/xhub/boards/XilinxBoardStore/boards/Xilinx | ||
2. make all. | ||
3. Find the proverlay.dcp in build directory. | ||
4. make your design have the same interface as ./v/vadd_bandwidth28r28w_placeholder. |
Oops, something went wrong.