source: branches/v4/platforms/caba-ring-ccxcachev4_memcachev4-mips32el/soft/matrix_multiplication/matrix_multiplication_print.c @ 751

Last change on this file since 751 was 134, checked in by kane, 13 years ago

add multi write buffer in cc_xcache_v4

File size: 241 bytes
Line 
1#include "matrix_multiplication.h"
2#include "stdio.h"
3
4void matrix_multiplication_print (int ** m, unsigned int n)
5{
6  int i,j;
7  for (i=0; i<n; ++i)
8    {
9      for (j=0; j<n; ++j)
10        printf("%d ",m[i][j]);
11      printf("\n");
12    }
13}
Note: See TracBrowser for help on using the repository browser.