6 #include "structures.h"
10 #include "lib_snake_2_gpu.h"
12 #include "lib_test_gpu.h"
13 #include "lib_kernels_cumuls.cu"
14 #include "lib_kernel_snake_2_gpu.cu"
16 #define DEBUG_IMG_CUMUL 1
17 bool DISPLAY_ERR_IMG_CUMUL = 1;
18 //#define DEBUG_POSITIONS
22 //#define DEBUG_SOMSOM
23 //#define DEBUG_SOMBLOCS
24 //#define DEBUG_LISTES
25 //#define DEBUG_STATS_REF
29 void cuda_init_img_cumul(unsigned short ** img_in, int H, int L, int nb_nodes,
30 unsigned short ** d_img, t_cumul_x ** d_img_x, t_cumul_x2 ** d_img_x2,
31 int ** d_freemanDiDj, int ** d_codeNoeud,
32 snake_node_gpu ** d_snake, uint32 ** d_nb_pix_max,
33 uint4 ** d_positions, uint64 ** d_contribs_segments, uint4 ** d_freemans_centres,
34 int ** d_codes_segments, int64 ** d_stats_snake,
35 int64 ** d_stats, int64 ** d_stats_ref, double ** d_vrais, double ** d_vrais_snake,
36 uint2 ** d_liste_pixels, uint64 ** d_contribs_segments_blocs,
40 unsigned int taille = H*L;
44 //allocation cumuls en memoire GPU
49 MAX_LISTE_PIX 10000000
51 cudaMalloc( (void**) d_snake, MAX_NODES*sizeof(snake_node_gpu) );
53 cudaMalloc( (void**) d_img, taille*sizeof(unsigned short) );
54 cudaMalloc( (void**) d_img_x, taille*sizeof(t_cumul_x) );
55 cudaMalloc( (void**) d_img_x2, taille*sizeof(t_cumul_x2) );
57 cudaMalloc( (void**) d_freemanDiDj, 9*sizeof(int) );
58 cudaMalloc( (void**) d_codeNoeud, 64*sizeof(int) );
60 cudaMalloc( (void**) d_stats_snake, 6*sizeof(int64)) ;
61 cudaMalloc( (void**) d_positions, 8*MAX_NODES*sizeof(uint4)) ;
62 cudaMalloc( (void**) d_contribs_segments, 3*16*MAX_NODES*sizeof(uint64)) ;
63 cudaMalloc( (void**) d_contribs_segments_blocs, (3*MAX_LISTE_PIX/32)*sizeof(uint64)) ;
64 cudaMalloc( (void**) d_freemans_centres, 16*MAX_NODES*sizeof(uint4)) ;
65 cudaMalloc( (void**) d_codes_segments, 16*MAX_NODES*sizeof(int)) ;
66 cudaMalloc( (void**) d_stats, 3*8*MAX_NODES*sizeof(int64)) ;
67 cudaMalloc( (void**) d_stats_ref, 3*MAX_NODES*sizeof(int64)) ;
68 cudaMalloc( (void**) d_vrais, 8*MAX_NODES*sizeof(double)) ;
69 cudaMalloc( (void**) d_move, MAX_NODES*sizeof(bool)) ;
70 cudaMalloc( (void**) d_nb_pix_max, sizeof(uint32)) ;
71 cudaMalloc( (void**) d_vrais_snake, sizeof(double)) ;
73 cudaMalloc( (void**) d_liste_pixels, 16*5*(MAX_NODES)*sizeof(uint2) );
75 printf("TOTAL MEM = %ld octets\n",
76 (2*MAX_NODES*(sizeof(snake_node_gpu)+(8+16)*sizeof(uint4)+3*16*8+16*4+24*8+3*8+8*sizeof(double)+sizeof(bool))
77 +(MAX_LISTE_PIX)*(sizeof(uint2)+1)
78 +taille*(8+sizeof(t_cumul_x)+sizeof(t_cumul_x2))
79 +9*4+64*4+6*8+4+sizeof(double)) );
81 int64 * h_stats_snake = new int64[6];
83 toc(chrono, "temps alloc mem GPU");
85 /*detection-choix-initialisation de la carte GPU*/
87 cudaDeviceProp deviceProp;
91 cudaChooseDevice(&dev, &deviceProp);
92 cudaGetDeviceProperties(&deviceProp, dev);
93 if(deviceProp.major >= 2 )
95 printf("Using Device %d: \"%s\"\n", dev, deviceProp.name);
98 toc(chrono, "temps acces GPU") ;
100 //copie tables correspondances freeman en mem GPU
102 cudaMemcpy( *d_freemanDiDj, CORRESPONDANCE_Di_Dj_FREEMAN , 9*sizeof(int), cudaMemcpyHostToDevice);
103 cudaMemcpy( *d_codeNoeud, TABLE_CODAGE , 64*sizeof(unsigned int), cudaMemcpyHostToDevice);
104 toc(chrono, "temps transfert tables de codage") ;
106 /*transfert image en global mem GPU*/
108 cudaMemcpy( *d_img, img_in[0], taille*sizeof(unsigned short), cudaMemcpyHostToDevice);
109 toc(chrono, "transfert image vers GPU");
111 //calculs images cumulees sur GPU
112 int blocs_max = 65536 ;
113 int bs = 256 ; //arbitraire, d'apres les observations c'est souvent l'optimu
114 unsigned int base = 0 ;
115 unsigned int bl_l = (L+bs-1)/bs ;
116 unsigned int nb_lines = blocs_max / bl_l ;
118 unsigned int tranches = ( 1 + H / nb_lines ) ;
119 nb_lines = (H +tranches -1)/ tranches ; // equilibre la taille des tranches
121 dim3 threads(bs,1,1);
122 int smem = nextPow2(bl_l)*2; //smem pour le prefixscan des sommes de blocs (etape 2)
125 int smem_size = smem*sizeof(uint64);
126 uint64 * d_somblocs ; // sommes des cumuls par bloc de calcul
131 printf("--- CALCULS IMAGES CUMULEES+STATS GPU ----\n");
132 printf("\t%d threads par bloc -- %u blocs par ligne -- %u tranches -- %u lignes par tranche \n",bs, bl_l, tranches,nb_lines);
133 printf(" Smem totale pour cumuls : %d\n", CFI(bs)*(sizeof(t_cumul_x)+sizeof(t_cumul_x2)) );
136 //calculs cumuls generiques : necessitent 3 etapes / 3 kernels
137 cudaMalloc( (void**) &d_somblocs, 2*bl_l*nb_lines*sizeof(uint64) );
138 cudaFuncSetCacheConfig(calcul_cumuls_gpu, cudaFuncCachePreferShared);
141 if ( H-base < nb_lines ) lines = H - base ; else lines = nb_lines ;
142 printf("base = ligne %d -- traitement de %d lignes \n", base, lines) ;
143 dim3 grid(bl_l*lines,1,1) ;
144 calcul_cumuls_gpu<<<grid, threads, CFI(bs)*sizeof(tcumuls)>>>(*d_img, *d_img_x, *d_img_x2, H, L, d_somblocs, bl_l, base, lines) ;
145 scan_somblocs<<<2*lines, nextPow2(bl_l)/2, smem_size>>>(d_somblocs, bl_l) ;
146 add_soms_to_cumuls<<<grid, threads>>>(*d_img_x, *d_img_x2, H, L, d_somblocs, bl_l, base, lines) ;
150 cudaFree(d_somblocs) ;
152 //calcul des sommes totales N, sigX et sigX2 sur l'image
153 calcul_stats_image<<<1, 1>>>( *d_img_x, *d_img_x2, H, L, (uint64*)*d_stats_snake);
156 cudaThreadSynchronize() ;
157 toc(chrono, "\tTemps GPU");
161 //allocation memoire CPU
162 t_cumul_x * img_x = new t_cumul_x [H*L];
163 t_cumul_x2 * img_x2 = new t_cumul_x2 [H*L];
165 /*pour test comparaison*/
166 t_cumul_x * img_xb = new t_cumul_x [H*L];
167 t_cumul_x2 * img_x2b = new t_cumul_x2 [H*L];
169 cudaMemcpy( img_xb, *d_img_x, taille*sizeof(t_cumul_x), cudaMemcpyDeviceToHost);
170 cudaMemcpy( img_x2b, *d_img_x2, taille*sizeof(t_cumul_x2), cudaMemcpyDeviceToHost);
172 //cumuls : etape 1 CPU
174 for (int i=0; i<H; i++)
176 for (int b=0; b<bl_l; b++)
179 img_x[i*L+offset] = img_in[i][offset] ;
180 img_x2[i*L+offset]= img_in[i][offset]*img_in[i][offset] ;
181 for (int p=1; p<bs; p++)
186 img_x[i*L+j] = img_x[i*L+j-1] + img_in[i][j];
187 img_x2[i*L+j] = img_x2[i*L+j-1] + img_in[i][j]*img_in[i][j] ;
193 //cumuls complets CPU
195 for (int i=0; i<H; i++)
197 img_x[i*L+0] = img_in[i][0] ;
198 img_x2[i*L+0]= img_in[i][0]*img_in[i][0] ;
199 for (int j=1; j<L; j++)
201 img_x[i*L+j] = img_x[i*L+j-1] + img_in[i][j] ;
202 img_x2[i*L+j] = img_x2[i*L+j-1] + img_in[i][j]*img_in[i][j] ;
207 int cpt_errx=0, cpt_errx2 = 0;
208 for (int i=0; i< H; i++){
209 for (int j=0; j< L; j++){
210 if ( (img_x[i*L+j] != img_xb[i*L+j]) ) cpt_errx++ ;
211 if ( (img_x2[i*L+j] != img_x2b[i*L+j]) ) cpt_errx2++ ;
212 if ( (img_x[i*L+j] != img_xb[i*L+j]) || (img_x2[i*L+j] != img_x2b[i*L+j]))
214 //printf("(%d,%d)sxCPU=%lu sxGPU=%lu -- sx2CPU=%lu sx2GPU=%lu\n",i,j,img_x[i*L+j], img_xb[i*L+j], img_x2[i*L+j], img_x2b[i*L+j]);
219 printf("%d erreurs sur CX / %d points\n", cpt_errx, cpt );
220 printf("%d erreurs sur CX2 / %d points\n", cpt_errx2, cpt );
221 uint64 sigX = 0, sigX2 = 0 ;
222 for (int i=0; i<H; i++)
224 sigX += img_x[i*L+L-1] ;
225 sigX2+= img_x2[i*L+L-1];
227 printf("STATS IMAGE N = %d - sigX = %lu - sigX2 = %lu\n", H*L, sigX, sigX2 );
231 * generation snake en mem GPU
236 if (nb_nodes == 4) genere_snake_rectangle_4nodes_gpu<<< 1, 1>>>(*d_snake, 140, H, L) ;
237 else if (nb_nodes == 40) genere_snake_rectangle_Nnodes_gpu<<< 1, 1>>>(*d_snake, (H+L)/20, H, L) ;
239 int nnodes = nb_nodes ;
240 snake_node_gpu * h_snake = new snake_node_gpu[nnodes];
241 snake_node * h_snake_ll = new snake_node[nnodes] ;
242 uint4 * h_liste_positions = new uint4[nnodes*8];
243 double * h_vrais_snake = new double ;
244 //init les stats du snake
245 uint2 * d_liste_temp ;
246 t_sum_x2 * d_sompart ;
247 int tpb, bps, npixmax ;
249 //calcul nb threads par bloc
250 npixmax = 2*(H+L-4*dist)/(nnodes-1) ;
251 tpb = nextPow2(npixmax) ;
252 if (tpb >= 256) tpb = 256 ;// /!\ le kernel <<< calcul_contrib...>>> ne supporte pas un bs>256 a cause de la shared-mem nécessaire
253 if (tpb < 32 ) tpb = 32 ;
255 bps = (npixmax+tpb-1)/tpb ;
256 printf("PARAMS EXEC INIT : %d pix max, %d threads/bloc, %d blocs/seg, %d blocs/grille\n", npixmax, tpb, bps, nnodes*bps);
259 cudaMalloc((void**) &d_liste_temp, nnodes*bps*tpb*sizeof(uint2));
260 cudaMalloc((void**) &d_sompart, 3*nnodes*bps*sizeof(t_sum_x2));
261 cudaMalloc((void**) &d_stats_ref, 3*nnodes*sizeof(int64));
263 //DEBUG : pour forcer la mise à zero du tableau intermediaire d_stats_ref
264 int64 h_stats_ref[3*nnodes] ;
265 for (int a=0; a<3*nnodes ; a++) h_stats_ref[a] = 0 ;
266 cudaMemcpy( h_stats_ref, d_stats_ref, sizeof(int64), cudaMemcpyHostToDevice) ;
269 //DEBUG : pour forcer la mise à zero du tableau intermediaire d_sompart
270 t_sum_x2 h_sompart[ 3*nnodes*bps ] ;
271 for (int a=0; a<3*nnodes*bps ; a++) h_sompart[a] = 0 ;
272 cudaMemcpy( h_sompart, d_sompart, sizeof(t_sum_x2), cudaMemcpyHostToDevice) ;
275 calcul_contribs_segments_snake<<< nnodes*bps, tpb, (CFI(tpb))*(3*sizeof(t_sum_x2))>>>
278 L, d_liste_temp, d_sompart, *d_freemanDiDj );
281 //parametrer pour ne pas appeler qd tpb=1
282 //oblige a modifier le kernel <<< calcul_contrib...>>> pour ecrire directement ds d_snake
283 // au lieu de d_sompart
284 somsom_snake<<< nnodes , 1 >>>(d_sompart, nnodes, bps, *d_snake);
287 calcul_stats_snake<<< 1 , 1 >>>(*d_snake, nnodes, *d_stats_snake, *d_vrais_snake,
291 cudaThreadSynchronize() ;
292 toc(chrono, "\tTemps") ;
295 verif stats initiales du snake
297 cudaMemcpy( h_vrais_snake, *d_vrais_snake, sizeof(double), cudaMemcpyDeviceToHost) ;
298 cudaMemcpy( h_stats_snake, *d_stats_snake, 6*sizeof(int64), cudaMemcpyDeviceToHost) ;
300 printf("STATS SNAKE log vrais=%lf : c1=%lu - cx=%lu - cx2=%lu - N=%lu - SUMX=%lu - SUMX2=%lu\n",
302 h_stats_snake[0], h_stats_snake[1], h_stats_snake[2],
303 h_stats_snake[3], h_stats_snake[4], h_stats_snake[5] );
306 verif stats diminuees des contribs des 2 segments associes a chaque noeud
308 #ifdef DEBUG_STATS_REF
309 cudaMemcpy( h_stats_ref, d_stats_ref, 3*nnodes*sizeof(int64), cudaMemcpyDeviceToHost) ;
310 cudaMemcpy( h_snake, *d_snake, nnodes*sizeof(snake_node_gpu), cudaMemcpyDeviceToHost) ;
313 printf("******* STATS DIMINUEES\n");
314 for(int n=0; n<nnodes;n++)
316 int i = h_snake[n].posi, j = h_snake[n].posj ;
317 printf("node %d (%d,%d) : %ld - %ld - %ld - img1= %lu - imgx= %lu - imgx2= %lu \n", n, i, j,
318 h_stats_ref[3*n], h_stats_ref[3*n +1], h_stats_ref[3*n +2],
319 img_1[i][j], img_x[i][j], img_x2[i][j]);
321 #endif //DEBUG_STATS_REF
323 //snake2gpu(d_snake, snake, nb_nodes);
324 //gpu2snake(*d_snake, &h_snake_ll, nnodes);
327 #ifdef DEBUG_POSITIONS
328 for (int n=0; n<nnodes; n++)
330 printf("Node %d :\n", n);
331 for (int pos=0; pos<8; pos++)
333 printf("(%d , %d):%d:%d | ", h_liste_positions[8*n + pos].x, h_liste_positions[8*n + pos].y,
334 h_liste_positions[8*n + pos].z, h_liste_positions[8*n + pos].w);
338 #endif //DEBUG_POSITIONS
340 //verif liste pixels noeuds pairs/impairs selon
343 printf("NOMBRE PIXELS pour LISTE = %d\n", *h_nb_pix_max) ;
344 printf("bs = %d - grid = %d - nblocs_seg = %d - npix_max = %d - taille mem = %d\n",
345 bs, grid.x, nblocs_seg, *h_nb_pix_max, taille_mem);
347 cudaMemcpy( h_liste_pix, d_liste_pix, taille_mem*sizeof(uint2), cudaMemcpyDeviceToHost ) ;
348 cudaMemcpy( h_snake, *d_snake, nnodes*sizeof(snake_node_gpu), cudaMemcpyDeviceToHost );
349 uint32 * h_liste_pixels_segment = new uint32[2*(*h_nb_pix_max)] ;
350 int idx_n, idx_nprec, idx_nsuiv ;
352 printf("********* LISTE PIX ***********\n");
353 printf("bs = %d - grid = %d - nblocs_seg = %d - npix_max = %d - taille mem = %d\n",
354 bs, grid.x, nblocs_seg, *h_nb_pix_max, taille_mem);
356 for (int n=0; n<(nnodes/2 + (nnodes%2)*pairs); n++)
358 idx_n = 2*n + !pairs ;
359 if (idx_n == 0) idx_nprec = nnodes - 1;
360 else idx_nprec = idx_n - 1;
361 if (idx_n == nnodes-1) idx_nsuiv = 0;
362 else idx_nsuiv = idx_n + 1 ;
364 for (int pos=0; pos < 8 ; pos++) //test des segments avant le noeud
367 int nb_pix = calcul_liste_pixel_segment(h_snake[idx_nprec].posi,h_snake[idx_nprec].posj,
368 h_liste_positions[8*idx_n+pos].x, h_liste_positions[8*idx_n+pos].y,
369 h_liste_pixels_segment, 0);
371 for (int pix=0; pix < nb_pix; pix++)
374 if ( (h_liste_pix[(16*n + pos)*nblocs_seg*bs + pix].x != h_liste_pixels_segment[2*pix] )
375 || ( h_liste_pix[(16*n + pos)*nblocs_seg*bs + pix].y != h_liste_pixels_segment[2*pix+1] ) )
376 printf("erreur avant n=%d pix %d/%d segment %d noeuds[ %d-%d-%d ] , CPU (%d,%d) - GPU (%d, %d)\n", n, pix, nb_pix, pos,
377 idx_nprec, idx_n, idx_nsuiv,
378 h_liste_pixels_segment[2*pix], h_liste_pixels_segment[2*pix+1],
379 h_liste_pix[(16*n + pos)*nblocs_seg*bs + pix].x, h_liste_pix[(16*n + pos)*nblocs_seg*bs + pix].y);
384 for (int pos=0; pos < 8 ; pos++) //test des segments apres le noeud
387 int nb_pix = calcul_liste_pixel_segment(h_liste_positions[8*idx_n+pos].x, h_liste_positions[8*idx_n+pos].y,
388 h_snake[idx_nsuiv].posi,h_snake[idx_nsuiv].posj,
389 h_liste_pixels_segment, 0);
391 for (int pix=0; pix < nb_pix; pix++)
394 if ( (h_liste_pix[(16*n + pos + 8)*nblocs_seg*bs + pix].x != h_liste_pixels_segment[2*pix] )
395 || ( h_liste_pix[(16*n + pos + 8)*nblocs_seg*bs + pix].y != h_liste_pixels_segment[2*pix+1] ) )
396 printf("erreur apres n=%d pix %d/%d segment %d noeuds[ %d-%d-%d ] , CPU (%d,%d) - GPU (%d, %d)\n", n, pix, nb_pix, pos+8,
397 idx_nprec, idx_n, idx_nsuiv,
398 h_liste_pixels_segment[2*pix], h_liste_pixels_segment[2*pix+1],
399 h_liste_pix[(16*n + pos + 8)*nblocs_seg*bs + pix].x, h_liste_pix[(16*n + pos + 8)*nblocs_seg*bs + pix].y);
407 #endif //DEBUG_LISTES
411 Test du calcul des sommes partielles 'somblocs' faites par le kernel 'calcul_contribs_segments_blocs_full'
415 #ifdef DEBUG_SOMBLOCS
416 printf("********* SOMMES PARTIELLES ***********\n");
417 printf("bs = %d - grid = %d - intervalles = %d - nblocs_seg = %d - pairs = %d \n", bs, grid.x, n_interval, nblocs_seg, pairs);
418 for (int n=0; n< n_interval; n++)
420 idx_n = 2*n + !pairs ;
421 if (idx_n == 0) idx_nprec = nnodes - 1 ;
422 else idx_nprec = idx_n - 1 ;
423 if (idx_n == nnodes-1) idx_nsuiv = 0 ;
424 else idx_nsuiv = idx_n + 1 ;
425 printf("******** node %d\n", idx_n) ;
426 for(int s=0; s<8; s++)
428 int nb_pix = calcul_liste_pixel_segment(h_snake[idx_nprec].posi,h_snake[idx_nprec].posj,
429 h_liste_positions[8*idx_n+s].x, h_liste_positions[8*idx_n+s].y,
430 h_liste_pixels_segment, 0);
431 for (int b=0; b<nblocs_seg; b++)
433 uint64 c1=0, cx=0, cx2=0 ;
435 for (int p=0; p<bs; p++)
437 if ( ((b*bs+p) < (nb_pix-1)) && ((b*bs+p)>0) )
439 // /!\ penser a oter le test de prise en
440 // compte pour les pix sur la même ligne dans
441 // le kernel, sinon les comparaisons des
442 // sommes par colonne seront fausses
443 i = h_liste_pixels_segment[2*(b*bs + p)] ;
444 j = h_liste_pixels_segment[2*(b*bs + p) + 1] ;
450 if ( ( c1 != h_sombloc[(16*n + s)*nblocs_seg + b ] ) || ( cx != h_sombloc[(16*n + s)*nblocs_seg + b + grid.x] )
451 || ( cx2 != h_sombloc[ (16*n + s)*nblocs_seg + b + 2*grid.x] ) )
452 printf("seg %d - %d pix : bloc %d -> CPU : %lu - %lu - %lu \t|| GPU : %lu - %lu - %lu \n", s, nb_pix, b,
453 c1, cx, cx2, h_sombloc[(16*n+s)*nblocs_seg + b], h_sombloc[(16*n+s)*nblocs_seg + b + grid.x],
454 h_sombloc[(16*n+s)*nblocs_seg + b + 2*grid.x]) ;
458 for(int s=0; s<8; s++)
460 int nb_pix = calcul_liste_pixel_segment( h_liste_positions[8*idx_n+s].x, h_liste_positions[8*idx_n+s].y,
461 h_snake[idx_nsuiv].posi,h_snake[idx_nsuiv].posj,
462 h_liste_pixels_segment, 0);
463 for (int b=0; b<nblocs_seg; b++)
465 uint64 c1=0, cx=0, cx2=0 ;
467 for (int p=0; p<bs; p++)
469 if ( ((b*bs+p) < (nb_pix-1)) && ((b*bs+p)>0) )
471 // /!\ penser a oter le test de prise en
472 // compte pour les pix sur la même ligne dans
473 // le kernel, sinon les comparaisons des
474 // sommes par colonne seront fausses
475 i = h_liste_pixels_segment[2*(b*bs + p)] ;
476 j = h_liste_pixels_segment[2*(b*bs + p) + 1] ;
482 if ( ( c1 != h_sombloc[(16*n + s + 8)*nblocs_seg + b ] ) || ( cx != h_sombloc[(16*n + s + 8)*nblocs_seg + b + grid.x] )
483 || ( cx2 != h_sombloc[ (16*n + s + 8)*nblocs_seg + b + 2*grid.x] ) )
484 printf("seg %d - %d pix : bloc %d -> CPU : %lu - %lu - %lu \t|| GPU : %lu - %lu - %lu \n", s, nb_pix, b,
485 c1, cx, cx2, h_sombloc[(16*n+s+8)*nblocs_seg + b], h_sombloc[(16*n+s+8)*nblocs_seg + b + grid.x],
486 h_sombloc[(16*n+s+8)*nblocs_seg + b + 2*grid.x]) ;
492 #endif //DEBUG_SOMBLOCS
497 Test du calcul des sommes totales 'somsom' faites par le kernel 'somsom_full'
502 printf("********* SOMMES TOTALES ***********\n");
503 printf("bs = %d - grid = %d - intervalles = %d - nblocs_seg = %d - pairs = %d \n", bs, grid.x, n_interval, nblocs_seg, pairs);
504 for (int n=0; n< n_interval; n++)
506 idx_n = 2*n + !pairs ;
507 if (idx_n == 0) idx_nprec = nnodes - 1 ;
508 else idx_nprec = idx_n - 1 ;
509 if (idx_n == nnodes-1) idx_nsuiv = 0 ;
510 else idx_nsuiv = idx_n + 1 ;
511 printf("******** node %d\n", idx_n) ;
512 for(int s=0; s<8; s++)
514 int nb_pix = calcul_liste_pixel_segment(h_snake[idx_nprec].posi,h_snake[idx_nprec].posj,
515 h_liste_positions[8*idx_n+s].x, h_liste_positions[8*idx_n+s].y,
516 h_liste_pixels_segment, 0);
517 uint64 c1=0, cx=0, cx2=0 ;
518 for (int b=0; b<nblocs_seg; b++)
521 for (int p=0; p<bs; p++)
523 if ( ((b*bs+p) < (nb_pix-1)) && ((b*bs+p)>0) )
525 // /!\ penser a oter le test de prise en
526 // compte pour les pix sur la même ligne dans
527 // le kernel, sinon les comparaisons des
528 // sommes par colonne seront fausses
529 i = h_liste_pixels_segment[2*(b*bs + p)] ;
530 j = h_liste_pixels_segment[2*(b*bs + p) + 1] ;
537 if ( ( c1 != h_somsom[3*(16*n + s)] ) || ( cx != h_somsom[3*(16*n + s) + 1] )
538 || ( cx2 != h_somsom[3*(16*n + s) + 2] ) )
539 printf("seg %d - %d pix -> CPU : %lu - %lu - %lu \t|| GPU : %lu - %lu - %lu \n", s, nb_pix,
540 c1, cx, cx2, h_somsom[3*(16*n + s)], h_somsom[3*(16*n + s) + 1],
541 h_somsom[3*(16*n + s) + 2]) ;
545 for(int s=0; s<8; s++)
547 int nb_pix = calcul_liste_pixel_segment( h_liste_positions[8*idx_n+s].x, h_liste_positions[8*idx_n+s].y,
548 h_snake[idx_nsuiv].posi,h_snake[idx_nsuiv].posj,
549 h_liste_pixels_segment, 0);
550 uint64 c1=0, cx=0, cx2=0 ;
551 for (int b=0; b<nblocs_seg; b++)
555 for (int p=0; p<bs; p++)
557 if ( ((b*bs+p) < (nb_pix-1)) && ((b*bs+p)>0) )
559 // /!\ penser a oter le test de prise en
560 // compte pour les pix sur la même ligne dans
561 // le kernel, sinon les comparaisons des
562 // sommes par colonne seront fausses
563 i = h_liste_pixels_segment[2*(b*bs + p)] ;
564 j = h_liste_pixels_segment[2*(b*bs + p) + 1] ;
571 if ( ( c1 != h_somsom[3*(16*n + s + 8)] ) || ( cx != h_somsom[3*(16*n + s + 8) + 1] )
572 || ( cx2 != h_somsom[3*(16*n + s + 8) + 2] ) )
573 printf("seg %d - %d pix -> CPU : %lu - %lu - %lu \t|| GPU : %lu - %lu - %lu \n", s, nb_pix,
574 c1, cx, cx2, h_somsom[3*(16*n + s + 8)], h_somsom[3*(16*n + s + 8) + 1],
575 h_somsom[3*(16*n + s + 8) + 2]) ;
585 printf("**** STATS - REF : %lf \n", *h_vrais_snake);
586 for(int n=0; n<n_interval; n++)
588 for(int p=0; p<8; p++)
590 printf("test %d du node %d : %lu - %lu - %lu - - log_vrais = %lf\n", p, (2*n + !pairs),
591 h_stats[3*(8*n+p)], h_stats[3*(8*n+p)+1], h_stats[3*(8*n+p)+2], h_vrais[8*n+p]);
598 printf("**** CROISEMENTS \n");
599 for(int n=0; n<nnodes; n++)
601 printf("test du seg %d : ", n);
602 if ( h_croist[n] ) printf("CROISEMENT\n"); else printf("\n");
608 printf("**** MOUVEMENTS \n");
609 for(int n=0; n<nnodes; n++)
611 printf("Node %d : (%s) ",n, (h_move[n])? "yes":"no");
615 delete h_liste_positions ;
619 * fin generation snake GPU