bug fix
authorbdemsky <bdemsky>
Mon, 5 May 2008 17:26:42 +0000 (17:26 +0000)
committerbdemsky <bdemsky>
Mon, 5 May 2008 17:26:42 +0000 (17:26 +0000)
Robust/src/Benchmarks/Prefetch/MatrixMultiply/MatrixMultiplyNrun.java

index 155a50d344754821ab7fb262f404521b476301e7..28c2804408bbce742d98a71eb8efa7405decf250 100644 (file)
@@ -140,8 +140,8 @@ public class MMul{
     
     public void transpose() {
        for(int q=0;q<P;q++) {
-           double br=b[q];
-           double bt=btranspose[q];
+           double br[][]=b[q];
+           double bt[][]=btranspose[q];
            for(int row = 0; row < M; row++) {
                double brow[] = br[row];
                for(int col = 0; col < N; col++) {