Skip to content

Commit

Permalink
fixing the print out in the batch run
Browse files Browse the repository at this point in the history
  • Loading branch information
assaferan committed Jun 19, 2023
1 parent 14607a7 commit 43d1d66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions batch_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
import time

k = 4
k = 2
min_N = 1
max_N = 100000
batch_size = 50
Expand All @@ -17,7 +17,7 @@
commands = ["./src/traceALbatch_sta " + str(min_N + num_in_command*i) + " " + str(min_N + num_in_command*(i + 1)) + " " + str(k) + " &" for i in tmp]
batches = [commands[i:i+batch_size] for i in range(0,len(commands),batch_size)]
for batch in batches:
N_batch = int(batch[-1].split()[-2])
N_batch = int(batch[-1].split()[-3])
levels_tiny = {N for N in range(min_N, N_batch)}
remain_tiny = sorted([x for x in levels_tiny if x not in covered])
# print("Running the following commands:", batch)
Expand Down

0 comments on commit 43d1d66

Please sign in to comment.