comparison src/Application/main.c @ 1:103a5f3b74cf

Works on small matrices -- too many threads, dies on large matrices
author Me
date Tue, 26 Oct 2010 19:37:08 -0700
parents 3b0e43240104
children
comparison
equal deleted inserted replaced
0:5ef16d34b7ce 1:6bd525b964c0
25 25
26 resultMatrix = multiplyTheseMatrices( leftMatrix, rightMatrix ); 26 resultMatrix = multiplyTheseMatrices( leftMatrix, rightMatrix );
27 27
28 printf("\nresult matrix: \n"); 28 printf("\nresult matrix: \n");
29 29
30 // printMatrix( resultMatrix ); 30 printMatrix( resultMatrix );
31 31
32 // VPThread__print_stats(); 32 // VPThread__print_stats();
33 33
34 exit(0); //cleans up 34 exit(0); //cleans up
35 } 35 }