| 1 | #include "sopnamsp.h"
 | 
|---|
| 2 | #include "zthread.h"
 | 
|---|
| 3 | #include "resusage.h"
 | 
|---|
| 4 | 
 | 
|---|
| 5 | #include <iostream>
 | 
|---|
| 6 | #include <vector>
 | 
|---|
| 7 | 
 | 
|---|
| 8 | #include "tmatrix.h"
 | 
|---|
| 9 | #include "tvector.h"
 | 
|---|
| 10 | #include "matharr.h"
 | 
|---|
| 11 | #include "tarrinit.h"
 | 
|---|
| 12 | 
 | 
|---|
| 13 | #include <stdlib.h>
 | 
|---|
| 14 | #include <stdio.h>
 | 
|---|
| 15 | 
 | 
|---|
| 16 | /* -------------------------------------------------
 | 
|---|
| 17 |   Programme de test des classes de threads de SOPHYA
 | 
|---|
| 18 |   SOPHYA::ZThread SOPHYA::ZMutex ...
 | 
|---|
| 19 |   Exemples d'execution
 | 
|---|
| 20 |   csh> time zthr mtx 2 500     
 | 
|---|
| 21 |   csh> time zthr arr 2 500
 | 
|---|
| 22 |   csh> time zthr arrdl 2 500
 | 
|---|
| 23 |   csh> time zthr arrmf 2 500
 | 
|---|
| 24 |   csh> time zthr sync 4 1000
 | 
|---|
| 25 |   csh> time zthr syncp 4 1000
 | 
|---|
| 26 | */
 | 
|---|
| 27 |  
 | 
|---|
| 28 | #include <time.h>
 | 
|---|
| 29 | #include <unistd.h>
 | 
|---|
| 30 | 
 | 
|---|
| 31 | #include "timing.h"
 | 
|---|
| 32 | #include "ctimer.h"
 | 
|---|
| 33 | 
 | 
|---|
| 34 | 
 | 
|---|
| 35 | // --- Structure d'argument pour fonction d'execution dans les threads de test
 | 
|---|
| 36 | typedef struct  {
 | 
|---|
| 37 |   int_4 thid, NTh;
 | 
|---|
| 38 |   int_4 M, VSz;
 | 
|---|
| 39 | } ztarg;
 | 
|---|
| 40 | 
 | 
|---|
| 41 | // --- fonction de test simple avec boucle de sleep
 | 
|---|
| 42 | void funzt(void *arg)
 | 
|---|
| 43 | {
 | 
|---|
| 44 | time_t t0, t1;
 | 
|---|
| 45 | int i;
 | 
|---|
| 46 | 
 | 
|---|
| 47 | ztarg * za = (ztarg *)arg;
 | 
|---|
| 48 | 
 | 
|---|
| 49 | t0 = time(NULL);
 | 
|---|
| 50 | printf("+++++ funzt(ThId=%d) Entry to funzt (za.M=%d) +++++\n", za->thid, za->M);
 | 
|---|
| 51 | int imax = za->M;
 | 
|---|
| 52 | for(i=0; i<imax; i++)
 | 
|---|
| 53 |   {
 | 
|---|
| 54 |   sleep(3);
 | 
|---|
| 55 |   t1 = time(NULL)-t0;
 | 
|---|
| 56 |   printf("++funzt(ThId=%d)  Dt= %d \n", za->thid, (int)t1);
 | 
|---|
| 57 |   }
 | 
|---|
| 58 | 
 | 
|---|
| 59 | return;
 | 
|---|
| 60 | }
 | 
|---|
| 61 | 
 | 
|---|
| 62 | // --- fonction de test simple avec calcul matriciel (produit de 2 matrices double)
 | 
|---|
| 63 | void mtx_funzt(void *arg)
 | 
|---|
| 64 | {
 | 
|---|
| 65 |   ztarg * za = (ztarg *)arg;
 | 
|---|
| 66 |   cout << ">>>> mtx-funzt(ThId=" << za->thid << ") - Matrix size= " << za->M << endl;
 | 
|---|
| 67 |   
 | 
|---|
| 68 |   sa_size_t m = za->M;
 | 
|---|
| 69 |   Matrix a1(m,m), a2(m,m), mxprod; 
 | 
|---|
| 70 |   a1 = RandomSequence(RandomSequence::Gaussian, 0., 4.);
 | 
|---|
| 71 |   a2 = RandomSequence(RandomSequence::Gaussian, 0., 3.);
 | 
|---|
| 72 |   char buff[128];
 | 
|---|
| 73 |   sprintf(buff, "mtx-funzt(ThId=%d) EndOfInit", za->thid); 
 | 
|---|
| 74 |   PrtTim(buff);
 | 
|---|
| 75 |   mxprod = a1*a2;
 | 
|---|
| 76 |   sprintf(buff, "mtx-funzt(ThId=%d) EndOfMxProd", za->thid); 
 | 
|---|
| 77 |   PrtTim(buff);
 | 
|---|
| 78 |   return;
 | 
|---|
| 79 | }
 | 
