Skip to content

Commit

Permalink
Do not create the output directory automatically.
Browse files Browse the repository at this point in the history
  • Loading branch information
daemontus committed Mar 21, 2024
1 parent 9ba5fd4 commit 58db08e
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion benchmark/bench_sd_expand_bfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

model_name = os.path.basename(sys.argv[1])
sd_name = os.path.splitext(model_name)[0] + '.pickle'
os.makedirs('./_sd_expand_bfs')
with open(f'./_sd_expand_bfs/{sd_name}', 'wb') as handle:
pickle.dump(sd, handle)

Expand Down
1 change: 0 additions & 1 deletion benchmark/bench_sd_expand_dfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

model_name = os.path.basename(sys.argv[1])
sd_name = os.path.splitext(model_name)[0] + '.pickle'
os.makedirs('./_sd_expand_dfs')
with open(f'./_sd_expand_dfs/{sd_name}', 'wb') as handle:
pickle.dump(sd, handle)

Expand Down
1 change: 0 additions & 1 deletion benchmark/bench_sd_expand_min.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

model_name = os.path.basename(sys.argv[1])
sd_name = os.path.splitext(model_name)[0] + '.pickle'
os.makedirs('./_sd_expand_min')
with open(f'./_sd_expand_min/{sd_name}', 'wb') as handle:
pickle.dump(sd, handle)

Expand Down
1 change: 0 additions & 1 deletion benchmark/bench_sd_expand_scc.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

model_name = os.path.basename(sys.argv[1])
sd_name = os.path.splitext(model_name)[0] + '.pickle'
os.makedirs('./_sd_expand_scc')
with open(f'./_sd_expand_scc/{sd_name}', 'wb') as handle:
pickle.dump(sd, handle)

Expand Down

0 comments on commit 58db08e

Please sign in to comment.