-
Notifications
You must be signed in to change notification settings - Fork 92
/
fly_launcher.py
83 lines (58 loc) · 2.74 KB
/
fly_launcher.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
import os, stat, shutil
##########################################################################
# Settings
number_runs = 10
# Change this to where you want your results to go
output_directory = "/home/thelmuth/Results/testing-copying2/"
# Don't change these
clojush_directory = output_directory "/Clojush"
starting_directory = os.getcwd()
example_file = "clojush.problems.demos.odd"
title_string = "Test of cluster runs with odd problem"
description = """This description will be stored in a file alongside the logs from the runs. This is just a test using the odd problem.
"""
##########################################################################
# Uncomment the following if you want to print timings in the logs
#example_file = " :print-timings true"
##########################################################################
# Probably don't change these
output_prefix = "log"
output_postfix = ".txt"
command = "/share/apps/bin/lein with-profiles production trampoline run " example_file
service_tag = "tom"
##########################################################################
# You don't need to change anything below here
# Check to make sure directory doesn't exist; if not, create it
if output_directory[-1] != "/":
output_directory = "/"
if os.path.isdir(output_directory):
raise RuntimeError("Output directory already exists")
os.mkdir(output_directory)
# Make description file
description_file_string = output_directory "description.txt"
description_f = open(description_file_string, "w")
description_f.writelines("COMMAND:\n" command "\n\nTRACTOR TITLE:\n" title_string "\n\nDESCRIPTION:\n" description)
description_f.close()
# Copy this Clojush directory to output directory.
shutil.copytree(starting_directory, clojush_directory)
# Make alf file
alf_file_string = output_directory "clojush_runs.alf"
alf_f = open(alf_file_string, "w")
alfcode = """##AlfredToDo 3.0
Job -title {%s} -subtasks {
""" % (title_string)
for run in range(0, number_runs):
intro_command = "echo Starting run;export PATH=$PATH:/usr/java/latest/bin; cd %s;" % (clojush_directory)
outro_command = " > %s%s%i%s; echo Finished Run" % (output_directory, output_prefix, run, output_postfix)
full_command = intro_command command outro_command
alfcode = """ Task -title {%s - run %i} -cmds {
RemoteCmd {/bin/sh -c {%s}} -service {%s}
}
""" % (title_string, run, full_command, service_tag)
alfcode = "}\n"
alf_f.writelines(alfcode)
alf_f.close()
# Run tractor command
source_string = "source /etc/sysconfig/pixar"
pixar_string = "/opt/pixar/tractor-blade-1.7.2/python/bin/python2.6 /opt/pixar/tractor-blade-1.7.2/tractor-spool.py --engine=fly:8000"
os.system("%s;%s %s" % (source_string, pixar_string, alf_file_string))