|---|
| 80 | // --- fonction de test simple avec calcul sur tableaux entier I4
 | 
|---|
| 81 | void arr_funzt(void *arg)
 | 
|---|
| 82 | {
 | 
|---|
| 83 |   ztarg * za = (ztarg *)arg;
 | 
|---|
| 84 |   cout << ">>>> arr-funzt(ThId=" << za->thid << ") - Matrix size= " << za->M << endl;
 | 
|---|
| 85 |   
 | 
|---|
| 86 |   sa_size_t m = za->M;
 | 
|---|
| 87 |   TMatrix<int_4> a1(m,m), a2(m,m), ares; 
 | 
|---|
| 88 |   a1 = RegularSequence(1.,1.);
 | 
|---|
| 89 |   a2 = RegularSequence(5.,3.);
 | 
|---|
| 90 |   char buff[128];
 | 
|---|
| 91 |   sprintf(buff, "arr-funzt(ThId=%d) EndOfInit", za->thid); 
 | 
|---|
| 92 |   PrtTim(buff);
 | 
|---|
| 93 |   //  ares = 4*a1*12*a2;  correction le 23/05/2007 - * (prod.mtx par erreur)
 | 
|---|
| 94 |   ares = (4*a1)+(12*a2);
 | 
|---|
| 95 |   sprintf(buff, "arr-funzt(ThId=%d) EndOfOper", za->thid); 
 | 
|---|
| 96 |   PrtTim(buff);
 | 
|---|
| 97 |   return;
 | 
|---|
| 98 | }
 | 
|---|
| 99 | // --- fonction de test simple avec calcul de type DL sur tableaux double 1D
 | 
|---|
| 100 | void arrdl_funzt(void *arg)
 | 
|---|
| 101 | {
 | 
|---|
| 102 |   ztarg * za = (ztarg *)arg;
 | 
|---|
| 103 |   sa_size_t vsz = za->M*za->M;
 | 
|---|
| 104 |   sa_size_t EXS = 10;
 | 
|---|
| 105 | 
 | 
|---|
| 106 |   cout << ">>>> arrdl-funzt(ThId=" << za->thid << " DataBlock_Sz=M*M " << vsz  
 | 
|---|
| 107 |        << " V2=DLO4(V1) , NOp ~= 10*10*vsz=" << 10*EXS*vsz << endl;
 | 
|---|
| 108 |   
 | 
|---|
| 109 |   TVector<r_8> v1(vsz), v2(vsz); 
 | 
|---|
| 110 |   TVector<r_8> coeff(EXS); 
 | 
|---|
| 111 |   coeff = RandomSequence();
 | 
|---|
| 112 |   //  v1 = RegularSequence(1.,0.001);  --- ATTENTION , couteux en temps
 | 
|---|
| 113 |   //  NDataBlock<r_8> v1(vsz, false), v2(vsz, false); 
 | 
|---|
| 114 |   for(sa_size_t i=0; i<vsz; i++)   v1(i) = i*0.001; 
 | 
|---|
| 115 |   char buff[128];
 | 
|---|
| 116 |   sprintf(buff, "arrdl-funzt(ThId=%d) EndOfInit", za->thid); 
 | 
|---|
| 117 |   PrtTim(buff);
 | 
|---|
| 118 | 
 | 
|---|
| 119 |   double c2 = 0.5;
 | 
|---|
| 120 |   double c3 = 1./6.;
 | 
|---|
| 121 |   double c4 = 1./24;
 | 
|---|
| 122 |   for(sa_size_t k=0; k<EXS; k++) {
 | 
|---|
| 123 |     for(sa_size_t i=0; i<vsz; i++) {
 | 
|---|
| 124 |       register double x = v1(i)*coeff(k); 
 | 
|---|
| 125 |       v2(i) = x*(1+x*(x*c2+x*(x*c3+x*x*c4)));
 | 
|---|
| 126 |     }
 | 
|---|
| 127 |   }
 | 
|---|
| 128 |   sprintf(buff, "arrdl-funzt(ThId=%d) EndOfOper", za->thid); 
 | 
|---|
| 129 |   PrtTim(buff);
 | 
|---|
| 130 |   return;
 | 
|---|
| 131 | }
 | 
