Changes between Version 19 and Version 20 of MatrixMultiply
- Timestamp:
- Jun 7, 2010 11:57:33 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MatrixMultiply
v19 v20 1 1 = Matrix Multiply on GPU = 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 (i.e. column major) and other is input matrix B in normal format (i.e. row major). Output matrix C is also row major. 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.2 We have implemented single/double precision matrix multiply program for RV770/Cypress. In our implementation, we use two input streams for computing C=AB. One is transposed input matrix A (i.e. column major) and other is input matrix B in normal format (i.e. row major). Output matrix C is also row major. 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 3 4 4 == Peformance Summary ==