| 95 | } |
| 96 | } |
| 97 | void Print_matrix(float *matrix,int m,int n){ |
| 98 | int i,j; |
| 99 | for(i=0;i<m;i++){ |
| 100 | for(j=0;j<n;j++){ |
| 101 | printf("%lf ",matrix[i*n+j]); |
| 102 | } |
| 103 | printf("\n"); |
| 104 | } |
| 105 | printf("----------------------------------\n"); |
| 106 | } |
| 107 | void Verify_matrix_c(float *A,float * B,float *C,int m1,int n1,int n2){ |
| 108 | float *matrixPool; |
| 109 | int i; |
no outgoing calls
no test coverage detected