Skip to content

restored vpr_api.cpp patch #744

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,9 @@ message(STATUS "NOTE: OVERWRITING netlist_writer.cpp")
file(COPY ${PATCH_DIR}/base_fix/PATCHED/netlist_writer.cpp DESTINATION ${TARGET_DIR})
message(STATUS "NOTE: COPIED ${PATCH_DIR}/base_fix/PATCHED/netlist_writer.cpp\n to ${TARGET_DIR}/\n")

#message(STATUS "NOTE: PATCHING base/vpr_api.cpp ..")
#set(DIFF_FILE ${PATCH_DIR}/base_fix/DIFF/vpr_api_cpp.diff)
#apply_patch(${DIFF_FILE} ${TARGET_DIR} "base/vpr_api.cpp")
message(STATUS "NOTE: PATCHING base/vpr_api.cpp ..")
set(DIFF_FILE ${PATCH_DIR}/base_fix/DIFF/vpr_api_cpp.diff)
apply_patch(${DIFF_FILE} ${TARGET_DIR} "base/vpr_api.cpp")

message(STATUS "NOTE: OVERWRITING base/read_.*")
file(COPY
Expand Down
4 changes: 2 additions & 2 deletions include/base_fix/DIFF/vpr_api_cpp.diff
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
diff --git a/vpr/src/base/vpr_api.cpp b/vpr/src/base/vpr_api.cpp
index 5b7a45b85..f53b36ce8 100644
index e1613fdc2..d93583642 100644
--- a/vpr/src/base/vpr_api.cpp
+++ b/vpr/src/base/vpr_api.cpp
@@ -378,6 +378,8 @@ bool vpr_flow(t_vpr_setup& vpr_setup, t_arch& arch) {
@@ -388,6 +388,8 @@ bool vpr_flow(t_vpr_setup& vpr_setup, t_arch& arch) {
tbb::global_control c(tbb::global_control::max_allowed_parallelism, vpr_setup.num_workers);
#endif

Expand Down
Loading