-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
251 lines (189 loc) · 7.61 KB
/
main.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
import subprocess
import argparse
import os
from pathlib import Path
from datetime import datetime
from utils.color import bcolors, print_color
from utils.db import save_job_log
import glob
import sys
from src import rsync
from src import slurm
from src import run
import configparser
package_dir = os.path.dirname(os.path.abspath(__file__))
def parse_config():
# find .ini file in .prx directory
config_file = sorted(list(glob.glob(".prx/*.ini")))
if len(config_file) > 1:
print_color(bcolors.HEADER, "[config]")
print_color(
bcolors.BOLD, "Found multiple .ini files in .prx directory.", end="\n"
)
print_color(bcolors.HEADER, "[config]")
print_color(bcolors.BOLD, f"load the first one. {config_file[0]}", end="\n")
print_color(bcolors.HEADER, "[config]")
config_file = config_file[0]
print(f"config file: {config_file}")
config = configparser.ConfigParser()
config.read(config_file)
# print(config["REMOTE"]["SERVER"])
# iter over sections
for section in config.sections():
# print(bcolors.HEADER + f"[{section}]" + bcolors.ENDC)
for key in config[section]:
...
# print(f"{key.upper()} = {config[section][key]}")
return config
def init(config):
def load_template():
with open(f"{package_dir}/.prx/template.ini", "r") as f:
template = f.read()
# make directory in local
if not os.path.exists(".prx"):
os.mkdir(".prx")
print_color(bcolors.HEADER, "[init]")
input("Creating .prx/default.ini. Press Enter to continue...")
python_env = input("Python environment (default: ~/anaconda3/base): ")
python_env = python_env if python_env else "~/anaconda3/base"
template = template.replace("{{python_env}}", python_env)
with open(".prx/default.ini", "w") as f:
f.write(template)
print_color(bcolors.HEADER, "[init]")
print_color(bcolors.HEADER, "Created .prx/default.ini", end="\n")
# make directory in remote
def check_dir(config):
SERVER = config["REMOTE"]["SERVER"]
HOME = config["REMOTE"]["HOME"]
WORKDIR = config["REMOTE"]["WORKDIR"]
command = f"ssh {SERVER} '. {HOME}/.bashrc; ls {HOME}/{WORKDIR}/;'"
result = subprocess.Popen(
command,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
).communicate()
rp = result[0].decode()
print(rp)
def run_mkdir(config):
SERVER = config["REMOTE"]["SERVER"]
HOME = config["REMOTE"]["HOME"]
WORKDIR = config["REMOTE"]["WORKDIR"]
command = (
f"ssh {SERVER} '. {HOME}/.bashrc; mkdir -p {HOME}/{WORKDIR}/; pwd;'" # noqa
)
# command = f"ssh {SERVER} '. {HOME}/.bashrc; ls {HOME}/{WORKDIR}/;'" # noqa
result = subprocess.Popen(
command,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
).communicate()
rp = result[0].decode()
print(rp)
print("Done.")
tamplate = load_template()
print(tamplate)
# check_dir(config)
# run_mkdir(config)
# Recipes
def exec_sbatch(config, args):
# first, sync the files
rsync.rsync_box(config=config, dry_run=args.dry)
# then, submit the job
slurm.run_sbatch(config=config, sbatch_file_path=args.file)
def exec_sremain(config, args):
# then, submit the job
slurm.run_sremain(config=config)
def exec_squeue(config, args):
slurm.run_squeue(config=config, option=args.option)
def exec_scontrol(config, args):
slurm.run_scontrol(config=config, job_id=args.job_id)
def exec_rsync(config, args):
rsync.rsync_box(config=config, dry_run=args.dry, reverse_sync=args.reverse)
def exec_fetch(config, args):
rsync.rsync_fetch(config=config, dry_run=args.dry, path=args.path)
def exec_purge(config, args):
# slurm.run_purge(config=config)
...
def exec_sh(config, args):
slurm.run_sh(config=config, command=args.sh)
def exec_run(config, args):
# First create run dir in local
sbatch_file_path = run.create_run(config, args)
# Then sync the files
rsync.rsync_box(config=config, dry_run=args.dry)
# Then submit the job
jobid = slurm.run_sbatch(config=config, sbatch_file_path=sbatch_file_path)
# save jobid
logs = (
str(Path(sbatch_file_path).absolute())
+ "\t"
+ args.gpu_type
+ " x "
+ args.gpu_num
+ "\t"
)
save_job_log(jobid, logs)
def main():
# parse config at .prx directory (.ini)
config = parse_config()
# args for runtime
main_parser = argparse.ArgumentParser(description="Main parser")
subparsers = main_parser.add_subparsers(help="sub-command help", dest="command")
init_parser = subparsers.add_parser("init", help="init help")
init_parser.add_argument("--python_env", "-p", type=str, help="")
sbatch_parser = subparsers.add_parser("sbatch", help="sbatch help")
sbatch_parser.add_argument("--file", "-f", type=str, help="sbatch file")
sbatch_parser.add_argument("--dry", action="store_true")
sremain_parser = subparsers.add_parser("sremain", help="sremain help")
sremain_parser.add_argument("--dry", action="store_true")
squeue_parser = subparsers.add_parser("squeue", help="squeue help")
squeue_parser.add_argument("--option", "-o", type=str, default=None)
sync_parser = subparsers.add_parser("sync", help="sync help")
sync_parser.add_argument("--dry", action="store_true", default=False)
sync_parser.add_argument(
"--reverse",
"-r",
action="store_true",
default=False,
help="reverse sync from remote to local.)",
)
log_parser = subparsers.add_parser("log", help="log help")
log_parser.add_argument("--job_id", "-j", type=str, default=None)
sh_parser = subparsers.add_parser("sh", help="sh help")
sh_parser.add_argument(
"--sh", "-s", type=str, help="command to run, should be quoted('' or \"\")"
)
run_parser = subparsers.add_parser("run", help="run help")
run_parser.add_argument("--file", "-f", type=str, help="sbatch file")
run_parser.add_argument("--gpu_num", "-n", default="1")
run_parser.add_argument("--gpu_type", "-t", default="A6000")
run_parser.add_argument("--dry", action="store_true")
test_parser = subparsers.add_parser("test", help="test help")
test_parser.add_argument("--gpu_num", "-n", default="1")
test_parser.add_argument("--gpu_type", "-t", default="A6000")
fetch_parser = subparsers.add_parser("fetch", help="fetch files from remote to local")
fetch_parser.add_argument("--dry", action="store_true", default=False)
fetch_parser.add_argument("-p", "--path", type=str, help="path to fetch", required=False)
fetch_parser.add_argument("-j", "--jobid", type=str, help="path to fetch", required=False)
args = main_parser.parse_args()
print_color(bcolors.HEADER, "[main]")
print_color(bcolors.HEADER, f"command: {args.command}", end="\n")
# print what subcommand is called
def switch_command(command, config, args):
commands = {
"init": init,
"sbatch": exec_sbatch,
"sremain": exec_sremain,
"sync": exec_rsync,
"log": exec_scontrol,
"sh": exec_sh,
"run": exec_run,
"fetch": exec_fetch,
"squeue": exec_squeue,
}
return commands.get(command, lambda: print("Invalid command"))(config, args)
switch_command(args.command, config=config, args=args)
if __name__ == "__main__":
main()