Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
mbstrange2 committed Aug 26, 2024
1 parent fe3f069 commit 2f53d5e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ASPLOS_EXP/create_mflowgen_experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@

print(f"cd {pd_build_path}; mflowgen run --design {full_design_path}")
# subprocess.run(["pushd", pd_build_path], executable="/bin/bash")
subprocess.run(["cd", f"{pd_build_path};", "mflowgen", "run", "--design", full_design_path])
# subprocess.run(["cd", f"{pd_build_path};", "mflowgen", "run", "--design", full_design_path])
subprocess.run(["mflowgen", "run", "--design", full_design_path], cwd=pd_build_path)
# subprocess.run(["mflowgen", "run", "--design", full_design_path])
# print(f"Made PD build folder at {pd_build_path}")
# subprocess.run(["popd"], executable="/bin/bash")
Expand Down

0 comments on commit 2f53d5e

Please sign in to comment.