MCPcopy Create free account
hub / github.com/AdvancedCompiler/AdvancedCompiler / Print_matrix

Function Print_matrix

code/Chapter11/mympi.h:100–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

98 }
99}
100void Print_matrix(data_t *matrix,int m,int n){
101 int i,j;
102 for(i=0;i<m;i++){
103 for(j=0;j<n;j++){
104 printf("%f ",matrix[i*n+j]);
105 }
106 printf("\n");
107 }
108 printf("----------------------------------\n");
109}
110void Verify_matrix_c(data_t *A,data_t *B,data_t *C,int m1,int n1,int n2){
111 data_t *matrixPool;
112 int i;

Callers 1

Verify_matrix_cFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected