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
7979# Kernel linking & packaging ##################################################
8080
8181# 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
8384
8485$(BUILD_DIR ) /$(WRAPPER_NAME ) .xclbin : $(BUILD_DIR ) /$(KERNEL_NAME ) _kernel.xo
8586 mkdir -p $(XCLBIN_DIR )
8687 v++ -l $(XOLDFLAGS ) --temp_dir $(XCLBIN_DIR ) --log_dir $(XCLBIN_DIR ) -o $@ $^
8788
88- # For VCK5000, linking and packaging are separate steps
8989else
90+ # For VCK5000, linking and packaging are separate steps
9091
9192$(BUILD_DIR ) /$(WRAPPER_NAME ) .xsa : $(BUILD_DIR ) /$(KERNEL_NAME ) _kernel.xo
9293 mkdir -p $(XCLBIN_DIR )
You can’t perform that action at this time.
0 commit comments