Skip to content

Commit

Permalink
Merge pull request spcl#175 from manuelburger/fpga_codegen_fix
Browse files Browse the repository at this point in the history
Fix missing slash in fpga codegen
  • Loading branch information
tbennun authored Mar 24, 2020
2 parents 16bc313 + 04fa088 commit 73eedee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dace/codegen/targets/xilinx.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_generated_codeobjects(self):
except ValueError:
sdaccel_dir = ''

kernel_file_name = "DACE_BINARY_DIR \"{}".format(self._program_name)
kernel_file_name = "DACE_BINARY_DIR \"/{}".format(self._program_name)
if execution_mode == "software_emulation":
kernel_file_name += "_sw_emu.xclbin\""
xcl_emulation_mode = "sw_emu"
Expand Down

0 comments on commit 73eedee

Please sign in to comment.