| 55 | | @@ -100,10 +98,13 @@ |
| 56 | | public static void checkAnswer (int[][] A, int[][] B, int I, int K, int J) |
| 57 | | throws Exception |
| 58 | | { |
| 59 | | + System.out.println("......multiply(...)"); |
| 60 | | int[][] X = multiply(A, B, I, K, J); |
| 61 | | + System.out.println("......readMatrix("+I+","+J+","+OUTPUT_DIR_PATH); |
| | 55 | @@ -104,6 +102,7 @@ |
| 69 | | @@ -135,8 +136,10 @@ |
| 70 | | int IB, int KB, int JB) |
| 71 | | throws Exception |
| 72 | | { |
| 73 | | + System.out.println("...MatrixMultiply.runJob(...)"); |
| 74 | | MatrixMultiply.runJob(conf, INPUT_PATH_A, INPUT_OATH_B, OUTPUT_DIR_PATH, TEMP_DIR_PATH, |
| 75 | | strategy, R1, R2, I, K, J, IB, KB, JB); |
| 76 | | + System.out.println("...checkAnswer(...)"); |
| 77 | | checkAnswer(A, B, I, K, J); |
| 78 | | } |
| 79 | | |
| 80 | | @@ -279,8 +282,8 @@ |
| 81 | | System.out.println("================"); |
| 82 | | System.out.println(); |
| 83 | | } finally { |
| 84 | | - fs.delete(new Path(DATA_DIR_PATH), true); |
| 85 | | + //fs.delete(new Path(DATA_DIR_PATH), true); |
| | 63 | @@ -283,4 +282,4 @@ |