#include //================================================================C // Test Program of Matrix-multiplication (C=A*B) C // with ikj-loop and (1x1,2x2)-unrolling C // by Single processor on Windows C //----------------------------------------------------------------C // Written by Yasunori Ushiro, 2009/04/22 C // ( Tokyu Kougei University ) C //================================================================C #include #include #define n 5000 // Matrix size #define lp 1 // Number of loops for use time double A[n][n], B[n][n], C[n][n]; void set() { int i, j; double D; D = 1.0/n; for (i=0; i