From 5014252a7b77e27054de5ffb01fc613e2ee455cf Mon Sep 17 00:00:00 2001 From: auphelia <jakobapk@web.de> Date: Wed, 29 Jan 2020 18:01:17 +0000 Subject: [PATCH] [Core - Utils] Deleted absolute path in IPGenBuilder command when calling vivado_hls --- src/finn/core/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/finn/core/utils.py b/src/finn/core/utils.py index 7f85b2445..0a6e5718d 100644 --- a/src/finn/core/utils.py +++ b/src/finn/core/utils.py @@ -270,7 +270,7 @@ class IPGenBuilder: f = open(self.ipgen_script, "w") f.write("#!/bin/bash \n") f.write("cd {}\n".format(code_gen_dir)) - f.write("$VIVADO_PATH/bin/vivado_hls {}\n".format(self.tcl_script)) + f.write("vivado_hls {}\n".format(self.tcl_script)) f.write("cd {}\n".format(working_dir)) f.close() bash_command = ["bash", self.ipgen_script] -- GitLab