-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrun_experiment.py
78 lines (68 loc) · 2.71 KB
/
run_experiment.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import yaml
import argparse
import os
from time import sleep
from subprocess import Popen
import datetime
import dateutil
from rlkit.launchers import config
from rlkit.launchers.launcher_util import build_nested_variant_generator
if __name__ == "__main__":
# Arguments
parser = argparse.ArgumentParser()
parser.add_argument("-e", "--experiment", help="experiment specification file")
parser.add_argument("-g", "--gpu", help="gpu id", type=int, default=0)
args = parser.parse_args()
args.nosrun = True # Do not use the srun
with open(args.experiment, "r") as spec_file:
spec_string = spec_file.read()
exp_specs = yaml.safe_load(spec_string)
# generating the variants
vg_fn = build_nested_variant_generator(exp_specs)
# write all of them to a file
now = datetime.datetime.now(dateutil.tz.tzlocal())
timestamp = now.strftime("%Y_%m_%d_%H_%M_%S")
variants_dir = os.path.join(
config.LOCAL_LOG_DIR,
"variants-for-" + exp_specs["meta_data"]["exp_name"],
"variants-" + timestamp,
)
os.makedirs(variants_dir)
with open(os.path.join(variants_dir, "exp_spec_definition.yaml"), "w") as f:
yaml.dump(exp_specs, f, default_flow_style=False)
num_variants = 0
for variant in vg_fn():
i = num_variants
variant["exp_id"] = i
with open(os.path.join(variants_dir, "%d.yaml" % i), "w") as f:
yaml.dump(variant, f, default_flow_style=False)
f.flush()
num_variants += 1
num_workers = min(exp_specs["meta_data"]["num_workers"], num_variants)
exp_specs["meta_data"]["num_workers"] = num_workers
# run the processes
running_processes = []
args_idx = 0
command = "python {script_path} -e {specs} -g {gpuid}"
command_format_dict = exp_specs["meta_data"]
while (args_idx < num_variants) or (len(running_processes) > 0):
if (len(running_processes) < num_workers) and (args_idx < num_variants):
command_format_dict["specs"] = os.path.join(
variants_dir, "%i.yaml" % args_idx
)
command_format_dict["gpuid"] = args.gpu
command_to_run = command.format(**command_format_dict)
command_to_run = command_to_run.split()
print(command_to_run)
p = Popen(command_to_run)
args_idx += 1
running_processes.append(p)
else:
# print(len(running_processes), num_workers, args_idx, num_variants)
sleep(1)
new_running_processes = []
for p in running_processes:
ret_code = p.poll()
if ret_code is None:
new_running_processes.append(p)
running_processes = new_running_processes