File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
hls4ml/templates/vitis_accelerator Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -79,14 +79,15 @@ hls: $(BUILD_DIR)/$(KERNEL_NAME)_kernel.xo
79
79
# Kernel linking & packaging ##################################################
80
80
81
81
# For Standard Alveo, a single step is required for linking and packaging
82
- ifneq (,$(findstring vck5000,$(PLATFORM ) ) )
82
+ ifeq (,$(findstring vck5000,$(PLATFORM ) ) )
83
+ # This is standard Alveo linking and packaging
83
84
84
85
$(BUILD_DIR ) /$(WRAPPER_NAME ) .xclbin : $(BUILD_DIR ) /$(KERNEL_NAME ) _kernel.xo
85
86
mkdir -p $(XCLBIN_DIR )
86
87
v++ -l $(XOLDFLAGS ) --temp_dir $(XCLBIN_DIR ) --log_dir $(XCLBIN_DIR ) -o $@ $^
87
88
88
- # For VCK5000, linking and packaging are separate steps
89
89
else
90
+ # For VCK5000, linking and packaging are separate steps
90
91
91
92
$(BUILD_DIR ) /$(WRAPPER_NAME ) .xsa : $(BUILD_DIR ) /$(KERNEL_NAME ) _kernel.xo
92
93
mkdir -p $(XCLBIN_DIR )
You can’t perform that action at this time.
0 commit comments