Changes between Version 12 and Version 13 of MatrixMultiply
- Timestamp:
- Jun 7, 2010 10:29:40 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MatrixMultiply
v12 v13 1 1 = Matrix Multiply on GPU = 2 2 We have implemented single/double precision matrix multiply program for RV770/Cypress. In our implementation, we use two input streams. One is transposed input matrix A and other is input matrix B in normal format. Output matrix C is also not transposed. We adopted 8x8 block for single precision and 4x4 for double precision. Here is benchmark result for each case. Note only kernel execution time is measured. 3 4 Peformance Summary 5 || board || GFLOPS_max || N_max || prec || GPR || MADD peak || 6 || HD4850 || 736 || 3328 || SP || 25 || 1040 || 7 || HD5870 || 2140 || 7424 || SP || 25 || 2720 || 8 || HD4850 || 160 || 1920 || DP || 17 || 208 || 9 || HD5870 || 431 || 2432 || DP || 17 || 544 || 3 10 4 11 == Source code ==