diff options
Diffstat (limited to 'run.py')
-rwxr-xr-x | run.py | 40 |
1 files changed, 0 insertions, 40 deletions
@@ -1,40 +0,0 @@ | |||
1 | #!/usr/bin/env python3 | ||
2 | |||
3 | ############################################################################### | ||
4 | # Description | ||
5 | ############################################################################### | ||
6 | |||
7 | # Use this file to set up and execute a testing pipeline | ||
8 | # Sample pipeline provided | ||
9 | |||
10 | |||
11 | ############################################################################### | ||
12 | # Imports | ||
13 | ############################################################################### | ||
14 | |||
15 | import trace_reader | ||
16 | import sanitizer | ||
17 | import gedf_test | ||
18 | import stats | ||
19 | import stdout_printer | ||
20 | |||
21 | ############################################################################### | ||
22 | # Trace files | ||
23 | ############################################################################### | ||
24 | |||
25 | g6 = [ | ||
26 | './sample_traces/st-g6-0.bin', | ||
27 | './sample_traces/st-g6-1.bin', | ||
28 | './sample_traces/st-g6-2.bin', | ||
29 | './sample_traces/st-g6-3.bin', | ||
30 | ] | ||
31 | |||
32 | ############################################################################### | ||
33 | # Pipeline | ||
34 | ############################################################################### | ||
35 | |||
36 | stream = trace_reader.trace_reader(g6) | ||
37 | stream = sanitizer.sanitizer(stream) | ||
38 | stream = gedf_test.gedf_test(stream) | ||
39 | stream = stats.stats(stream) | ||
40 | stdout_printer.stdout_printer(stream) | ||