From ade998bf90d81ff186b831b2449c9972d05c19dd Mon Sep 17 00:00:00 2001 From: Ben Marshall Date: Tue, 18 Sep 2018 05:38:31 +1200 Subject: [PATCH 1/2] Removed backslash scapes and curly braces around the part number in generated tcl file. Caused issues with Vivado HLS with certain part strings. --- hlsclt/build_commands/build_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hlsclt/build_commands/build_commands.py b/hlsclt/build_commands/build_commands.py index 3373f7c..77a71ea 100644 --- a/hlsclt/build_commands/build_commands.py +++ b/hlsclt/build_commands/build_commands.py @@ -32,7 +32,7 @@ def do_start_build_stuff(ctx): file.write("open_solution -reset \"solution" + str(solution_num) + "\"" + "\n") else: file.write("open_solution \"solution" + str(solution_num) + "\"" + "\n") - file.write("set_part \{" + config["part_name"] + "\}" + "\n") + file.write("set_part " + config["part_name"] + "\n") file.write("create_clock -period " + config["clock_period"] + " -name default" + "\n") return file except OSError: From b6937e2be65eedbb268db0ead6ed389a8130cdc6 Mon Sep 17 00:00:00 2001 From: Ben Marshall Date: Tue, 18 Sep 2018 05:40:51 +1200 Subject: [PATCH 2/2] Update version number for new release. --- hlsclt/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hlsclt/_version.py b/hlsclt/_version.py index 071a662..ff529cd 100644 --- a/hlsclt/_version.py +++ b/hlsclt/_version.py @@ -1 +1 @@ -__version__ = '1.0.0.a4' +__version__ = '1.0.0.a5'