|---|
| 132 | // --- fonction de test simple avec calcul de type fonction mathematique sur tableaux double 1D
 | 
|---|
| 133 | void arrmf_funzt(void *arg)
 | 
|---|
| 134 | {
 | 
|---|
| 135 |   ztarg * za = (ztarg *)arg;
 | 
|---|
| 136 |   sa_size_t vsz = za->M*za->M;
 | 
|---|
| 137 | 
 | 
|---|
| 138 |   cout << ">>>> arrmf-funzt(ThId=" << za->thid << " VecSz=M*M " << vsz  
 | 
|---|
| 139 |        << " V2=Sin(V1) , NOp ~= 50*vsz=" << 50*vsz << endl;
 | 
|---|
| 140 |   
 | 
|---|
| 141 |   TVector<r_8> v1(vsz), v2(vsz); 
 | 
|---|
| 142 |   //--  v1 = RegularSequence(1.,0.001);  COUTEUX en TCPU
 | 
|---|
| 143 |   for(sa_size_t i=0; i<vsz; i++)  v1(i) = i*0.001; 
 | 
|---|
| 144 |   char buff[128];
 | 
|---|
| 145 |   sprintf(buff, "arrmf-funzt(ThId=%d) EndOfInit", za->thid);
 | 
|---|
| 146 |   PrtTim(buff);
 | 
|---|
| 147 | 
 | 
|---|
| 148 |   v2 = Sin(v1);
 | 
|---|
| 149 |   v2 += Cos(v1);
 | 
|---|
| 150 |   sprintf(buff, "arrmf-funzt(ThId=%d) EndOfOper", za->thid); 
 | 
|---|
| 151 |   PrtTim(buff);
 | 
|---|
| 152 |   return;
 | 
|---|
| 153 | }
 | 
|---|
| 154 | 
 | 
|---|
| 155 | 
 | 
|---|
| 156 | // Structure de gestion utilisee par la classe MTVecPool
 | 
|---|
| 157 | typedef struct {
 | 
|---|
| 158 |   bool busy;
 | 
|---|
| 159 |   int stat;
 | 
|---|
| 160 | } St_VecPool;
 | 
|---|
| 161 | 
 | 
|---|
| 162 | // -------------------------------------------------------------------
 | 
|---|
| 163 | // Structure de gestion de zones memoire partagee (des vecteurs) entre
 | 
|---|
| 164 | // threads - qui doivent operer successivement sur les vecteurs
 | 
|---|
| 165 | // -------------------------------------------------------------------
 | 
