Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00053 #ifndef __M_PROBE_H__
00054 #define __M_PROBE_H__
00055
00056 #include "prefix_sum_tools.hpp"
00057 #include "multiarrays.hpp"
00058
00059 namespace util
00060 {
00071 template <typename T, typename SubMa, typename Ma>
00072 class MProbe
00073 {
00074 public:
00088 static bool probe(T b, const Ma& arrs, int m, int **lb, int **ub, int *procs, int **cuts)
00089 {
00090 using namespace util;
00091 int i;
00092
00093
00094 for(i = 0; i < arrs.arrayCount(); i++)
00095 {
00096 if(m<0)
00097 return false;
00098
00099 procs[i] = rprobe(arrs[i], arrs.getLength(i), b, m, cuts[i], lb[i], ub[i]);
00100 if(procs[i] == -1)
00101 return false;
00102 m-=procs[i];
00103 }
00104 assert (m>=0);
00105 return true;
00106 }
00107 private:
00121 static int rprobe(const SubMa& wpre, int length, const T& bottleneck,
00122 int numproc, int *s, int *sl, int *sh)
00123 {
00124 T bsum = bottleneck;
00125 int p;
00126
00127 for(p = 0; p < numproc - 1 ; p++)
00128 {
00129 assert(sl[p] <= sh[p]);
00130 assert(p < numproc);
00131 s[p] = binarySearch(wpre, sl[p], sh[p], bsum);
00132
00133 if (p > 0)
00134 {
00135 assert (s[p]>=s[p-1]);
00136 assert (wpre[s[p]] - wpre[s[p-1]] <= bottleneck);
00137 }
00138 bsum = wpre[s[p]] + bottleneck;
00139 if(s[p] >= length - 2)
00140 {
00141 if(s[p] != length - 1)
00142 p++;
00143 break;
00144 }
00145
00146 }
00147 if(bsum >= wpre[length - 1])
00148 return p+1;
00149 else
00150 return -1;
00151 }
00152
00153 };
00154 }
00155
00156 #endif