Skip to content

Commit

Permalink
should run now
Browse files Browse the repository at this point in the history
  • Loading branch information
mbstrange2 committed Aug 27, 2024
1 parent 0421749 commit 6e6ff9f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ASPLOS_EXP/create_mflowgen_experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@
if run_builds is True:
print(f"Starting build at {pd_build_path}")
# execute_str = ["source", make_script]
execute_str = ["make", "6", "&&", "make", "-t", "6", "&&", "make", "17"]
newp = subprocess.Popen(execute_str, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, cwd=pd_build_path)
# execute_str = ["make", "6", "&&", "make", "-t", "6", "&&", "make", "17"]
execute_str = "make 6; make -t 6; make 17"
newp = subprocess.Popen(execute_str, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, cwd=pd_build_path, shell=True)
all_procs.append(newp)

# print(f"Made PD build folder at {pd_build_path}")
Expand Down

0 comments on commit 6e6ff9f

Please sign in to comment.