|---|
| 166 | class MTVecPool {
 | 
|---|
| 167 | public:
 | 
|---|
| 168 |   MTVecPool(uint_4 nth, uint_4 vsz, uint_4 nvec)
 | 
|---|
| 169 |   {
 | 
|---|
| 170 |     if (nth > 60) throw ParmError("MTVecPool::MTVecPool() nth > 60");
 | 
|---|
| 171 |     if ((nth < 1) || (vsz < 2))
 | 
|---|
| 172 |         throw ParmError("MTVecPool::MTVecPool() nth<1 OR vsz<2 ");
 | 
|---|
| 173 |     _vmx.SetSize(vsz, nvec);
 | 
|---|
| 174 |     _nth = nth;
 | 
|---|
| 175 |     _vsz = vsz; 
 | 
|---|
| 176 |     TVector<int_8> xx(2);
 | 
|---|
| 177 |     for(int k=0; k<nth; k++) _vecp.push_back(xx);
 | 
|---|
| 178 |     cout << "-- MTVecPool(nth=" << nth << ")" << endl;
 | 
|---|
| 179 |     _vmx.Show();
 | 
|---|
| 180 |   }
 | 
|---|
| 181 |   ~MTVecPool()   { }
 | 
|---|
| 182 |   // Renvoie un pointeur de vecteur pour thread tid
 | 
|---|
| 183 |   TVector<int_8>*  GetVecP(uint_4 tid, uint_4& idx)
 | 
|---|
| 184 |   {
 | 
|---|
| 185 |     if (tid >= _nth) ParmError("MTVecPool::GetVecP() tid > _nth");
 | 
|---|
| 186 |     //DBG  cout << "DBG-GetVecP(tid= " << tid << ")" << endl;
 | 
|---|
| 187 |     if (tid == 0) {
 | 
|---|
| 188 |       mex.lock();
 | 
|---|
| 189 |       St_VecPool stv;
 | 
|---|
| 190 |       idx = _vecs.size();
 | 
|---|
| 191 |       _vecp[tid].Share(_vmx.Column(idx));
 | 
|---|
| 192 |       stv.busy = true;
 | 
|---|
| 193 |       stv.stat = 0;
 | 
|---|
| 194 |       _vecs.push_back(stv);
 | 
|---|
| 195 |       mex.unlock();
 | 
|---|
| 196 |       //DBG cout << "DBG-GetVecP(tid= " << tid << ") -> Idx=" << idx << " VecSz=" << &(_vecs[idx].vv) << endl;
 | 
|---|
| 197 |       return (&(_vecp[tid]));
 | 
|---|
| 198 |     }
 | 
|---|
| 199 |     else {
 | 
|---|
| 200 |       mex.lock();
 | 
|---|
| 201 |       bool found = false;
 | 
|---|
| 202 |       while (!found) {
 | 
|---|
| 203 |         for(uint_4 k=0; k<_vecs.size(); k++) {
 | 
|---|
| 204 |           if ( (_vecs[k].stat == tid) && (! _vecs[k].busy) ) {
 | 
|---|
| 205 |             found = true;  idx = k;
 | 
|---|
| 206 |             _vecs[k].stat = tid; _vecs[k].busy = true; 
 | 
|---|
| 207 |             break;
 | 
|---|
| 208 |           }
 | 
|---|
| 209 |         }
 | 
|---|
| 210 |         if (found) {
 | 
|---|
| 211 |           _vecp[tid].Share(_vmx.Column(idx));
 | 
|---|
| 212 |           mex.unlock();
 | 
|---|
| 213 |           //DBG  cout << "DBG-GetVecP(tid= " << tid << ") -> nv=" << hex << rv << dec << endl;
 | 
|---|
| 214 |           return (&(_vecp[tid]));
 | 
|---|
| 215 |         }
 | 
|---|
| 216 |         else { 
 | 
|---|
| 217 |           mex.broadcast();
 | 
|---|
| 218 |           mex.wait();
 | 
|---|
| 219 |         }
 | 
|---|
| 220 |       }
 | 
|---|
| 221 |     }
 | 
|---|
| 222 |   }
 | 
|---|
| 223 |   // Renvoie un vecteur pour thread tid
 | 
|---|
| 224 |   TVector<int_8>  GetVec(uint_4 tid, uint_4& idx)
 | 
|---|
| 225 |   {
 | 
|---|
| 226 |     if (tid >= _nth) ParmError("MTVecPool::GetVec() tid > _nth");
 | 
|---|
| 227 |     //DBG  cout << "DBG-GetVec(tid= " << tid << ")" << endl;
 | 
|---|
| 228 |     if (tid == 0) {
 | 
|---|
| 229 |       mex.lock();
 | 
|---|
| 230 |       St_VecPool stv;
 | 
|---|
| 231 |       idx = _vecs.size();
 | 
|---|
| 232 |       stv.busy = true;
 | 
|---|
| 233 |       stv.stat = 0;
 | 
|---|
| 234 |       _vecs.push_back(stv);
 | 
|---|
| 235 |       mex.unlock();
 | 
|---|
| 236 |       //DBG cout << "DBG-GetVec(tid= " << tid << ") -> Idx=" << idx << " VecSz=" << &(_vecs[idx].vv) << endl;
 | 
|---|
| 237 |       return (_vmx.Column(idx));
 | 
|---|
| 238 |     }
 | 
|---|
| 239 |     else {
 | 
|---|
| 240 |       mex.lock();
 | 
|---|
| 241 |       bool found = false;
 | 
|---|
| 242 |       while (!found) {
 | 
|---|
| 243 |         for(uint_4 k=0; k<_vecs.size(); k++) {
 | 
|---|
| 244 |           if ( (_vecs[k].stat == tid) && (! _vecs[k].busy) ) {
 | 
|---|
| 245 |             found = true;  idx = k;
 | 
|---|
| 246 |             _vecs[k].stat = tid; _vecs[k].busy = true; 
 | 
|---|
| 247 |             break;
 | 
|---|
| 248 |           }
 | 
|---|
| 249 |         }
 | 
|---|
| 250 |         if (found) {
 | 
|---|
| 251 |           mex.unlock();
 | 
|---|
| 252 |           //DBG  cout << "DBG-GetVec(tid= " << tid << ") -> nv=" << hex << rv << dec << endl;
 | 
|---|
| 253 |           return (_vmx.Column(idx));
 | 
|---|
| 254 |         }
 | 
|---|
| 255 |         else { 
 | 
|---|
| 256 |           mex.broadcast();
 | 
|---|
| 257 |           mex.wait();
 | 
|---|
| 258 |         }
 | 
|---|
| 259 |       }
 | 
|---|
| 260 |     }
 | 
|---|
| 261 |   }
 | 
|---|
| 262 | 
 | 
|---|
| 263 |   // Retourne l'index du vecteur au gestionnaire, qui le marque comme disponible
 | 
|---|
| 264 |   void RetVec(uint_4 idx)
 | 
|---|
| 265 |   {
 | 
|---|
| 266 |     //DBG cout << "DBG-RetVec(idx= " << idx << ")" << endl;
 | 
|---|
| 267 |     ZSync zs(mex, 2);
 | 
|---|
| 268 |     _vecs[idx].busy = false; _vecs[idx].stat++; 
 | 
|---|
| 269 |     zs.NOp();
 | 
|---|
| 270 |   }
 | 
|---|
| 271 | 
 | 
|---|
| 272 |   // Verifie l'etat memoire de tous les vecteurs et fait des print
 | 
|---|
| 273 |   int Check()
 | 
|---|
| 274 |   {
 | 
|---|
| 275 |     cout << "MTVecPool::Check() NVec=" << _vecs.size() << " VSz=" 
 | 
|---|
| 276 |          << _vsz << " NThreads=" << _nth << endl;
 | 
|---|
| 277 |     int nerr = 0;
 | 
|---|
| 278 |     int_8 sum = 0;
 | 
|---|
| 279 |     int_8 p2 = 1;
 | 
|---|
| 280 |     int_8 min,max;
 | 
|---|
| 281 |     for(int i=0; i<_nth; i++) { sum += p2; p2 *= 2; }
 | 
|---|
| 282 |     for(uint_4 k=0; k<_vecs.size(); k++) {
 | 
|---|
| 283 |       if ( (_vecs[k].busy) || (_vecs[k].stat != _nth) ) {
 | 
|---|
| 284 |         cout << " Check()/Pb Busy Or Stat  for k=" << k << endl;
 | 
|---|
| 285 |         nerr++;
 | 
|---|
| 286 |       }
 | 
|---|
| 287 |       _vmx.Column(k) -= sum;
 | 
|---|
| 288 |       _vmx.Column(k).MinMax(min, max);
 | 
|---|
| 289 |       if ((min!=0) || (max!=0)) {
 | 
|---|
| 290 |         cout << " Check()/Pb vec[k=" << k << "] != (sum=" << sum << ")" << endl;
 | 
|---|
| 291 |         nerr++;
 | 
|---|
| 292 |       }
 | 
|---|
| 293 |     }
 | 
|---|
| 294 |     if (nerr == 0) cout << "MTVecPool::Check()  - OK (NErr=0)" << endl;
 | 
|---|
| 295 |     else cout << "MTVecPool::Check() PB NErr=" << nerr << endl;
 | 
|---|
| 296 |     return nerr;
 | 
|---|
| 297 |   }
 | 
|---|
| 298 | 
 | 
|---|
| 299 |   // ... variables membres
 | 
|---|
| 300 |   ZMutex mex;
 | 
|---|
| 301 |   uint_4 _vsz;
 | 
|---|
| 302 |   uint_4 _nth;
 | 
|---|
| 303 |   TMatrix<int_8> _vmx;
 | 
|---|
| 304 |   vector< St_VecPool> _vecs;
 | 
|---|
| 305 |   vector< TVector<int_8> > _vecp;
 | 
|---|
| 306 | };
 | 
