Changes between Initial Version and Version 1 of application_pages/apps/python/matmul


Ignore:
Timestamp:
10/26/15 09:33:49 (9 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • application_pages/apps/python/matmul

    v1 v1  
     1[[PageOutline]] 
     2 
     3= Application Name = 
     4 
     5Matmul 
     6 
     7= Summary = 
     8 
     9* '''Name''': {{{Matmul}}} 
     10* '''Contact Person''': {{{support-compss@bsc.es}}} 
     11* '''Access Level''': {{{public}}} 
     12* '''License Agreement''': {{{Apache2}}} 
     13* '''Platform''': {{{COMPSs}}} 
     14* '''Repository''': [[https://compss.bsc.es/svn/bar/apps/python/matmul|Matmul]] 
     15 
     16 
     17== Description == 
     18Matrix multiplication is a binary operation that takes a pair of matrices and produces another matrix. 
     19 
     20If A is an n×m matrix and B is an m×p matrix, the result AB of their multiplication is an n×p matrix defined only if the number of columns m in A is equal to the number of rows m in B. When multiplying A and B, the elements of the rows in A are multiplied with corresponding columns in B. 
     21 
     22In this python implementation, A and B are square matrices (same number of rows and columns), and so it is the result matrix C. Each matrix is divided in N blocks of M doubles. The multiplication of two blocks is done by a multiply task method with a simple three-nested-loop implementation. When executed with COMPSs, the main program generates N^3^ tasks arranged as N^2^ chains of N tasks in the dependency graph. 
     23 
     24 
     25== Execution instructions == 
     26Usage: 
     27runcompss matmul.py <N> <BlockSize>  
     28 
     29where: 
     30                 * - N: Number of blocks inside the matrix 
     31                 * - BlockSize : Size of the block 
     32 
     33== Execution Example == 
     34runcompss matmul.py 16 8 
     35 
     36 
     37== Build == 
     38No build is required