import java.util.Random; public class TestIntMatrixMultiplication { public static void main (String...args) throws Exception { final int n = args.length > 0 ? Integer.parseInt(args[0]) : 128; final int seed = args.length > 1 ? Integer.parseInt(args[1]) : 128; final Random random = new Random(seed); int[][] a, b, c; a = new int[n][n]; b = new int[n][n]; c = new int[n][n]; for(int i=0; i