|---|
| 307 | 
 | 
|---|
| 308 | 
 | 
|---|
| 309 | static MTVecPool* mtvp = NULL;
 | 
|---|
| 310 | 
 | 
|---|
| 311 | // --- fonction de test avec synchronisation entre threads en utilisant pointeur de vecteurs
 | 
|---|
| 312 | void syncp_funzt(void *arg)
 | 
|---|
| 313 | {
 | 
|---|
| 314 |   ztarg * za = (ztarg *)arg;
 | 
|---|
| 315 |   cout << ">>>> syncp_funzt(ThId=" << za->thid << ") - NVec/NLoop= " << za->M << endl;
 | 
|---|
| 316 |   
 | 
|---|
| 317 |   if (mtvp == NULL) 
 | 
|---|
| 318 |     throw NullPtrError("syncp_funzt: MTVecPool* mtvp = NULL");
 | 
|---|
| 319 | 
 | 
|---|
| 320 |   int_4 L = za->M;
 | 
|---|
| 321 |   int_4 VS = za->VSz;
 | 
|---|
| 322 |   int_8 p2 = 1;
 | 
|---|
| 323 |   uint_4 k, ii, tid;
 | 
|---|
| 324 |   tid = za->thid;
 | 
|---|
| 325 |   for(k=0; k<tid; k++) p2 *= 2;
 | 
|---|
| 326 | 
 | 
|---|
| 327 |   char buff[128];
 | 
|---|
| 328 |   sprintf(buff, "syncp_funzt(ThId=%d) StarOfLoop", za->thid); 
 | 
|---|
| 329 |   PrtTim(buff);
 | 
|---|
| 330 |   uint_4 idx;
 | 
|---|
| 331 |   for(k=0; k<L; k++) {
 | 
|---|
| 332 |     *(mtvp->GetVecP(tid, idx)) += p2;
 | 
|---|
| 333 |     //DBG cout << "DBG-syncp_funzt(tid=" << tid << ", idx=" << idx << endl;
 | 
|---|
| 334 |       mtvp->RetVec(idx);
 | 
|---|
| 335 |   }
 | 
|---|
| 336 |   sprintf(buff, "syncp_funzt(ThId=%d) EndOfLoop", za->thid); 
 | 
|---|
| 337 |   PrtTim(buff);
 | 
|---|
| 338 |   return;
 | 
|---|
| 339 | }
 | 
