X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7c5d24856794b213573f5e67bf138db144dac2eb..40b9540a553006e50628eb13c451c354a0671d3e:/src/xbt/xbt_matrix.c diff --git a/src/xbt/xbt_matrix.c b/src/xbt/xbt_matrix.c index 53ac04041c..32a28af4f8 100644 --- a/src/xbt/xbt_matrix.c +++ b/src/xbt/xbt_matrix.c @@ -15,28 +15,28 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_matrix,xbt,"2D data storage"); /** \brief constructor */ -xbt_matrix_t xbt_matrix_new(int lines, int rows, - const unsigned long elmsize, - void_f_pvoid_t const free_f) { - xbt_matrix_t res=xbt_new(s_xbt_matrix_t, 1); - res->lines = lines; - res->rows = rows; - res->elmsize = elmsize; - res->free_f = free_f; - res->data = xbt_malloc(elmsize*lines*rows); - return res; +xbt_matrix_t xbt_matrix_new(int lines, int rows, + const unsigned long elmsize, + void_f_pvoid_t const free_f) { + xbt_matrix_t res=xbt_new(s_xbt_matrix_t, 1); + res->lines = lines; + res->rows = rows; + res->elmsize = elmsize; + res->free_f = free_f; + res->data = xbt_malloc(elmsize*lines*rows); + return res; } /** \brief Creates a matrix being a submatrix of another one */ -xbt_matrix_t xbt_matrix_new_sub(xbt_matrix_t from, - int lsize, int rsize, - int lpos, int rpos, - pvoid_f_pvoid_t const cpy_f) { - - xbt_matrix_t res=xbt_matrix_new(lsize,rsize, - from->elmsize, from->free_f); - xbt_matrix_copy_values(res,from,lsize,rsize,0,0,lpos,rpos,cpy_f); - return res; +xbt_matrix_t xbt_matrix_new_sub(xbt_matrix_t from, + int lsize, int rsize, + int lpos, int rpos, + pvoid_f_pvoid_t const cpy_f) { + + xbt_matrix_t res=xbt_matrix_new(lsize,rsize, + from->elmsize, from->free_f); + xbt_matrix_copy_values(res,from,lsize,rsize,0,0,lpos,rpos,cpy_f); + return res; } /** \brief destructor */ @@ -45,7 +45,7 @@ void xbt_matrix_free(xbt_matrix_t mat) { if (mat) { if (mat->free_f) { for (i=0; i < (mat->lines * mat->rows) ; i++) { - (*(mat->free_f))( (void*)& (mat->data[i*mat->elmsize]) ); + (*(mat->free_f))( (void*)& (mat->data[i*mat->elmsize]) ); } } free(mat->data); @@ -55,25 +55,25 @@ void xbt_matrix_free(xbt_matrix_t mat) { /** \brief Freeing function for containers of xbt_matrix_t */ void xbt_matrix_free_voidp(void *d) { - xbt_matrix_free( (xbt_matrix_t) *(void**)d ); + xbt_matrix_free( (xbt_matrix_t) *(void**)d ); } -/** \brief Display the content of a matrix (debugging purpose) +/** \brief Display the content of a matrix (debugging purpose) * \param coords: boolean indicating whether we should add the coords of each cell to the output*/ void xbt_matrix_dump(xbt_matrix_t matrix, const char*name, int coords, - void_f_pvoid_t display_fun) { + void_f_pvoid_t display_fun) { unsigned int i,j; fprintf(stderr,">>> Matrix %s dump (%d x %d)\n",name,matrix->lines,matrix->rows); for (i=0; ilines; i++) { fprintf(stderr," "); for (j=0; jrows; j++) { - if (coords) - fprintf(stderr," (%d,%d)=",i,j); - else - fprintf(stderr," "); - (*display_fun)(xbt_matrix_get_ptr(matrix,i,j)); + if (coords) + fprintf(stderr," (%d,%d)=",i,j); + else + fprintf(stderr," "); + (*display_fun)(xbt_matrix_get_ptr(matrix,i,j)); } fprintf(stderr,"\n"); } @@ -94,45 +94,45 @@ void xbt_matrix_dump_display_double(void*d) { * \param rpos_src: row offset on destination matrix */ void xbt_matrix_copy_values(xbt_matrix_t dst, xbt_matrix_t src, - unsigned int lsize, unsigned int rsize, - unsigned int lpos_dst,unsigned int rpos_dst, - unsigned int lpos_src,unsigned int rpos_src, - pvoid_f_pvoid_t const cpy_f) { - unsigned int i,j; - - DEBUG10("Copy a %dx%d submatrix from %dx%d(of %dx%d) to %dx%d (of %dx%d)", - lsize,rsize, - lpos_src,rpos_src,src->lines,src->rows, - lpos_dst,rpos_dst,dst->lines,dst->rows); - - /* everybody knows that issue is between the chair and the screen (particulary in my office) */ - xbt_assert(src->elmsize == dst->elmsize); - /* don't check free_f since the user may play weird games with this */ - - xbt_assert(lpos_src+lsize <= src->lines); - xbt_assert(rpos_src+rsize <= src->rows); - - xbt_assert(lpos_dst+lsize <= dst->lines); - xbt_assert(rpos_dst+rsize <= dst->rows); - - /* Lets get serious here */ - for (i=0;ielmsize*lsize); - } - } + unsigned int lsize, unsigned int rsize, + unsigned int lpos_dst,unsigned int rpos_dst, + unsigned int lpos_src,unsigned int rpos_src, + pvoid_f_pvoid_t const cpy_f) { + unsigned int i,j; + + DEBUG10("Copy a %dx%d submatrix from %dx%d(of %dx%d) to %dx%d (of %dx%d)", + lsize,rsize, + lpos_src,rpos_src,src->lines,src->rows, + lpos_dst,rpos_dst,dst->lines,dst->rows); + + /* everybody knows that issue is between the chair and the screen (particulary in my office) */ + xbt_assert(src->elmsize == dst->elmsize); + /* don't check free_f since the user may play weird games with this */ + + xbt_assert(lpos_src+lsize <= src->lines); + xbt_assert(rpos_src+rsize <= src->rows); + + xbt_assert(lpos_dst+lsize <= dst->lines); + xbt_assert(rpos_dst+rsize <= dst->rows); + + /* Lets get serious here */ + for (i=0;ielmsize*lsize); + } + } } /** \brief Creates a new matrix of double filled with zeros */ xbt_matrix_t xbt_matrix_double_new_zeros(int lines, int rows) { xbt_matrix_t res = xbt_matrix_new(lines, rows,sizeof(double),NULL); - + memset(res->data,0, res->elmsize * res->lines * res->rows); return res; } @@ -141,8 +141,8 @@ xbt_matrix_t xbt_matrix_double_new_zeros(int lines, int rows) { xbt_matrix_t xbt_matrix_double_new_id(int lines, int rows) { xbt_matrix_t res = xbt_matrix_double_new_zeros(lines, rows); int i; - - for (i=0; idata[i*res->elmsize] = i; + *(double*)&res->data[i*res->elmsize] = i; return res; } @@ -178,19 +178,19 @@ xbt_matrix_t xbt_matrix_double_new_mult(xbt_matrix_t A,xbt_matrix_t B) { /** \brief add to C the result of A*B */ void xbt_matrix_double_addmult(xbt_matrix_t A,xbt_matrix_t B, - /*OUT*/ xbt_matrix_t C) { + /*OUT*/ xbt_matrix_t C) { unsigned int i,j,k; xbt_assert2(A->lines == C->lines, - "A->lines != C->lines (%d vs %d)",A->lines,C->lines); + "A->lines != C->lines (%d vs %d)",A->lines,C->lines); xbt_assert(B->rows == C->rows); - - for (i=0; ilines; i++) - for (j=0; jrows; j++) - for (k=0; klines; k++) - xbt_matrix_get_as(C,i,j,double) += - xbt_matrix_get_as(A,i,k,double) * xbt_matrix_get_as(B,k,j,double); + + for (i=0; ilines; i++) + for (j=0; jrows; j++) + for (k=0; klines; k++) + xbt_matrix_get_as(C,i,j,double) += + xbt_matrix_get_as(A,i,k,double) * xbt_matrix_get_as(B,k,j,double); } - +