diff options
| author | Bjoern Brandenburg <bbb@mpi-sws.org> | 2012-12-09 11:39:41 -0500 |
|---|---|---|
| committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2013-02-12 06:55:16 -0500 |
| commit | 308ff37a60a61e158bfe108bfcea0bf3b71e942d (patch) | |
| tree | bb8abf906bdd5823aeefa3c89668d38c6f1bc3d8 | |
| parent | adfef1cb9a8960690fb85cc0b99e8fe266e173eb (diff) | |
Add LP-based blocking analysis for FMLP+
| -rw-r--r-- | native/Makefile | 2 | ||||
| -rw-r--r-- | native/include/lp_analysis.h | 12 | ||||
| -rw-r--r-- | native/src/blocking/linprog/lp_fmlp.cpp | 286 | ||||
| -rw-r--r-- | schedcat/locking/bounds.py | 13 |
4 files changed, 307 insertions, 6 deletions
diff --git a/native/Makefile b/native/Makefile index 2df9893..6f1abe2 100644 --- a/native/Makefile +++ b/native/Makefile | |||
| @@ -118,7 +118,7 @@ ALL = testmain _sched.so _locking.so _sim.so | |||
| 118 | 118 | ||
| 119 | # Compile LP-based code only if we have a solver. | 119 | # Compile LP-based code only if we have a solver. |
| 120 | ifneq ($(CPLEX_PATH)$(GLPK_PATH),) | 120 | ifneq ($(CPLEX_PATH)$(GLPK_PATH),) |
| 121 | LP_OBJ = lp_common.o io.o lp_dflp.o lp_dpcp.o lp_mpcp.o | 121 | LP_OBJ = lp_common.o io.o lp_dflp.o lp_dpcp.o lp_mpcp.o lp_fmlp.o |
| 122 | 122 | ||
| 123 | ifneq ($(CPLEX_PATH),) | 123 | ifneq ($(CPLEX_PATH),) |
| 124 | LP_OBJ += cplex.o cpx.o | 124 | LP_OBJ += cplex.o cpx.o |
diff --git a/native/include/lp_analysis.h b/native/include/lp_analysis.h index 182eff1..998eeb5 100644 --- a/native/include/lp_analysis.h +++ b/native/include/lp_analysis.h | |||
| @@ -3,12 +3,14 @@ | |||
| 3 | 3 | ||
| 4 | #include "sharedres_types.h" | 4 | #include "sharedres_types.h" |
| 5 | 5 | ||
| 6 | extern BlockingBounds* lp_dpcp_bounds(const ResourceSharingInfo& info, | 6 | BlockingBounds* lp_dpcp_bounds(const ResourceSharingInfo& info, |
| 7 | const ResourceLocality& locality, bool use_RTA = true); | 7 | const ResourceLocality& locality, bool use_RTA = true); |
| 8 | 8 | ||
| 9 | extern BlockingBounds* lp_dflp_bounds(const ResourceSharingInfo& info, | 9 | BlockingBounds* lp_dflp_bounds(const ResourceSharingInfo& info, |
| 10 | const ResourceLocality& locality); | 10 | const ResourceLocality& locality); |
| 11 | 11 | ||
| 12 | extern BlockingBounds* lp_mpcp_bounds(const ResourceSharingInfo& info); | 12 | BlockingBounds* lp_mpcp_bounds(const ResourceSharingInfo& info); |
| 13 | |||
| 14 | BlockingBounds* lp_part_fmlp_bounds(const ResourceSharingInfo& info); | ||
| 13 | 15 | ||
| 14 | #endif /* LP_ANALYSYS_H_ */ | 16 | #endif /* LP_ANALYSYS_H_ */ |
diff --git a/native/src/blocking/linprog/lp_fmlp.cpp b/native/src/blocking/linprog/lp_fmlp.cpp new file mode 100644 index 0000000..75e2186 --- /dev/null +++ b/native/src/blocking/linprog/lp_fmlp.cpp | |||
| @@ -0,0 +1,286 @@ | |||
| 1 | #include <iostream> | ||
| 2 | #include <set> | ||
| 3 | #include <algorithm> | ||
| 4 | |||
| 5 | #include "lp_common.h" | ||
| 6 | #include "blocking.h" | ||
| 7 | #include "stl-hashmap.h" | ||
| 8 | |||
| 9 | #include "cpu_time.h" | ||
| 10 | |||
| 11 | typedef hashmap<unsigned int, unsigned int> BlockingLimits; | ||
| 12 | |||
| 13 | // Constraint 14 | ||
| 14 | static void add_fifo_cluster_constraints( | ||
| 15 | VarMapper& vars, | ||
| 16 | const ResourceSharingInfo& info, | ||
| 17 | const TaskInfo& ti, | ||
| 18 | LinearProgram& lp) | ||
| 19 | { | ||
| 20 | foreach_remote_task(info.get_tasks(), ti, tx) | ||
| 21 | { | ||
| 22 | unsigned int t = tx->get_id(); | ||
| 23 | |||
| 24 | // compute direct blocking opportunities, not counting Tx | ||
| 25 | BlockingLimits per_resource_remote; | ||
| 26 | |||
| 27 | foreach(ti.get_requests(), req) | ||
| 28 | per_resource_remote[req->get_resource_id()] = 0; | ||
| 29 | |||
| 30 | foreach_local_task_except(info.get_tasks(), *tx, ty) | ||
| 31 | { | ||
| 32 | foreach(ty->get_requests(), req) | ||
| 33 | { | ||
| 34 | unsigned int u = req->get_resource_id(); | ||
| 35 | if (per_resource_remote.find(u) != | ||
| 36 | per_resource_remote.end()) | ||
| 37 | per_resource_remote[u] += req->get_max_num_requests(ti.get_response()); | ||
| 38 | } | ||
| 39 | } | ||
| 40 | |||
| 41 | unsigned int total_limit = 0; | ||
| 42 | foreach(ti.get_requests(), req) | ||
| 43 | { | ||
| 44 | unsigned int u = req->get_resource_id(); | ||
| 45 | total_limit += std::min(req->get_num_requests(), | ||
| 46 | per_resource_remote[u]); | ||
| 47 | } | ||
| 48 | |||
| 49 | LinearExpression *exp = new LinearExpression(); | ||
| 50 | |||
| 51 | foreach(tx->get_requests(), request) | ||
| 52 | { | ||
| 53 | unsigned int q = request->get_resource_id(); | ||
| 54 | |||
| 55 | foreach_request_instance(*request, ti, v) | ||
| 56 | { | ||
| 57 | unsigned int var_id; | ||
| 58 | var_id = vars.lookup(t, q, v, BLOCKING_INDIRECT); | ||
| 59 | exp->add_var(var_id); | ||
| 60 | } | ||
| 61 | } | ||
| 62 | |||
| 63 | lp.add_inequality(exp, total_limit); | ||
| 64 | } | ||
| 65 | } | ||
| 66 | |||
| 67 | // Constraint 13 | ||
| 68 | static void add_total_fifo_constraints( | ||
| 69 | VarMapper& vars, | ||
| 70 | const ResourceSharingInfo& info, | ||
| 71 | const TaskInfo& ti, | ||
| 72 | LinearProgram& lp, | ||
| 73 | BlockingLimits &per_cluster_counts) | ||
| 74 | { | ||
| 75 | |||
| 76 | unsigned int total_num_requests = 0; | ||
| 77 | |||
| 78 | foreach(ti.get_requests(), req) | ||
| 79 | total_num_requests += req->get_num_requests(); | ||
| 80 | |||
| 81 | foreach_task_except(info.get_tasks(), ti, tx) | ||
| 82 | { | ||
| 83 | unsigned int t = tx->get_id(); | ||
| 84 | |||
| 85 | LinearExpression *exp = new LinearExpression(); | ||
| 86 | |||
| 87 | //for all requests accessed by tx | ||
| 88 | foreach(tx->get_requests(), request) | ||
| 89 | { | ||
| 90 | unsigned int q = request->get_resource_id(); | ||
| 91 | |||
| 92 | foreach_request_instance(*request, ti, v) | ||
| 93 | { | ||
| 94 | unsigned int var_id; | ||
| 95 | var_id = vars.lookup(t, q, v, BLOCKING_DIRECT); | ||
| 96 | exp->add_var(var_id); | ||
| 97 | var_id = vars.lookup(t, q, v, BLOCKING_INDIRECT); | ||
| 98 | exp->add_var(var_id); | ||
| 99 | } | ||
| 100 | } | ||
| 101 | |||
| 102 | lp.add_inequality(exp, per_cluster_counts[tx->get_cluster()]); | ||
| 103 | } | ||
| 104 | } | ||
| 105 | |||
| 106 | // Constraint 12 | ||
| 107 | static void add_fifo_resource_constraints( | ||
| 108 | VarMapper& vars, | ||
| 109 | const ResourceSharingInfo& info, | ||
| 110 | const TaskInfo& ti, | ||
| 111 | LinearProgram& lp) | ||
| 112 | { | ||
| 113 | BlockingLimits per_resource_counts; | ||
| 114 | |||
| 115 | foreach(ti.get_requests(), req) | ||
| 116 | per_resource_counts[req->get_resource_id()] = req->get_num_requests(); | ||
| 117 | |||
| 118 | foreach_task_except(info.get_tasks(), ti, tx) | ||
| 119 | { | ||
| 120 | unsigned int t = tx->get_id(); | ||
| 121 | //for all requests accessed by tx | ||
| 122 | foreach(tx->get_requests(), request) | ||
| 123 | { | ||
| 124 | unsigned int q = request->get_resource_id(); | ||
| 125 | LinearExpression *exp = new LinearExpression(); | ||
| 126 | |||
| 127 | foreach_request_instance(*request, ti, v) | ||
| 128 | { | ||
| 129 | unsigned int var_id; | ||
| 130 | var_id = vars.lookup(t, q, v, BLOCKING_DIRECT); | ||
| 131 | exp->add_var(var_id); | ||
| 132 | } | ||
| 133 | |||
| 134 | lp.add_inequality(exp, per_resource_counts[q]); | ||
| 135 | } | ||
| 136 | } | ||
| 137 | } | ||
| 138 | |||
| 139 | static BlockingLimits count_blocking_opportunities( | ||
| 140 | const ResourceSharingInfo &info, | ||
| 141 | const TaskInfo& ti) | ||
| 142 | { | ||
| 143 | BlockingLimits per_cluster_counts; | ||
| 144 | |||
| 145 | foreach_task_except(info.get_tasks(), ti, tx) | ||
| 146 | { | ||
| 147 | unsigned int c = tx->get_cluster(); | ||
| 148 | |||
| 149 | if (per_cluster_counts.find(c) == per_cluster_counts.end()) | ||
| 150 | { | ||
| 151 | // compute direct blocking opportunities on Tx's cluster | ||
| 152 | BlockingLimits per_resource_remote; | ||
| 153 | |||
| 154 | foreach(ti.get_requests(), req) | ||
| 155 | per_resource_remote[req->get_resource_id()] = 0; | ||
| 156 | |||
| 157 | foreach_local_task(info.get_tasks(), *tx, ty) | ||
| 158 | { | ||
| 159 | foreach(ty->get_requests(), req) | ||
| 160 | { | ||
| 161 | unsigned int u = req->get_resource_id(); | ||
| 162 | if (per_resource_remote.find(u) != | ||
| 163 | per_resource_remote.end()) | ||
| 164 | per_resource_remote[u] += req->get_max_num_requests(ti.get_response()); | ||
| 165 | } | ||
| 166 | } | ||
| 167 | |||
| 168 | per_cluster_counts[c] = 0; | ||
| 169 | foreach(ti.get_requests(), req) | ||
| 170 | { | ||
