mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-30 00:00:15 +01:00
12 lines
310 B
Python
Executable file
12 lines
310 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
import os
|
|
|
|
from parse_results import parse_results, plot_results
|
|
from config import BENCHMARKS, TIMESTAMP
|
|
|
|
|
|
directory = os.path.join('/home/anni/swarm1/ib_benchmarking', TIMESTAMP)
|
|
results = parse_results(directory)
|
|
plot_results(results, directory)
|