small bugs
authoradash <adash>
Mon, 5 May 2008 17:16:56 +0000 (17:16 +0000)
committeradash <adash>
Mon, 5 May 2008 17:16:56 +0000 (17:16 +0000)
Robust/src/Benchmarks/Prefetch/MatrixMultiply/MatrixMultiplyNrun.java

index 24eda14f7d138ca04651994be13846bb3e69bf1c..155a50d344754821ab7fb262f404521b476301e7 100644 (file)
@@ -70,9 +70,9 @@ public class MatrixMultiply extends Thread{
            int base=0;
            for(int i=0;i<NUM_THREADS;i++) {
                if ((i+1)==NUM_THREADS)
-                   mm[i]=global new MatrixMultiply(matrix,base, SIZE, 0, SIZE, NUM_MATRIX);
+                   mm[i]=global new MatrixMultiply(matrix,base, SIZE, 0, SIZE);
                else
-                   mm[i]=global new MatrixMultiply(matrix,base, base+increment, 0, SIZE, NUM_MATRIX);
+                   mm[i]=global new MatrixMultiply(matrix,base, base+increment, 0, SIZE);
                base+=increment;
            }
            p = matrix.L;
@@ -141,7 +141,7 @@ public class MMul{
     public void transpose() {
        for(int q=0;q<P;q++) {
            double br=b[q];
-           double bt=btrans[q];
+           double bt=btranspose[q];
            for(int row = 0; row < M; row++) {
                double brow[] = br[row];
                for(int col = 0; col < N; col++) {