Mercurial > cgi-bin > hgwebdir.cgi > PR > Applications > VReo > Reo__Matrix_Mult
diff Matrix_Mult.h @ 1:1b61e0c00512
almost working k=3, about to change to k=4
| author | Sean Halle <seanhalle@yahoo.com> |
|---|---|
| date | Wed, 19 Feb 2014 09:27:10 -0800 |
| parents | c4b1849c05ef |
| children |
line diff
1.1 --- a/Matrix_Mult.h Sun Feb 02 17:58:41 2014 -0800 1.2 +++ b/Matrix_Mult.h Wed Feb 19 09:27:10 2014 -0800 1.3 @@ -10,6 +10,7 @@ 1.4 #include <unistd.h> 1.5 #include <malloc.h> 1.6 1.7 +#include <PR__include/PR__primitive_data_types.h> 1.8 #include "ParamHelper/Param.h" 1.9 1.10 //============================== Structures ============================== 1.11 @@ -42,8 +43,8 @@ 1.12 // define the starting and ending boundaries for this piece of the 1.13 // result matrix. These are derivable from the left and right 1.14 // matrices, but included them for readability of code. 1.15 - int prodStartRow, prodEndRow; 1.16 - int prodStartCol, prodEndCol; 1.17 + int resStartRow, resEndRow; 1.18 + int resStartCol, resEndCol; 1.19 // Start and end of the portion of the left matrix that contributes to 1.20 // this piece of the product 1.21 int leftStartRow, leftEndRow;
