diff options
| author | Glenn Elliott <gelliott@cs.unc.edu> | 2014-01-26 20:37:31 -0500 |
|---|---|---|
| committer | Glenn Elliott <gelliott@cs.unc.edu> | 2014-01-26 20:37:31 -0500 |
| commit | daba296e6e32407e335fdfca53b6d836e2029cb6 (patch) | |
| tree | cb3231ae09c95354345e758172a1ac4be4fc2ee0 | |
| parent | 424917db79a1e8855c5e867bcc602476899fa28e (diff) | |
Add cache_aware_parallel
| -rw-r--r-- | gen/edf_generators.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gen/edf_generators.py b/gen/edf_generators.py index 33f52be..ca77556 100644 --- a/gen/edf_generators.py +++ b/gen/edf_generators.py | |||
| @@ -23,6 +23,7 @@ PARTITION_METHOD = { | |||
| 23 | 'no_cache' : partition.partition_no_cache, | 23 | 'no_cache' : partition.partition_no_cache, |
| 24 | 'parallel' : partition.partition_parallel, | 24 | 'parallel' : partition.partition_parallel, |
| 25 | 'cache_aware' : partition.partition_cache_aware, | 25 | 'cache_aware' : partition.partition_cache_aware, |
| 26 | 'cache_aware_parallel' : partition.partition_cache_aware_parallel, | ||
| 26 | 'cache_aware_edges' : partition.partition_cache_aware_edges, | 27 | 'cache_aware_edges' : partition.partition_cache_aware_edges, |
| 27 | 'cache_aware_bfs' : partition.partition_cache_aware_bfs, | 28 | 'cache_aware_bfs' : partition.partition_cache_aware_bfs, |
| 28 | 'cache_aware_dfs' : partition.partition_cache_aware_dfs, | 29 | 'cache_aware_dfs' : partition.partition_cache_aware_dfs, |
| @@ -87,7 +88,7 @@ class EdfPgmGenerator(gen.Generator): | |||
| 87 | gen.Generator._dist_option('clustering', ['L1', 'L2', 'L3', 'ALL'], | 88 | gen.Generator._dist_option('clustering', ['L1', 'L2', 'L3', 'ALL'], |
| 88 | {}, | 89 | {}, |
| 89 | 'Clustering configurations'), | 90 | 'Clustering configurations'), |
| 90 | gen.Generator._dist_option('partitions', ['no_cache', 'parallel', 'cache_aware'], | 91 | gen.Generator._dist_option('partitions', ['no_cache', 'parallel', 'cache_aware', 'cache_aware_parallel'], |
| 91 | PARTITION_METHOD, | 92 | PARTITION_METHOD, |
| 92 | 'Partition methods.'), | 93 | 'Partition methods.'), |
| 93 | gen.Generator._dist_option('node_placement', ['uniform'], | 94 | gen.Generator._dist_option('node_placement', ['uniform'], |
