Skip to content

Commit

Permalink
Fix missing slash in fpga codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelburger committed Mar 22, 2020
1 parent 3c33fa9 commit da68292
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 da68292

Please sign in to comment.