Last change
on this file since 137 was
134,
checked in by kane, 14 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 | |
---|
4 | void matrix_multiplication_st (int ** a, |
---|
5 | int ** b, |
---|
6 | int ** d, |
---|
7 | unsigned int n); |
---|
8 | |
---|
9 | void matrix_multiplication_mt (int ** a, |
---|
10 | int ** b, |
---|
11 | int ** d, |
---|
12 | unsigned int n, |
---|
13 | int lock_by_line); |
---|
14 | |
---|
15 | void matrix_multiplication_print (int ** m, unsigned int n); |
---|
16 | |
---|
17 | #endif // matrix_multiplication_h |
---|
Note: See
TracBrowser
for help on using the repository browser.