mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-30 00:00:15 +01:00
42 lines
1.3 KiB
Python
Executable file
42 lines
1.3 KiB
Python
Executable file
#!/usr/bin/env python
|
|
|
|
import subprocess
|
|
import os
|
|
import errno
|
|
from time import sleep
|
|
from datetime import datetime
|
|
|
|
# from parse_results import parse_results
|
|
from config import \
|
|
BENCHMARKS, OPTIONS, NATIVE_SERVER_IP, HERMIT_RUN_CLIENT, HERMIT_SERVER_IP
|
|
|
|
|
|
# CREATE_PLOTS = True
|
|
|
|
timestamp = datetime.now().strftime("%y-%m-%d-%H-%M")
|
|
|
|
directory = os.path.join('/home/wierichs/ib_benchmarking', timestamp)
|
|
try:
|
|
os.makedirs(directory)
|
|
except OSError as e:
|
|
if e.errno != errno.EEXIST:
|
|
raise
|
|
|
|
for bm in BENCHMARKS:
|
|
for opt in OPTIONS:
|
|
post_list = opt.split()[-1]
|
|
file_name = 'native-' + bm + '-pl_' + post_list + '.log'
|
|
with open(os.path.join(directory, file_name), "w+") as logfile:
|
|
subprocess.call([bm] + opt.split() + [NATIVE_SERVER_IP], stdout = logfile)
|
|
sleep(2)
|
|
|
|
for bm in BENCHMARKS:
|
|
for opt in OPTIONS:
|
|
post_list = opt.split()[-1]
|
|
file_name = 'hermit-' + bm + '-pl_' + post_list + '.log'
|
|
with open(os.path.join(directory, file_name), "w+") as logfile:
|
|
# subprocess.call((HERMIT_RUN_CLIENT + bm).split() + opt.split() +
|
|
# [HERMIT_SERVER_IP], stdout = logfile)
|
|
subprocess.call(HERMIT_RUN_CLIENT + bm + ' ' + opt + ' ' + HERMIT_SERVER_IP,
|
|
shell=True, stdout=logfile)
|
|
sleep(2)
|