source: branches/v4/platforms/caba-ring-ccxcachev4_memcachev4-mips32el/soft/matrix_multiplication/matrix_multiplication.h @ 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: 554 bytes
Line 
1#ifndef matrix_multiplication_h
2#define matrix_multiplication_h
3
4void matrix_multiplication_st (int ** a,
5                               int ** b,
6                               int ** d,
7                               unsigned int n);
8
9void matrix_multiplication_mt (int ** a,
10                               int ** b,
11                               int ** d,
12                               unsigned int n,
13                               int lock_by_line);
14
15void matrix_multiplication_print (int ** m, unsigned int n);
16
17#endif // matrix_multiplication_h
Note: See TracBrowser for help on using the repository browser.