|---|
| 340 | // --- fonction de test avec synchronisation entre threads
 | 
|---|
| 341 | void sync_funzt(void *arg)
 | 
|---|
| 342 | {
 | 
|---|
| 343 |   ztarg * za = (ztarg *)arg;
 | 
|---|
| 344 |   cout << ">>>> sync_funzt(ThId=" << za->thid << ") - NVec/NLoop= " << za->M << endl;
 | 
|---|
| 345 |   
 | 
|---|
| 346 |   if (mtvp == NULL) 
 | 
|---|
| 347 |     throw NullPtrError("sync_funzt: MTVecPool* mtvp = NULL");
 | 
|---|
| 348 | 
 | 
|---|
| 349 |   int_4 L = za->M;
 | 
|---|
| 350 |   int_4 VS = za->VSz;
 | 
|---|
| 351 |   int_8 p2 = 1;
 | 
|---|
| 352 |   uint_4 k, ii, tid;
 | 
|---|
| 353 |   tid = za->thid;
 | 
|---|
| 354 |   for(k=0; k<tid; k++) p2 *= 2;
 | 
|---|
| 355 | 
 | 
|---|
| 356 |   char buff[128];
 | 
|---|
| 357 |   sprintf(buff, "sync_funzt(ThId=%d) StarOfLoop", za->thid); 
 | 
|---|
| 358 |   PrtTim(buff);
 | 
|---|
| 359 |   uint_4 idx;
 | 
|---|
| 360 |   for(k=0; k<L; k++) {
 | 
|---|
| 361 |     mtvp->GetVec(tid, idx) += p2;
 | 
|---|
| 362 |     //DBG cout << "DBG-sync_funzt(tid=" << tid << ", idx=" << idx << endl;
 | 
|---|
| 363 |     mtvp->RetVec(idx);
 | 
|---|
| 364 |   }
 | 
|---|
| 365 |   sprintf(buff, "sync_funzt(ThId=%d) EndOfLoop", za->thid); 
 | 
|---|
| 366 |   PrtTim(buff);
 | 
|---|
| 367 |   return;
 | 
|---|
| 368 | }
 | 
|---|
| 369 | 
 | 
|---|
| 370 | class CountLock : public ZMutex {
 | 
|---|
| 371 |   int count;
 | 
|---|
| 372 | public:
 | 
|---|
| 373 |   CountLock() { count = 0; }
 | 
|---|
| 374 |   inline int Count() { lock(); int rc = ++count; unlock(); return(rc); 
 | 
|---|
| 375 |   }
 | 
|---|
| 376 | };
 | 
