1 | /////////////////////////////////////////////////////////////////////////////////////// |
---|
2 | // File : convol.c |
---|
3 | // Date : june 2014 |
---|
4 | // author : Alain Greiner |
---|
5 | /////////////////////////////////////////////////////////////////////////////////////// |
---|
6 | // This multi-threaded application implements a 2D convolution product. |
---|
7 | // It can run on a multi-cores, multi-clusters architecture, with one thread |
---|
8 | // per core, and uses the POSIX threads API. |
---|
9 | // |
---|
10 | // The main() function can be launched on any processor P[x,y,l]. |
---|
11 | // It makes the initialisations, launch (N-1) threads to run the execute() function |
---|
12 | // on the (N-1) other processors than P[x,y,l], call himself the execute() function, |
---|
13 | // and finally call the instrument() function to display instrumentation results |
---|
14 | // when the parallel execution is completed. |
---|
15 | // |
---|
16 | // The convolution kernel is defined in the execute() function. |
---|
17 | // It can be factored in two independant line and column convolution products. |
---|
18 | // The five buffers containing the image are distributed in clusters. |
---|
19 | // For the philips image, it is a [201]*[35] pixels rectangle, and the. |
---|
20 | // |
---|
21 | // The (1024 * 1024) pixels image is read from a file (2 bytes per pixel). |
---|
22 | // |
---|
23 | // - number of clusters containing processors must be power of 2 no larger than 256. |
---|
24 | // - number of processors per cluster must be power of 2 no larger than 4. |
---|
25 | // |
---|
26 | // The number N of working threads is always defined by the number of cores availables |
---|
27 | // in the architecture, but this application supports three placement modes. |
---|
28 | // In all modes, the working threads are identified by the [tid] continuous index |
---|
29 | // in range [0, NTHREADS-1], and defines how the lines are shared amongst the threads. |
---|
30 | // This continuous index can always be decomposed in two continuous sub-indexes: |
---|
31 | // tid == cid * ncores + lid, where cid is in [0,NCLUSTERS-1] and lid in [0,NCORES-1]. |
---|
32 | // |
---|
33 | // - NO_PLACEMENT: the main thread is itsef a working thread. The (N_1) other working |
---|
34 | // threads are created by the main thread, but the placement is done by the OS, using |
---|
35 | // the DQDT for load balancing, and two working threads can be placed on the same core. |
---|
36 | // The [cid,lid] are only abstract identifiers, and cannot be associated to a physical |
---|
37 | // cluster or a physical core. In this mode, the main thread run on any cluster, |
---|
38 | // but has tid = 0 (i.e. cid = 0 & tid = 0). |
---|
39 | // |
---|
40 | // - EXPLICIT_PLACEMENT: the main thread is again a working thread, but the placement of |
---|
41 | // of the threads on the cores is explicitely controled by the main thread to have |
---|
42 | // exactly one working thread per core, and the [cxy][lpid] core coordinates for a given |
---|
43 | // thread[tid] can be directly derived from the [tid] value: [cid] is an alias for the |
---|
44 | // physical cluster identifier, and [lid] is the local core index. |
---|
45 | // |
---|
46 | // - PARALLEL_PLACEMENT: the main thread is not anymore a working thread, and uses the |
---|
47 | // non standard pthread_parallel_create() function to avoid the costly sequencial |
---|
48 | // loops for pthread_create() and pthread_join(). It garanty one working thread |
---|
49 | // per core, and the same relation between the thread[tid] and the core[cxy][lpid]. |
---|
50 | // |
---|
51 | // The [tid] continuous index defines how the work is shared amongst the threads: |
---|
52 | // - each thread handles NL/nthreads lines for the horizontal filter. |
---|
53 | // - each thread handles NP/nthreads columns for the vertical filter. |
---|
54 | /////////////////////////////////////////////////////////////////////////////////////// |
---|
55 | |
---|
56 | #include <sys/mman.h> |
---|
57 | #include <stdio.h> |
---|
58 | #include <stdlib.h> |
---|
59 | #include <fcntl.h> |
---|
60 | #include <unistd.h> |
---|
61 | #include <pthread.h> |
---|
62 | #include <string.h> |
---|
63 | #include <almosmkh.h> |
---|
64 | #include <hal_macros.h> |
---|
65 | |
---|
66 | #define VERBOSE_MAIN 1 |
---|
67 | #define VERBOSE_EXEC 0 |
---|
68 | #define SUPER_VERBOSE 0 |
---|
69 | |
---|
70 | #define X_MAX 16 |
---|
71 | #define Y_MAX 16 |
---|
72 | #define CORES_MAX 4 |
---|
73 | #define CLUSTERS_MAX (X_MAX * Y_MAX) |
---|
74 | #define THREADS_MAX (X_MAX * Y_MAX * CORES_MAX) |
---|
75 | |
---|
76 | #define IMAGE_IN_PATH "misc/philips_1024_2.raw" |
---|
77 | #define IMAGE_IN_PIXEL_SIZE 2 // 2 bytes per pixel |
---|
78 | |
---|
79 | #define IMAGE_OUT_PATH "misc/philips_after_1O24.raw" |
---|
80 | #define IMAGE_OUT_PIXEL_SIZE 1 // 1 bytes per pixel |
---|
81 | |
---|
82 | #define FBF_TYPE 420 |
---|
83 | #define NL 1024 |
---|
84 | #define NP 1024 |
---|
85 | #define NB_PIXELS (NP * NL) |
---|
86 | |
---|
87 | #define NO_PLACEMENT 0 |
---|
88 | #define EXPLICIT_PLACEMENT 0 |
---|
89 | #define PARALLEL_PLACEMENT 1 |
---|
90 | |
---|
91 | #define USE_DQT_BARRIER 1 |
---|
92 | #define INITIAL_DISPLAY_ENABLE 1 |
---|
93 | #define FINAL_DISPLAY_ENABLE 1 |
---|
94 | |
---|
95 | #define TA(c,l,p) (A[c][((NP) * (l)) + (p)]) |
---|
96 | #define TB(c,p,l) (B[c][((NL) * (p)) + (l)]) |
---|
97 | #define TC(c,l,p) (C[c][((NP) * (l)) + (p)]) |
---|
98 | #define TD(c,l,p) (D[c][((NP) * (l)) + (p)]) |
---|
99 | #define TZ(c,l,p) (Z[c][((NP) * (l)) + (p)]) |
---|
100 | |
---|
101 | #define max(x,y) ((x) > (y) ? (x) : (y)) |
---|
102 | #define min(x,y) ((x) < (y) ? (x) : (y)) |
---|
103 | |
---|
104 | ////////////////////////////////////////////////////////// |
---|
105 | // global variables |
---|
106 | ////////////////////////////////////////////////////////// |
---|
107 | |
---|
108 | // global instrumentation counters for the main thread |
---|
109 | unsigned int SEQUENCIAL_TIME = 0; |
---|
110 | unsigned int PARALLEL_TIME = 0; |
---|
111 | |
---|
112 | // instrumentation counters for thread[tid] in cluster[cid] |
---|
113 | unsigned int START[CLUSTERS_MAX][CORES_MAX] = {{ 0 }}; |
---|
114 | unsigned int H_BEG[CLUSTERS_MAX][CORES_MAX] = {{ 0 }}; |
---|
115 | unsigned int H_END[CLUSTERS_MAX][CORES_MAX] = {{ 0 }}; |
---|
116 | unsigned int V_BEG[CLUSTERS_MAX][CORES_MAX] = {{ 0 }}; |
---|
117 | unsigned int V_END[CLUSTERS_MAX][CORES_MAX] = {{ 0 }}; |
---|
118 | unsigned int D_BEG[CLUSTERS_MAX][CORES_MAX] = {{ 0 }}; |
---|
119 | unsigned int D_END[CLUSTERS_MAX][CORES_MAX] = {{ 0 }}; |
---|
120 | |
---|
121 | // pointer on buffer containing the input image, maped by the main to the input file |
---|
122 | unsigned char * image_in; |
---|
123 | |
---|
124 | // pointer on buffer containing the output image, maped by the main to the output file |
---|
125 | unsigned char * image_out; |
---|
126 | |
---|
127 | // return values at thread exit |
---|
128 | unsigned int THREAD_EXIT_SUCCESS = 0; |
---|
129 | unsigned int THREAD_EXIT_FAILURE = 1; |
---|
130 | |
---|
131 | // synchronization barrier |
---|
132 | pthread_barrier_t barrier; |
---|
133 | |
---|
134 | // platform parameters |
---|
135 | unsigned int x_size; // number of clusters in a row |
---|
136 | unsigned int y_size; // number of clusters in a column |
---|
137 | unsigned int ncores; // number of processors per cluster |
---|
138 | |
---|
139 | // arrays of pointers on distributed buffers in all clusters |
---|
140 | unsigned short * GA[CLUSTERS_MAX]; |
---|
141 | int * GB[CLUSTERS_MAX]; |
---|
142 | int * GC[CLUSTERS_MAX]; |
---|
143 | int * GD[CLUSTERS_MAX]; |
---|
144 | unsigned char * GZ[CLUSTERS_MAX]; |
---|
145 | |
---|
146 | // array of threads kernel identifiers / indexed by [tid] |
---|
147 | pthread_t exec_trdid[THREADS_MAX]; |
---|
148 | |
---|
149 | // array of threads attributes / indexed bi [tid] |
---|
150 | pthread_attr_t exec_attr[THREADS_MAX]; |
---|
151 | |
---|
152 | // array of execute() function arguments / indexed by [tid] |
---|
153 | pthread_parallel_work_args_t exec_args[THREADS_MAX]; |
---|
154 | |
---|
155 | // main thread continuous index |
---|
156 | unsigned int tid_main; |
---|
157 | |
---|
158 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
159 | // functions declaration |
---|
160 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
161 | |
---|
162 | void * execute( void * args ); |
---|
163 | |
---|
164 | void instrument( FILE * f , char * filename ); |
---|
165 | |
---|
166 | ///////////////// |
---|
167 | void main( void ) |
---|
168 | { |
---|
169 | unsigned long long start_cycle; |
---|
170 | unsigned long long end_sequencial_cycle; |
---|
171 | unsigned long long end_parallel_cycle; |
---|
172 | |
---|
173 | int error; |
---|
174 | |
---|
175 | char instru_name[32]; // instrumentation file name |
---|
176 | char instru_path[64]; // instrumentation path name |
---|
177 | |
---|
178 | ///////////////////////////////////////////////////////////////////////////////// |
---|
179 | get_cycle( &start_cycle ); |
---|
180 | ///////////////////////////////////////////////////////////////////////////////// |
---|
181 | |
---|
182 | if( (NO_PLACEMENT + EXPLICIT_PLACEMENT + PARALLEL_PLACEMENT) != 1 ) |
---|
183 | { |
---|
184 | printf("\n[convol error] illegal placement\n"); |
---|
185 | exit( 0 ); |
---|
186 | } |
---|
187 | |
---|
188 | // get & check platform parameters |
---|
189 | hard_config_t config; |
---|
190 | get_config( &config ); |
---|
191 | x_size = config.x_size; |
---|
192 | y_size = config.y_size; |
---|
193 | ncores = config.ncores; |
---|
194 | |
---|
195 | if((ncores != 1) && (ncores != 2) && (ncores != 4)) |
---|
196 | { |
---|
197 | printf("\n[convol error] number of cores per cluster must be 1/2/4\n"); |
---|
198 | exit( 0 ); |
---|
199 | } |
---|
200 | |
---|
201 | if( (x_size != 1) && (x_size != 2) && (x_size != 4) && |
---|
202 | (x_size != 8) && (x_size != 16) ) |
---|
203 | { |
---|
204 | printf("\n[convol error] x_size must be 1/2/4/8/16\n"); |
---|
205 | exit( 0 ); |
---|
206 | } |
---|
207 | |
---|
208 | if( (y_size != 1) && (y_size != 2) && (y_size != 4) && |
---|
209 | (y_size != 8) && (y_size != 16) ) |
---|
210 | { |
---|
211 | printf("\n[convol error] y_size must be 1/2/4/8/16\n"); |
---|
212 | exit( 0 ); |
---|
213 | } |
---|
214 | |
---|
215 | // main thread get identifiers for core executing main |
---|
216 | unsigned int cxy_main; |
---|
217 | unsigned int lid_main; |
---|
218 | get_core_id( &cxy_main , &lid_main ); |
---|
219 | |
---|
220 | // compute nthreads and nclusters |
---|
221 | unsigned int nclusters = x_size * y_size; |
---|
222 | unsigned int nthreads = nclusters * ncores; |
---|
223 | |
---|
224 | // main thread get FBF size and type |
---|
225 | unsigned int fbf_width; |
---|
226 | unsigned int fbf_height; |
---|
227 | unsigned int fbf_type; |
---|
228 | fbf_get_config( &fbf_width , &fbf_height , &fbf_type ); |
---|
229 | |
---|
230 | if( (fbf_width != NP) || (fbf_height != NL) || (fbf_type != FBF_TYPE) ) |
---|
231 | { |
---|
232 | printf("\n[convol error] image does not fit FBF size or type\n"); |
---|
233 | exit( 0 ); |
---|
234 | } |
---|
235 | |
---|
236 | if( nthreads > NL ) |
---|
237 | { |
---|
238 | printf("\n[convol error] number of threads larger than number of lines\n"); |
---|
239 | exit( 0 ); |
---|
240 | } |
---|
241 | |
---|
242 | // define instrumentation file name |
---|
243 | if( NO_PLACEMENT ) |
---|
244 | { |
---|
245 | printf("\n[convol] %d cluster(s) / %d core(s) / FBF[%d*%d] / PID %x / NO_PLACE\n", |
---|
246 | nclusters, ncores, fbf_width, fbf_height, getpid() ); |
---|
247 | |
---|
248 | // build instrumentation file name |
---|
249 | if( USE_DQT_BARRIER ) |
---|
250 | snprintf( instru_name , 32 , "conv_dqt_no_place_%d_%d", x_size * y_size , ncores ); |
---|
251 | else |
---|
252 | snprintf( instru_name , 32 , "conv_smp_no_place_%d_%d", x_size * y_size , ncores ); |
---|
253 | } |
---|
254 | |
---|
255 | if( EXPLICIT_PLACEMENT ) |
---|
256 | { |
---|
257 | printf("\n[convol] %d cluster(s) / %d core(s) / FBF[%d*%d] / PID %x / EXPLICIT\n", |
---|
258 | nclusters, ncores, fbf_width, fbf_height, getpid() ); |
---|
259 | |
---|
260 | // build instrumentation file name |
---|
261 | if( USE_DQT_BARRIER ) |
---|
262 | snprintf( instru_name , 32 , "conv_dqt_explicit_%d_%d", x_size * y_size , ncores ); |
---|
263 | else |
---|
264 | snprintf( instru_name , 32 , "conv_smp_explicit_%d_%d", x_size * y_size , ncores ); |
---|
265 | } |
---|
266 | |
---|
267 | if( PARALLEL_PLACEMENT ) |
---|
268 | { |
---|
269 | printf("\n[convol] %d cluster(s) / %d core(s) / FBF[%d*%d] / PID %x / PARALLEL\n", |
---|
270 | nclusters, ncores, fbf_width, fbf_height, getpid() ); |
---|
271 | |
---|
272 | // build instrumentation file name |
---|
273 | if( USE_DQT_BARRIER ) |
---|
274 | snprintf( instru_name , 32 , "conv_dqt_parallel_%d_%d", x_size * y_size , ncores ); |
---|
275 | else |
---|
276 | snprintf( instru_name , 32 , "conv_smp_parallel_%d_%d", x_size * y_size , ncores ); |
---|
277 | } |
---|
278 | |
---|
279 | // open instrumentation file |
---|
280 | snprintf( instru_path , 64 , "/home/%s", instru_name ); |
---|
281 | FILE * f_instru = fopen( instru_path , NULL ); |
---|
282 | if ( f_instru == NULL ) |
---|
283 | { |
---|
284 | printf("\n[convol error] cannot open instrumentation file %s\n", instru_path ); |
---|
285 | exit( 0 ); |
---|
286 | } |
---|
287 | |
---|
288 | #if VERBOSE_MAIN |
---|
289 | printf("\n[convol] main on core[%x,%d] open instrumentation file %s\n", |
---|
290 | cxy_main, lid_main, instru_path ); |
---|
291 | #endif |
---|
292 | |
---|
293 | // main initialise barrier |
---|
294 | if( USE_DQT_BARRIER ) |
---|
295 | { |
---|
296 | pthread_barrierattr_t attr; |
---|
297 | attr.x_size = x_size; |
---|
298 | attr.y_size = y_size; |
---|
299 | attr.nthreads = ncores; |
---|
300 | error = pthread_barrier_init( &barrier, &attr , nthreads ); |
---|
301 | } |
---|
302 | else |
---|
303 | { |
---|
304 | error = pthread_barrier_init( &barrier, NULL , nthreads ); |
---|
305 | } |
---|
306 | |
---|
307 | if( error ) |
---|
308 | { |
---|
309 | printf("\n[convol error] cannot initialize barrier\n"); |
---|
310 | exit( 0 ); |
---|
311 | } |
---|
312 | |
---|
313 | #if VERBOSE_MAIN |
---|
314 | printf("\n[convol] main on core[%x,%d] completes barrier init\n", |
---|
315 | cxy_main, lid_main ); |
---|
316 | #endif |
---|
317 | |
---|
318 | // main open input file |
---|
319 | int fd_in = open( IMAGE_IN_PATH , O_RDONLY , 0 ); |
---|
320 | |
---|
321 | if ( fd_in < 0 ) |
---|
322 | { |
---|
323 | printf("\n[convol error] cannot open input file <%s>\n", IMAGE_IN_PATH ); |
---|
324 | exit( 0 ); |
---|
325 | } |
---|
326 | |
---|
327 | #if VERBOSE_MAIN |
---|
328 | printf("\n[convol] main on core[%x,%d] open file <%s>\n", |
---|
329 | cxy_main, lid_main, IMAGE_IN_PATH ); |
---|
330 | #endif |
---|
331 | |
---|
332 | // main thread map image_in buffer to input file |
---|
333 | image_in = (unsigned char *)mmap( NULL, |
---|
334 | NB_PIXELS * IMAGE_IN_PIXEL_SIZE, |
---|
335 | PROT_READ, |
---|
336 | MAP_FILE | MAP_SHARED, |
---|
337 | fd_in, |
---|
338 | 0 ); // offset |
---|
339 | if ( image_in == NULL ) |
---|
340 | { |
---|
341 | printf("\n[convol error] main cannot map buffer to file %s\n", IMAGE_IN_PATH ); |
---|
342 | exit( 0 ); |
---|
343 | } |
---|
344 | |
---|
345 | #if VERBOSE_MAIN |
---|
346 | printf("\n[convol] main on core[%x,%x] map buffer to file <%s>\n", |
---|
347 | cxy_main, lid_main, IMAGE_IN_PATH ); |
---|
348 | #endif |
---|
349 | |
---|
350 | // main thread open output file |
---|
351 | int fd_out = open( IMAGE_OUT_PATH , O_CREAT , 0 ); |
---|
352 | |
---|
353 | if ( fd_out < 0 ) |
---|
354 | { |
---|
355 | printf("\n[convol error] main cannot open file %s\n", IMAGE_OUT_PATH ); |
---|
356 | exit( 0 ); |
---|
357 | } |
---|
358 | |
---|
359 | #if VERBOSE_MAIN |
---|
360 | printf("\n[convol] main on core[%x,%d] open file <%s>\n", |
---|
361 | cxy_main, lid_main, IMAGE_OUT_PATH ); |
---|
362 | #endif |
---|
363 | |
---|
364 | // main thread map image_out buffer to output file |
---|
365 | image_out = (unsigned char *)mmap( NULL, |
---|
366 | NB_PIXELS + IMAGE_OUT_PIXEL_SIZE, |
---|
367 | PROT_WRITE, |
---|
368 | MAP_FILE | MAP_SHARED, |
---|
369 | fd_out, |
---|
370 | 0 ); // offset |
---|
371 | if ( image_out == NULL ) |
---|
372 | { |
---|
373 | printf("\n[convol error] main cannot map buffer to file %s\n", IMAGE_OUT_PATH ); |
---|
374 | exit( 0 ); |
---|
375 | } |
---|
376 | |
---|
377 | #if VERBOSE_MAIN |
---|
378 | printf("\n[convol] main on core[%x,%x] map buffer to file <%s>\n", |
---|
379 | cxy_main, lid_main, IMAGE_OUT_PATH ); |
---|
380 | #endif |
---|
381 | |
---|
382 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
383 | get_cycle( &end_sequencial_cycle ); |
---|
384 | SEQUENCIAL_TIME = (unsigned int)(end_sequencial_cycle - start_cycle); |
---|
385 | ///////////////////////////////////////////////////////////////////////////////////// |
---|
386 | |
---|
387 | ////////////////// |
---|
388 | #if NO_PLACEMENT |
---|
389 | { |
---|
390 | // the tid value for the main thread is always 0 |
---|
391 | // main thread creates new threads with tid in [1,nthreads-1] |
---|
392 | unsigned int tid; |
---|
393 | for ( tid = 0 ; tid < nthreads ; tid++ ) |
---|
394 | { |
---|
395 | // register tid value in exec_args[tid] array |
---|
396 | exec_args[tid].tid = tid; |
---|
397 | |
---|
398 | // create other threads |
---|
399 | if( tid > 0 ) |
---|
400 | { |
---|
401 | if ( pthread_create( &exec_trdid[tid], |
---|
402 | NULL, // no attribute |
---|
403 | &execute, |
---|
404 | &exec_args[tid] ) ) |
---|
405 | { |
---|
406 | printf("\n[convol error] cannot create thread %d\n", tid ); |
---|
407 | exit( 0 ); |
---|
408 | } |
---|
409 | |
---|
410 | #if VERBOSE_MAIN |
---|
411 | printf("\n[convol] main created thread %d\n", tid ); |
---|
412 | #endif |
---|
413 | |
---|
414 | } |
---|
415 | else |
---|
416 | { |
---|
417 | tid_main = 0; |
---|
418 | } |
---|
419 | } // end for tid |
---|
420 | |
---|
421 | // main thread calls itself the execute() function |
---|
422 | execute( &exec_args[0] ); |
---|
423 | |
---|
424 | // main thread wait other threads completion |
---|
425 | for ( tid = 1 ; tid < nthreads ; tid++ ) |
---|
426 | { |
---|
427 | unsigned int * status; |
---|
428 | |
---|
429 | // main wait thread[tid] status |
---|
430 | if ( pthread_join( exec_trdid[tid], (void*)(&status)) ) |
---|
431 | { |
---|
432 | printf("\n[convol error] main cannot join thread %d\n", tid ); |
---|
433 | exit( 0 ); |
---|
434 | } |
---|
435 | |
---|
436 | // check status |
---|
437 | if( *status != THREAD_EXIT_SUCCESS ) |
---|
438 | { |
---|
439 | printf("\n[convol error] thread %x returned failure\n", tid ); |
---|
440 | exit( 0 ); |
---|
441 | } |
---|
442 | |
---|
443 | #if VERBOSE_MAIN |
---|
444 | printf("\n[convol] main successfully joined thread %x\n", tid ); |
---|
445 | #endif |
---|
446 | |
---|
447 | } // end for tid |
---|
448 | } |
---|
449 | #endif // end no_placement |
---|
450 | |
---|
451 | ////////////////////// |
---|
452 | #if EXPLICIT_PLACEMENT |
---|
453 | { |
---|
454 | // main thread places each other threads on a specific core[cxy][lid] |
---|
455 | // but the actual thread creation is sequencial |
---|
456 | unsigned int x; |
---|
457 | unsigned int y; |
---|
458 | unsigned int l; |
---|
459 | unsigned int cxy; // cluster identifier |
---|
460 | unsigned int tid; // thread continuous index |
---|
461 | |
---|
462 | for( x = 0 ; x < x_size ; x++ ) |
---|
463 | { |
---|
464 | for( y = 0 ; y < y_size ; y++ ) |
---|
465 | { |
---|
466 | cxy = HAL_CXY_FROM_XY( x , y ); |
---|
467 | for( l = 0 ; l < ncores ; l++ ) |
---|
468 | { |
---|
469 | // compute thread continuous index |
---|
470 | tid = (((x * y_size) + y) * ncores) + l; |
---|
471 | |
---|
472 | // register tid value in exec_args[tid] array |
---|
473 | exec_args[tid].tid = tid; |
---|
474 | |
---|
475 | // no thread created on the core running the main |
---|
476 | if( (cxy != cxy_main) || (l != lid_main) ) |
---|
477 | { |
---|
478 | // define thread attributes |
---|
479 | exec_attr[tid].attributes = PT_ATTR_CLUSTER_DEFINED | |
---|
480 | PT_ATTR_CORE_DEFINED; |
---|
481 | exec_attr[tid].cxy = cxy; |
---|
482 | exec_attr[tid].lid = l; |
---|
483 | |
---|
484 | // create thread[tid] on core[cxy][l] |
---|
485 | if ( pthread_create( &exec_trdid[tid], |
---|
486 | &exec_attr[tid], |
---|
487 | &execute, |
---|
488 | &exec_args[tid] ) ) |
---|
489 | { |
---|
490 | printf("\n[convol error] cannot create thread %d\n", tid ); |
---|
491 | exit( 0 ); |
---|
492 | } |
---|
493 | #if VERBOSE_MAIN |
---|
494 | printf("\n[convol] main created thread[%d] on core[%x,%d]\n", tid, cxy, l ); |
---|
495 | #endif |
---|
496 | } |
---|
497 | else |
---|
498 | { |
---|
499 | tid_main = tid; |
---|
500 | } |
---|
501 | } |
---|
502 | } |
---|
503 | } |
---|
504 | |
---|
505 | // main thread calls itself the execute() function |
---|
506 | execute( &exec_args[tid_main] ); |
---|
507 | |
---|
508 | // main thread wait other threads completion |
---|
509 | for( tid = 0 ; tid < nthreads ; tid++ ) |
---|
510 | { |
---|
511 | // no other thread on the core running the main |
---|
512 | if( tid != tid_main ) |
---|
513 | { |
---|
514 | unsigned int * status; |
---|
515 | |
---|
516 | // wait thread[tid] |
---|
517 | if( pthread_join( exec_trdid[tid] , (void*)(&status) ) ) |
---|
518 | { |
---|
519 | printf("\n[convol error] main cannot join thread %d\n", tid ); |
---|
520 | exit( 0 ); |
---|
521 | } |
---|
522 | |
---|
523 | // check status |
---|
524 | if( *status != THREAD_EXIT_SUCCESS ) |
---|
525 | { |
---|
526 | printf("\n[convol error] thread %d returned failure\n", tid ); |
---|
527 | exit( 0 ); |
---|
528 | } |
---|
529 | #if VERBOSE_MAIN |
---|
530 | printf("\n[convol] main joined thread %d on core[%x,%d]\n", tid , cxy , l ); |
---|
531 | #endif |
---|
532 | } |
---|
533 | } |
---|
534 | } |
---|
535 | #endif // end explicit_placement |
---|
536 | |
---|
537 | ////////////////////// |
---|
538 | #if PARALLEL_PLACEMENT |
---|
539 | { |
---|
540 | // compute covering DQT size an level |
---|
541 | unsigned int z = (x_size > y_size) ? x_size : y_size; |
---|
542 | unsigned int root_level = ((z == 1) ? 0 : |
---|
543 | ((z == 2) ? 1 : |
---|
544 | ((z == 4) ? 2 : |
---|
545 | ((z == 8) ? 3 : 4)))); |
---|
546 | |
---|
547 | // create & execute the working threads |
---|
548 | if( pthread_parallel_create( root_level , &execute ) ) |
---|
549 | { |
---|
550 | printf("\n[convol error] in %s\n", __FUNCTION__ ); |
---|
551 | exit( 0 ); |
---|
552 | } |
---|
553 | } |
---|
554 | #endif // end parallel_placement |
---|
555 | |
---|
556 | ///////////////////////////////////////////////////////////////////////////// |
---|
557 | get_cycle( &end_parallel_cycle ); |
---|
558 | PARALLEL_TIME = (unsigned int)(end_parallel_cycle - end_sequencial_cycle); |
---|
559 | ///////////////////////////////////////////////////////////////////////////// |
---|
560 | |
---|
561 | // main thread register instrumentation results |
---|
562 | instrument( f_instru , instru_name ); |
---|
563 | |
---|
564 | #if VERBOSE_MAIN |
---|
565 | printf("\n[convol] main registered instrumentation info\n" ); |
---|
566 | #endif |
---|
567 | |
---|
568 | // main thread close input file |
---|
569 | close( fd_in ); |
---|
570 | |
---|
571 | #if VERBOSE_MAIN |
---|
572 | printf("\n[convol] main closed input file\n" ); |
---|
573 | #endif |
---|
574 | |
---|
575 | // main thread close output file |
---|
576 | close( fd_out ); |
---|
577 | |
---|
578 | #if VERBOSE_MAIN |
---|
579 | printf("\n[convol] main closed output file\n" ); |
---|
580 | #endif |
---|
581 | |
---|
582 | // main thread close instrumentation file |
---|
583 | fclose( f_instru ); |
---|
584 | |
---|
585 | #if VERBOSE_MAIN |
---|
586 | printf("\n[convol] main closed instrumentation file\n" ); |
---|
587 | #endif |
---|
588 | |
---|
589 | // main thread suicide |
---|
590 | exit( 0 ); |
---|
591 | |
---|
592 | } // end main() |
---|
593 | |
---|
594 | |
---|
595 | |
---|
596 | |
---|
597 | |
---|
598 | |
---|
599 | ////////////////////////////////// |
---|
600 | void * execute( void * arguments ) |
---|
601 | |
---|
602 | { |
---|
603 | unsigned long long date; |
---|
604 | |
---|
605 | pthread_parallel_work_args_t * args = (pthread_parallel_work_args_t *)arguments; |
---|
606 | |
---|
607 | // Each thread initialises the convolution kernel parameters in local stack. |
---|
608 | // The values defined in the next 12 lines are Philips proprietary information. |
---|
609 | |
---|
610 | int vnorm = 115; |
---|
611 | int vf[35] = { 1, 1, 2, 2, 2, |
---|
612 | 2, 3, 3, 3, 4, |
---|
613 | 4, 4, 4, 5, 5, |
---|
614 | 5, 5, 5, 5, 5, |
---|
615 | 5, 5, 4, 4, 4, |
---|
616 | 4, 3, 3, 3, 2, |
---|
617 | 2, 2, 2, 1, 1 }; |
---|
618 | |
---|
619 | unsigned int hrange = 100; |
---|
620 | unsigned int hnorm = 201; |
---|
621 | |
---|
622 | // WARNING |
---|
623 | //A thread is identified by the tid index, defined in the "args" structure. |
---|
624 | // This index being in range [0,nclusters*ncores-1] we can always write |
---|
625 | // tid == cid * ncores + lid |
---|
626 | // with cid in [0,nclusters-1] and lid in [0,ncores-1]. |
---|
627 | // if NO_PLACEMENT, there is no relation between these |
---|
628 | // thread [cid][lid] indexes, and the core coordinates [cxy][lpid] |
---|
629 | |
---|
630 | // get thread abstract identifiers |
---|
631 | unsigned int tid = args->tid; |
---|
632 | unsigned int cid = tid / ncores; |
---|
633 | unsigned int lid = tid % ncores; |
---|
634 | |
---|
635 | #if VERBOSE_EXEC |
---|
636 | unsigned int cxy; // core cluster identifier |
---|
637 | unsigned int lpid; // core local identifier |
---|
638 | get_cycle( &date ); |
---|
639 | get_core_id( &cxy , &lpid ); |
---|
640 | printf("\n[convol] exec[%d] on core[%x,%d] enters parallel exec / cycle %d\n", |
---|
641 | tid , cxy , lpid , (unsigned int)date ); |
---|
642 | #endif |
---|
643 | |
---|
644 | // build total number of threads and clusters from global variables |
---|
645 | unsigned int nclusters = x_size * y_size; |
---|
646 | unsigned int nthreads = nclusters * ncores; |
---|
647 | |
---|
648 | // indexes for loops |
---|
649 | unsigned int c; // cluster index |
---|
650 | unsigned int l; // line index |
---|
651 | unsigned int p; // pixel index |
---|
652 | unsigned int z; // vertical filter index |
---|
653 | |
---|
654 | unsigned int lines_per_thread = NL / nthreads; |
---|
655 | unsigned int lines_per_cluster = NL / nclusters; |
---|
656 | unsigned int pixels_per_thread = NP / nthreads; |
---|
657 | unsigned int pixels_per_cluster = NP / nclusters; |
---|
658 | |
---|
659 | // compute number of pixels stored in one abstract cluster cid |
---|
660 | unsigned int local_pixels = NL * NP / nclusters; |
---|
661 | |
---|
662 | unsigned int first, last; |
---|
663 | |
---|
664 | get_cycle( &date ); |
---|
665 | START[cid][lid] = (unsigned int)date; |
---|
666 | |
---|
667 | // Each thread[cid][0] allocates 5 local buffers, |
---|
668 | // and registers these 5 pointers in the global arrays |
---|
669 | if ( lid == 0 ) |
---|
670 | { |
---|
671 | GA[cid] = malloc( local_pixels * sizeof( unsigned short ) ); |
---|
672 | GB[cid] = malloc( local_pixels * sizeof( int ) ); |
---|
673 | GC[cid] = malloc( local_pixels * sizeof( int ) ); |
---|
674 | GD[cid] = malloc( local_pixels * sizeof( int ) ); |
---|
675 | GZ[cid] = malloc( local_pixels * sizeof( unsigned char ) ); |
---|
676 | |
---|
677 | if( (GA[cid] == NULL) || (GB[cid] == NULL) || (GC[cid] == NULL) || |
---|
678 | (GD[cid] == NULL) || (GZ[cid] == NULL) ) |
---|
679 | { |
---|
680 | printf("\n[convol error] thread[%d] cannot allocate buf_in\n", tid ); |
---|
681 | pthread_exit( &THREAD_EXIT_FAILURE ); |
---|
682 | } |
---|
683 | |
---|
684 | #if VERBOSE_EXEC |
---|
685 | get_cycle( &date ); |
---|
686 | printf( "\n[convol] exec[%d] on core[%x,%d] allocated shared buffers / cycle %d\n" |
---|
687 | " GA %x / GB %x / GC %x / GD %x / GZ %x\n", |
---|
688 | tid, cxy , lpid, (unsigned int)date, GA[cid], GB[cid], GC[cid], GD[cid], GZ[cid] ); |
---|
689 | #endif |
---|
690 | |
---|
691 | } |
---|
692 | |
---|
693 | //////////////////////////////// |
---|
694 | pthread_barrier_wait( &barrier ); |
---|
695 | |
---|
696 | // Each thread[cid,lid] allocate and initialise in its private stack |
---|
697 | // a copy of the arrays of pointers on the distributed buffers. |
---|
698 | unsigned short * A[CLUSTERS_MAX]; |
---|
699 | int * B[CLUSTERS_MAX]; |
---|
700 | int * C[CLUSTERS_MAX]; |
---|
701 | int * D[CLUSTERS_MAX]; |
---|
702 | unsigned char * Z[CLUSTERS_MAX]; |
---|
703 | |
---|
704 | for( c = 0 ; c < nclusters ; c++ ) |
---|
705 | { |
---|
706 | A[c] = GA[c]; |
---|
707 | B[c] = GB[c]; |
---|
708 | C[c] = GC[c]; |
---|
709 | D[c] = GD[c]; |
---|
710 | Z[c] = GZ[c]; |
---|
711 | } |
---|
712 | |
---|
713 | // Each thread[cid,0] access the file containing the input image, to load |
---|
714 | // the local A[cid] buffer. Other threads are waiting on the barrier. |
---|
715 | if ( lid==0 ) |
---|
716 | { |
---|
717 | unsigned int size = local_pixels * sizeof( unsigned short ); |
---|
718 | unsigned int offset = size * cid; |
---|
719 | |
---|
720 | memcpy( A[cid], |
---|
721 | image_in + offset, |
---|
722 | size ); |
---|
723 | |
---|
724 | #if VERBOSE_EXEC |
---|
725 | get_cycle( &date ); |
---|
726 | printf( "\n[convol] exec[%d] on core[%x,%d] loaded input file in A[%d] / cycle %d\n", |
---|
727 | tid , cxy , lpid , cid , (unsigned int)date); |
---|
728 | #endif |
---|
729 | |
---|
730 | } |
---|
731 | |
---|
732 | // Optionnal parallel display of the initial image stored in A[c] buffers. |
---|
733 | // Eah thread[cid,lid] displays (NL/nthreads) lines. |
---|
734 | |
---|
735 | if ( INITIAL_DISPLAY_ENABLE ) |
---|
736 | { |
---|
737 | unsigned int line; |
---|
738 | unsigned int offset = lines_per_thread * lid; |
---|
739 | |
---|
740 | for ( l = 0 ; l < lines_per_thread ; l++ ) |
---|
741 | { |
---|
742 | line = offset + l; |
---|
743 | |
---|
744 | // copy TA[cid] to TZ[cid] |
---|
745 | for ( p = 0 ; p < NP ; p++ ) |
---|
746 | { |
---|
747 | TZ(cid, line, p) = (unsigned char)(TA(cid, line, p) >> 8); |
---|
748 | } |
---|
749 | |
---|
750 | // display one line to frame buffer |
---|
751 | if (fbf_write( &TZ(cid, line, 0), // first pixel in TZ |
---|
752 | NP, // number of bytes |
---|
753 | NP*(l + (tid * lines_per_thread)))) // offset in FBF |
---|
754 | { |
---|
755 | printf("\n[convol error] in %s : thread[%d] cannot access FBF\n", |
---|
756 | __FUNCTION__ , tid ); |
---|
757 | pthread_exit( &THREAD_EXIT_FAILURE ); |
---|
758 | } |
---|
759 | } |
---|
760 | |
---|
761 | #if VERBOSE_EXEC |
---|
762 | get_cycle( &date ); |
---|
763 | printf( "\n[convol] exec[%d] on core[%x,%d] completed initial display / cycle %d\n", |
---|
764 | tid , cxy , lpid , (unsigned int)date ); |
---|
765 | #endif |
---|
766 | |
---|
767 | //////////////////////////////// |
---|
768 | pthread_barrier_wait( &barrier ); |
---|
769 | } |
---|
770 | |
---|
771 | //////////////////////////////////////////////////////////// |
---|
772 | // parallel horizontal filter : |
---|
773 | // B <= convol(FH(A)) |
---|
774 | // D <= A - FH(A) |
---|
775 | // Each thread computes (NL/nthreads) lines. |
---|
776 | // The image must be extended : |
---|
777 | // if (z<0) TA(cid,l,z) == TA(cid,l,0) |
---|
778 | // if (z>NP-1) TA(cid,l,z) == TA(cid,l,NP-1) |
---|
779 | //////////////////////////////////////////////////////////// |
---|
780 | |
---|
781 | get_cycle( &date ); |
---|
782 | H_BEG[cid][lid] = (unsigned int)date; |
---|
783 | |
---|
784 | // l = absolute line index / p = absolute pixel index |
---|
785 | // first & last define which lines are handled by a given thread |
---|
786 | |
---|
787 | first = tid * lines_per_thread; |
---|
788 | last = first + lines_per_thread; |
---|
789 | |
---|
790 | for (l = first; l < last; l++) |
---|
791 | { |
---|
792 | // src_c and src_l are the cluster index and the line index for A & D |
---|
793 | int src_c = l / lines_per_cluster; |
---|
794 | int src_l = l % lines_per_cluster; |
---|
795 | |
---|
796 | // We use the specific values of the horizontal ep-filter for optimisation: |
---|
797 | // sum(p) = sum(p-1) + TA[p+hrange] - TA[p-hrange-1] |
---|
798 | // To minimize the number of tests, the loop on pixels is split in three domains |
---|
799 | |
---|
800 | int sum_p = (hrange + 2) * TA(src_c, src_l, 0); |
---|
801 | for (z = 1; z < hrange; z++) |
---|
802 | { |
---|
803 | sum_p = sum_p + TA(src_c, src_l, z); |
---|
804 | } |
---|
805 | |
---|
806 | // first domain : from 0 to hrange |
---|
807 | for (p = 0; p < hrange + 1; p++) |
---|
808 | { |
---|
809 | // dst_c and dst_p are the cluster index and the pixel index for B |
---|
810 | int dst_c = p / pixels_per_cluster; |
---|
811 | int dst_p = p % pixels_per_cluster; |
---|
812 | sum_p = sum_p + (int) TA(src_c, src_l, p + hrange) - (int) TA(src_c, src_l, 0); |
---|
813 | TB(dst_c, dst_p, l) = sum_p / hnorm; |
---|
814 | TD(src_c, src_l, p) = (int) TA(src_c, src_l, p) - sum_p / hnorm; |
---|
815 | } |
---|
816 | // second domain : from (hrange+1) to (NP-hrange-1) |
---|
817 | for (p = hrange + 1; p < NP - hrange; p++) |
---|
818 | { |
---|
819 | // dst_c and dst_p are the cluster index and the pixel index for B |
---|
820 | int dst_c = p / pixels_per_cluster; |
---|
821 | int dst_p = p % pixels_per_cluster; |
---|
822 | sum_p = sum_p + (int) TA(src_c, src_l, p + hrange) |
---|
823 | - (int) TA(src_c, src_l, p - hrange - 1); |
---|
824 | TB(dst_c, dst_p, l) = sum_p / hnorm; |
---|
825 | TD(src_c, src_l, p) = (int) TA(src_c, src_l, p) - sum_p / hnorm; |
---|
826 | } |
---|
827 | // third domain : from (NP-hrange) to (NP-1) |
---|
828 | for (p = NP - hrange; p < NP; p++) |
---|
829 | { |
---|
830 | // dst_c and dst_p are the cluster index and the pixel index for B |
---|
831 | int dst_c = p / pixels_per_cluster; |
---|
832 | int dst_p = p % pixels_per_cluster; |
---|
833 | sum_p = sum_p + (int) TA(src_c, src_l, NP - 1) |
---|
834 | - (int) TA(src_c, src_l, p - hrange - 1); |
---|
835 | TB(dst_c, dst_p, l) = sum_p / hnorm; |
---|
836 | TD(src_c, src_l, p) = (int) TA(src_c, src_l, p) - sum_p / hnorm; |
---|
837 | } |
---|
838 | |
---|
839 | #if SUPER_VERBOSE |
---|
840 | get_cycle( &date ); |
---|
841 | printf(" - line %d computed at cycle %d\n", l, (unsigned int)date ); |
---|
842 | #endif |
---|
843 | |
---|
844 | } |
---|
845 | |
---|
846 | get_cycle( &date ); |
---|
847 | H_END[cid][lid] = (unsigned int)date; |
---|
848 | |
---|
849 | #if VERBOSE_EXEC |
---|
850 | get_cycle( &date ); |
---|
851 | printf( "\n[convol] exec[%d] on core[%x,%d] completed horizontal filter / cycle %d\n", |
---|
852 | tid , cxy , lpid , (unsigned int)date ); |
---|
853 | #endif |
---|
854 | |
---|
855 | //////////////////////////////// |
---|
856 | pthread_barrier_wait( &barrier ); |
---|
857 | |
---|
858 | /////////////////////////////////////////////////////////////// |
---|
859 | // parallel vertical filter : |
---|
860 | // C <= transpose(FV(B)) |
---|
861 | // Each thread computes (NP/nthreads) columns |
---|
862 | // The image must be extended : |
---|
863 | // if (l<0) TB(cid,p,l) == TB(cid,p,0) |
---|
864 | // if (l>NL-1) TB(cid,p,l) == TB(cid,p,NL-1) |
---|
865 | /////////////////////////////////////////////////////////////// |
---|
866 | |
---|
867 | get_cycle( &date ); |
---|
868 | V_BEG[cid][lid] = (unsigned int)date; |
---|
869 | |
---|
870 | // l = absolute line index / p = absolute pixel index |
---|
871 | // first & last define which pixels are handled by a given thread |
---|
872 | |
---|
873 | first = tid * pixels_per_thread; |
---|
874 | last = first + pixels_per_thread; |
---|
875 | |
---|
876 | for (p = first; p < last; p++) |
---|
877 | { |
---|
878 | // src_c and src_p are the cluster index and the pixel index for B |
---|
879 | int src_c = p / pixels_per_cluster; |
---|
880 | int src_p = p % pixels_per_cluster; |
---|
881 | |
---|
882 | int sum_l; |
---|
883 | |
---|
884 | // We use the specific values of the vertical ep-filter |
---|
885 | // To minimize the number of tests, the NL lines are split in three domains |
---|
886 | |
---|
887 | // first domain : explicit computation for the first 18 values |
---|
888 | for (l = 0; l < 18; l++) |
---|
889 | { |
---|
890 | // dst_c and dst_l are the cluster index and the line index for C |
---|
891 | int dst_c = l / lines_per_cluster; |
---|
892 | int dst_l = l % lines_per_cluster; |
---|
893 | |
---|
894 | for (z = 0, sum_l = 0; z < 35; z++) |
---|
895 | { |
---|
896 | sum_l = sum_l + vf[z] * TB(src_c, src_p, max(l - 17 + z,0) ); |
---|
897 | } |
---|
898 | TC(dst_c, dst_l, p) = sum_l / vnorm; |
---|
899 | } |
---|
900 | // second domain |
---|
901 | for (l = 18; l < NL - 17; l++) |
---|
902 | { |
---|
903 | // dst_c and dst_l are the cluster index and the line index for C |
---|
904 | int dst_c = l / lines_per_cluster; |
---|
905 | int dst_l = l % lines_per_cluster; |
---|
906 | |
---|
907 | sum_l = sum_l + TB(src_c, src_p, l + 4) |
---|
908 | + TB(src_c, src_p, l + 8) |
---|
909 | + TB(src_c, src_p, l + 11) |
---|
910 | + TB(src_c, src_p, l + 15) |
---|
911 | + TB(src_c, src_p, l + 17) |
---|
912 | - TB(src_c, src_p, l - 5) |
---|
913 | - TB(src_c, src_p, l - 9) |
---|
914 | - TB(src_c, src_p, l - 12) |
---|
915 | - TB(src_c, src_p, l - 16) |
---|
916 | - TB(src_c, src_p, l - 18); |
---|
917 | |
---|
918 | TC(dst_c, dst_l, p) = sum_l / vnorm; |
---|
919 | } |
---|
920 | // third domain |
---|
921 | for (l = NL - 17; l < NL; l++) |
---|
922 | { |
---|
923 | // dst_c and dst_l are the cluster index and the line index for C |
---|
924 | int dst_c = l / lines_per_cluster; |
---|
925 | int dst_l = l % lines_per_cluster; |
---|
926 | |
---|
927 | sum_l = sum_l + TB(src_c, src_p, min(l + 4, NL - 1)) |
---|
928 | + TB(src_c, src_p, min(l + 8, NL - 1)) |
---|
929 | + TB(src_c, src_p, min(l + 11, NL - 1)) |
---|
930 | + TB(src_c, src_p, min(l + 15, NL - 1)) |
---|
931 | + TB(src_c, src_p, min(l + 17, NL - 1)) |
---|
932 | - TB(src_c, src_p, l - 5) |
---|
933 | - TB(src_c, src_p, l - 9) |
---|
934 | - TB(src_c, src_p, l - 12) |
---|
935 | - TB(src_c, src_p, l - 16) |
---|
936 | - TB(src_c, src_p, l - 18); |
---|
937 | |
---|
938 | TC(dst_c, dst_l, p) = sum_l / vnorm; |
---|
939 | } |
---|
940 | |
---|
941 | #if SUPER_VERBOSE |
---|
942 | get_cycle( &date ); |
---|
943 | printf(" - column %d computed at cycle %d\n", p, (unsigned int)date ); |
---|
944 | #endif |
---|
945 | |
---|
946 | } |
---|
947 | |
---|
948 | get_cycle( &date ); |
---|
949 | V_END[cid][lid] = (unsigned int)date; |
---|
950 | |
---|
951 | #if VERBOSE_EXEC |
---|
952 | get_cycle( &date ); |
---|
953 | printf( "\n[convol] exec[%d] on core[%x,%d] completed vertical filter / cycle %d\n", |
---|
954 | tid , cxy , lid , (unsigned int)date ); |
---|
955 | #endif |
---|
956 | |
---|
957 | //////////////////////////////// |
---|
958 | pthread_barrier_wait( &barrier ); |
---|
959 | |
---|
960 | // Optional parallel display of the final image Z <= D + C |
---|
961 | // Eah thread[x,y,p] displays (NL/nthreads) lines. |
---|
962 | |
---|
963 | if ( FINAL_DISPLAY_ENABLE ) |
---|
964 | { |
---|
965 | get_cycle( &date ); |
---|
966 | D_BEG[cid][lid] = (unsigned int)date; |
---|
967 | |
---|
968 | unsigned int line; |
---|
969 | unsigned int offset = lines_per_thread * lid; |
---|
970 | |
---|
971 | for ( l = 0 ; l < lines_per_thread ; l++ ) |
---|
972 | { |
---|
973 | line = offset + l; |
---|
974 | |
---|
975 | for ( p = 0 ; p < NP ; p++ ) |
---|
976 | { |
---|
977 | TZ(cid, line, p) = |
---|
978 | (unsigned char)( (TD(cid, line, p) + |
---|
979 | TC(cid, line, p) ) >> 8 ); |
---|
980 | } |
---|
981 | |
---|
982 | if (fbf_write( &TZ(cid, line, 0), // first pixel in TZ |
---|
983 | NP, // number of bytes |
---|
984 | NP*(l + (tid * lines_per_thread)))) // offset in FBF |
---|
985 | { |
---|
986 | printf("\n[convol error] thread[%d] cannot access FBF\n", tid ); |
---|
987 | pthread_exit( &THREAD_EXIT_FAILURE ); |
---|
988 | } |
---|
989 | } |
---|
990 | |
---|
991 | get_cycle( &date ); |
---|
992 | D_END[cid][lid] = (unsigned int)date; |
---|
993 | |
---|
994 | #if VERBOSE_EXEC |
---|
995 | get_cycle( &date ); |
---|
996 | printf( "\n[convol] exec[%d] on core[%x,%d] completed final display / cycle %d\n", |
---|
997 | tid , cxy , lid , (unsigned int)date ); |
---|
998 | #endif |
---|
999 | |
---|
1000 | } |
---|
1001 | |
---|
1002 | // Each thread[cid,0] releases the 5 local buffers |
---|
1003 | if( lid == 0 ) |
---|
1004 | { |
---|
1005 | free( A[cid] ); |
---|
1006 | free( B[cid] ); |
---|
1007 | free( C[cid] ); |
---|
1008 | free( D[cid] ); |
---|
1009 | free( Z[cid] ); |
---|
1010 | } |
---|
1011 | |
---|
1012 | // thread termination depends on the placement policy |
---|
1013 | if( PARALLEL_PLACEMENT ) |
---|
1014 | { |
---|
1015 | // <exec> threads are runing in detached mode, and |
---|
1016 | // each thread must signal completion by calling barrier |
---|
1017 | // passed in arguments before exit |
---|
1018 | |
---|
1019 | pthread_barrier_wait( args->barrier ); |
---|
1020 | |
---|
1021 | pthread_exit( &THREAD_EXIT_SUCCESS ); |
---|
1022 | } |
---|
1023 | else |
---|
1024 | { |
---|
1025 | // <exec> threads are running in attached mode |
---|
1026 | // all threads (but the one executing main) exit |
---|
1027 | if ( tid != tid_main ) pthread_exit( &THREAD_EXIT_SUCCESS ); |
---|
1028 | } |
---|
1029 | |
---|
1030 | return NULL; |
---|
1031 | |
---|
1032 | } // end execute() |
---|
1033 | |
---|
1034 | |
---|
1035 | |
---|
1036 | ////////////////////////// |
---|
1037 | void instrument( FILE * f, |
---|
1038 | char * filename ) |
---|
1039 | { |
---|
1040 | unsigned int nclusters = x_size * y_size; |
---|
1041 | |
---|
1042 | unsigned int cc, pp; |
---|
1043 | |
---|
1044 | unsigned int min_start = 0xFFFFFFFF; |
---|
1045 | unsigned int max_start = 0; |
---|
1046 | |
---|
1047 | unsigned int min_h_beg = 0xFFFFFFFF; |
---|
1048 | unsigned int max_h_beg = 0; |
---|
1049 | |
---|
1050 | unsigned int min_h_end = 0xFFFFFFFF; |
---|
1051 | unsigned int max_h_end = 0; |
---|
1052 | |
---|
1053 | unsigned int min_v_beg = 0xFFFFFFFF; |
---|
1054 | unsigned int max_v_beg = 0; |
---|
1055 | |
---|
1056 | unsigned int min_v_end = 0xFFFFFFFF; |
---|
1057 | unsigned int max_v_end = 0; |
---|
1058 | |
---|
1059 | unsigned int min_d_beg = 0xFFFFFFFF; |
---|
1060 | unsigned int max_d_beg = 0; |
---|
1061 | |
---|
1062 | unsigned int min_d_end = 0xFFFFFFFF; |
---|
1063 | unsigned int max_d_end = 0; |
---|
1064 | |
---|
1065 | for (cc = 0; cc < nclusters; cc++) |
---|
1066 | { |
---|
1067 | for (pp = 0; pp < ncores; pp++ ) |
---|
1068 | { |
---|
1069 | if (START[cc][pp] < min_start) min_start = START[cc][pp]; |
---|
1070 | if (START[cc][pp] > max_start) max_start = START[cc][pp]; |
---|
1071 | |
---|
1072 | if (H_BEG[cc][pp] < min_h_beg) min_h_beg = H_BEG[cc][pp]; |
---|
1073 | if (H_BEG[cc][pp] > max_h_beg) max_h_beg = H_BEG[cc][pp]; |
---|
1074 | |
---|
1075 | if (H_END[cc][pp] < min_h_end) min_h_end = H_END[cc][pp]; |
---|
1076 | if (H_END[cc][pp] > max_h_end) max_h_end = H_END[cc][pp]; |
---|
1077 | |
---|
1078 | if (V_BEG[cc][pp] < min_v_beg) min_v_beg = V_BEG[cc][pp]; |
---|
1079 | if (V_BEG[cc][pp] > max_v_beg) max_v_beg = V_BEG[cc][pp]; |
---|
1080 | |
---|
1081 | if (V_END[cc][pp] < min_v_end) min_v_end = V_END[cc][pp]; |
---|
1082 | if (V_END[cc][pp] > max_v_end) max_v_end = V_END[cc][pp]; |
---|
1083 | |
---|
1084 | if (D_BEG[cc][pp] < min_d_beg) min_d_beg = D_BEG[cc][pp]; |
---|
1085 | if (D_BEG[cc][pp] > max_d_beg) max_d_beg = D_BEG[cc][pp]; |
---|
1086 | |
---|
1087 | if (D_END[cc][pp] < min_d_end) min_d_end = D_END[cc][pp]; |
---|
1088 | if (D_END[cc][pp] > max_d_end) max_d_end = D_END[cc][pp]; |
---|
1089 | } |
---|
1090 | } |
---|
1091 | |
---|
1092 | // display on terminal |
---|
1093 | printf( "\n ------ %s ------\n" , filename ); |
---|
1094 | |
---|
1095 | printf(" - START : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1096 | min_start, max_start, (min_start+max_start)/2, max_start-min_start); |
---|
1097 | |
---|
1098 | printf(" - H_BEG : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1099 | min_h_beg, max_h_beg, (min_h_beg+max_h_beg)/2, max_h_beg-min_h_beg); |
---|
1100 | |
---|
1101 | printf(" - H_END : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1102 | min_h_end, max_h_end, (min_h_end+max_h_end)/2, max_h_end-min_h_end); |
---|
1103 | |
---|
1104 | printf(" - V_BEG : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1105 | min_v_beg, max_v_beg, (min_v_beg+max_v_beg)/2, max_v_beg-min_v_beg); |
---|
1106 | |
---|
1107 | printf(" - V_END : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1108 | min_v_end, max_v_end, (min_v_end+max_v_end)/2, max_v_end-min_v_end); |
---|
1109 | |
---|
1110 | printf(" - D_BEG : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1111 | min_d_beg, max_d_beg, (min_d_beg+max_d_beg)/2, max_d_beg-min_d_beg); |
---|
1112 | |
---|
1113 | printf(" - D_END : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1114 | min_d_end, max_d_end, (min_d_end+max_d_end)/2, max_d_end-min_d_end); |
---|
1115 | |
---|
1116 | printf( "\n General Scenario (Kcycles)\n" ); |
---|
1117 | printf( " - LOAD IMAGE = %d\n", (min_h_beg - min_start)/1000 ); |
---|
1118 | printf( " - H_FILTER = %d\n", (max_h_end - min_h_beg)/1000 ); |
---|
1119 | printf( " - BARRIER HORI/VERT = %d\n", (min_v_beg - max_h_end)/1000 ); |
---|
1120 | printf( " - V_FILTER = %d\n", (max_v_end - min_v_beg)/1000 ); |
---|
1121 | printf( " - BARRIER VERT/DISP = %d\n", (min_d_beg - max_v_end)/1000 ); |
---|
1122 | printf( " - DISPLAY = %d\n", (max_d_end - min_d_beg)/1000 ); |
---|
1123 | printf( " \nSEQUENCIAL = %d / PARALLEL = %d\n", |
---|
1124 | SEQUENCIAL_TIME/1000, PARALLEL_TIME/1000 ); |
---|
1125 | |
---|
1126 | // save on disk |
---|
1127 | fprintf( f , "\n ------ %s ------\n" , filename ); |
---|
1128 | |
---|
1129 | fprintf( f , " - START : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1130 | min_start, max_start, (min_start+max_start)/2, max_start-min_start); |
---|
1131 | |
---|
1132 | fprintf( f , " - H_BEG : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1133 | min_h_beg, max_h_beg, (min_h_beg+max_h_beg)/2, max_h_beg-min_h_beg); |
---|
1134 | |
---|
1135 | fprintf( f , " - H_END : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1136 | min_h_end, max_h_end, (min_h_end+max_h_end)/2, max_h_end-min_h_end); |
---|
1137 | |
---|
1138 | fprintf( f , " - V_BEG : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1139 | min_v_beg, max_v_beg, (min_v_beg+max_v_beg)/2, max_v_beg-min_v_beg); |
---|
1140 | |
---|
1141 | fprintf( f , " - V_END : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1142 | min_v_end, max_v_end, (min_v_end+max_v_end)/2, max_v_end-min_v_end); |
---|
1143 | |
---|
1144 | fprintf( f , " - D_BEG : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1145 | min_d_beg, max_d_beg, (min_d_beg+max_d_beg)/2, max_d_beg-min_d_beg); |
---|
1146 | |
---|
1147 | fprintf( f , " - D_END : min = %d / max = %d / med = %d / delta = %d\n", |
---|
1148 | min_d_end, max_d_end, (min_d_end+max_d_end)/2, max_d_end-min_d_end); |
---|
1149 | |
---|
1150 | fprintf( f , "\n General Scenario (Kcycles)\n" ); |
---|
1151 | fprintf( f , " - LOAD IMAGE = %d\n", (min_h_beg - min_start)/1000 ); |
---|
1152 | fprintf( f , " - H_FILTER = %d\n", (max_h_end - min_h_beg)/1000 ); |
---|
1153 | fprintf( f , " - BARRIER HORI/VERT = %d\n", (min_v_beg - max_h_end)/1000 ); |
---|
1154 | fprintf( f , " - V_FILTER = %d\n", (max_v_end - min_v_beg)/1000 ); |
---|
1155 | fprintf( f , " - BARRIER VERT/DISP = %d\n", (min_d_beg - max_v_end)/1000 ); |
---|
1156 | fprintf( f , " - DISPLAY = %d\n", (max_d_end - min_d_beg)/1000 ); |
---|
1157 | fprintf( f , " \nSEQUENCIAL = %d / PARALLEL = %d\n", |
---|
1158 | SEQUENCIAL_TIME/1000, PARALLEL_TIME/1000 ); |
---|
1159 | |
---|
1160 | } // end instrument() |
---|
1161 | |
---|
1162 | |
---|
1163 | |
---|
1164 | |
---|
1165 | |
---|
1166 | // Local Variables: |
---|
1167 | // tab-width: 3 |
---|
1168 | // c-basic-offset: 3 |
---|
1169 | // c-file-offsets:((innamespace . 0)(inline-open . 0)) |
---|
1170 | // indent-tabs-mode: nil |
---|
1171 | // End: |
---|
1172 | |
---|
1173 | // vim: filetype=cpp:expandtab:shiftwidth=3:tabstop=3:softtabstop=3 |
---|
1174 | |
---|
1175 | |
---|