summaryrefslogtreecommitdiffstats
path: root/run.py
diff options
context:
space:
mode:
authorMac Mollison <mollison@cs.unc.edu>2010-02-11 21:17:01 -0500
committerMac Mollison <mollison@cs.unc.edu>2010-02-11 21:44:39 -0500
commitc2597a1111f343fe734eedd7eb6b1f784c9575cb (patch)
tree68551d67dae9f29942b2e780928ee352f79c5814 /run.py
parentf249e3bd52f35f1cfe8a75868c7e4f791a7a8367 (diff)
Provide examples in sample_script.py.
Run.py has been renamed to sample_script.py and has been changed into a good example.
Diffstat (limited to 'run.py')
-rwxr-xr-xrun.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/run.py b/run.py
deleted file mode 100755
index c564a0f..0000000
--- a/run.py
+++ /dev/null
@@ -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
15import trace_reader
16import sanitizer
17import gedf_test
18import stats
19import stdout_printer
20
21###############################################################################
22# Trace files
23###############################################################################
24
25g6 = [
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
36stream = trace_reader.trace_reader(g6)
37stream = sanitizer.sanitizer(stream)
38stream = gedf_test.gedf_test(stream)
39stream = stats.stats(stream)
40stdout_printer.stdout_printer(stream)