|---|
| 377 | 
 | 
|---|
| 378 | 
 | 
|---|
| 379 | static int N = 1;
 | 
|---|
| 380 | static int M = 5;
 | 
|---|
| 381 | static int VSZ = 32;
 | 
|---|
| 382 | 
 | 
|---|
| 383 | int main(int narg, char *arg[])
 | 
|---|
| 384 | 
 | 
|---|
| 385 | {
 | 
|---|
| 386 | 
 | 
|---|
| 387 |   if (narg < 4) {
 | 
|---|
| 388 |     cout << " Usage: zthr select N LM [Sz] " << endl;
 | 
|---|
| 389 |     cout << "  select= sl -> simple loop with sleep " << endl;
 | 
|---|
| 390 |     cout << "  select= mtx -> matrix<r_8> init and multiply mx1*mx2" << endl;
 | 
|---|
| 391 |     cout << "  select= arr -> array/matrix<int_4> init and operation c1*a1+c2*a2 " << endl;
 | 
|---|
| 392 |     cout << "  select= arrdl -> vectorOpe V2 ~= DLO4(V1), VSz=LM*LM " << endl;
 | 
|---|
| 393 |     cout << "  select= arrmf -> vectorOpe V2 = Sin(V1), VSz=LM*LM " << endl;
 | 
|---|
| 394 |     cout << "  select= clk -> Mutex lock count  " << endl;
 | 
|---|
| 395 |     cout << "  select= sync -> Thread synchronisation using ZMutex" << endl;
 | 
|---|
| 396 |     cout << "  select= syncp -> Thread synchronisation using ZMutex , Vector pointers" << endl;
 | 
|---|
| 397 |     cout << "  N= Number of threads (sl/mtx) or CountLock " << endl;
 | 
|---|
| 398 |     cout << "  LM = Loop limit (sl/sync) or Matrix size (mtx) " << endl;
 | 
|---|
| 399 |     cout << "  Sz = Vector size for select=sync,syncp (default=32) " << endl;
 | 
|---|
| 400 |     return(1);
 | 
|---|
| 401 |   }
 | 
|---|
| 402 | 
 | 
|---|
| 403 |   string sel = arg[1];
 | 
|---|
| 404 |   if ((sel != "sl") && (sel != "mtx") && (sel != "arr") && 
 | 
|---|
| 405 |       (sel != "arrdl") && (sel != "arrmf") && 
 | 
|---|
| 406 |       (sel != "sync") && (sel != "syncp") && (sel != "clk")) {
 | 
|---|
| 407 |     cout << "zthr/erreur argument sel (!= sl / mtx / arr / clk) " << endl;
 | 
|---|
| 408 |     return 2;
 | 
|---|
| 409 |   }
 | 
|---|
| 410 | 
 | 
|---|
| 411 |   //--  Decodage arguments
 | 
|---|
| 412 |   N = atoi(arg[2]);
 | 
|---|
| 413 |   M = atoi(arg[3]);
 | 
|---|
| 414 |   if (narg > 4) VSZ = atoi(arg[4]);
 | 
|---|
| 415 |   cout << "zthr/Info: select=" << sel << " N=" << N << " M= " << M 
 | 
|---|
| 416 |        << " VSz=" << VSZ << endl;
 | 
|---|
| 417 |  
 | 
|---|
| 418 |   
 | 
|---|
| 419 |   InitTim();
 | 
|---|
| 420 |   SophyaInit();
 | 
|---|
| 421 | 
 | 
|---|
| 422 |   int rc = 0;
 | 
|---|
| 423 |   try {
 | 
|---|
| 424 |     ResourceUsage res(ResourceUsage::RU_All);
 | 
|---|
| 425 |     if ((sel == "mtx") || (sel == "arr") || (sel == "sl") || 
 | 
|---|
| 426 |         (sel == "arrdl") || (sel == "arrmf") ||
 | 
|---|
| 427 |         (sel == "sync") || (sel == "syncp")) {
 | 
|---|
| 428 |       if ( (sel == "sync") || (sel == "syncp"))  mtvp = new MTVecPool(N,VSZ,M);
 | 
|---|
| 429 |       vector<ztarg *> vza;
 | 
|---|
| 430 |       vector<ZThread *> vzth;
 | 
|---|
| 431 |       for(int i=0; i<N; i++) {
 | 
|---|
| 432 |         cout << "*****zthr: Creating Thread " << i+1 << " /" << N << endl;
 | 
|---|
| 433 |         ZThread * pzt = new ZThread();
 | 
|---|
| 434 |         ztarg* zap = new ztarg;
 | 
|---|
| 435 |         vzth.push_back(pzt);
 | 
|---|
| 436 |         // ATTENTION : il faut que le thid = 0 ... N-1 (et pas 1)
 | 
|---|
| 437 |         zap->thid = i;  zap->M = M;
 | 
|---|
| 438 |         zap->NTh = N;   zap->VSz = VSZ;
 | 
|---|
| 439 |         vza.push_back(zap);
 | 
|---|
| 440 |         if (sel == "mtx")  pzt->setAction(mtx_funzt, vza[i]);
 | 
|---|
| 441 |         else if (sel == "arr")  pzt->setAction(arr_funzt, vza[i]);
 | 
|---|
| 442 |         else if (sel == "arrdl")  pzt->setAction(arrdl_funzt, vza[i]);
 | 
|---|
| 443 |         else if (sel == "arrmf")  pzt->setAction(arrmf_funzt, vza[i]);
 | 
|---|
| 444 |         else if (sel == "sync")  pzt->setAction(sync_funzt, vza[i]);
 | 
|---|
| 445 |         else if (sel == "syncp")  pzt->setAction(syncp_funzt, vza[i]);
 | 
|---|
| 446 |         else pzt->setAction(funzt, vza[i]);
 | 
|---|
| 447 |       }
 | 
|---|
| 448 |       cout << "***zthr: Starting threads ... " << endl;
 | 
|---|
| 449 |       PrtTim("***zthr/StarThr");
 | 
|---|
| 450 |       for(int i=0; i<N; i++) vzth[i]->start();
 | 
|---|
| 451 |       sleep(1);
 | 
|---|
| 452 |       cout << "***ResourceUsage before thr[i].join()" << endl;
 | 
|---|
| 453 |       cout << res;
 | 
|---|
| 454 |       cout << "***zthr Joining Threads ..." << endl;
 | 
|---|
| 455 |       for(int i=0; i<N; i++) vzth[i]->join();
 | 
|---|
| 456 |       cout << "***zthr Threads Z1 ... Z" << N << " Finished OK" << endl;
 | 
|---|
| 457 |       cout << " zthr/Resusage: getDataSize() = " << res.getDataSize() << "  getStackSize()=" 
 | 
|---|
| 458 |            << res.getStackSize() << endl;
 | 
|---|
| 459 |       cout << res;
 | 
|---|
| 460 |       for(int i=0; i<N; i++) {
 | 
|---|
| 461 |         delete vzth[i];
 | 
|---|
| 462 |         delete vza[i];
 | 
|---|
| 463 |       }
 | 
|---|
| 464 |       if (mtvp) {
 | 
|---|
| 465 |         Timer tm("MTVecPool::Check()");
 | 
|---|
| 466 |         mtvp->Check();
 | 
|---|
| 467 |         tm.Nop();
 | 
|---|
| 468 |         delete mtvp;
 | 
|---|
| 469 |       }
 | 
|---|
| 470 |     }
 | 
|---|
| 471 |     else {
 | 
|---|
| 472 |       PrtTim("BeginOfCount");
 | 
|---|
| 473 |       CountLock clk;
 | 
|---|
| 474 |       int kk;
 | 
|---|
| 475 |       for(kk=0; kk<atoi(arg[3]); kk++) {
 | 
|---|
| 476 |         clk.Count();
 | 
|---|
| 477 |       }
 | 
|---|
| 478 |       cout << " End CountLock-Test Count= " << clk.Count() << endl;
 | 
|---|
| 479 |     }
 | 
|---|
| 480 |   }
 | 
|---|
| 481 |   catch (PThrowable exc) {
 | 
|---|
| 482 |     cerr << "zthr: catched Exception " << exc.Msg() << endl;
 | 
|---|
| 483 |     rc = 77;
 | 
|---|
| 484 |   }  
 | 
|---|
| 485 |   catch (...) {
 | 
|---|
| 486 |     cerr << " catched unknown (...) exception (lpk.cc) " << endl; 
 | 
|---|
| 487 |     rc = 78; 
 | 
|---|
| 488 |   } 
 | 
|---|
| 489 |   
 | 
|---|
| 490 |   return(rc);
 | 
|---|
| 491 |   
 | 
|---|
| 492 | }
 | 
|---|
| 493 | 
 | 
|---|
| 494 | 
 | 
|---|
| 495 | 
 | 
|---|