| 55 | } |
| 56 | } |
| 57 | void initialData_int(int* ip, int size) |
| 58 | { |
| 59 | time_t t; |
| 60 | srand((unsigned)time(&t)); |
| 61 | for (int i = 0; i<size; i++) |
| 62 | { |
| 63 | ip[i] = int(rand()&0xff); |
| 64 | } |
| 65 | } |
| 66 | void printMatrix(float * C,const int nx,const int ny) |
| 67 | { |
| 68 | float *ic=C; |
nothing calls this directly
no outgoing calls
no test coverage detected