| 39 | } |
| 40 | #endif |
| 41 | double cpuSecond() |
| 42 | { |
| 43 | struct timeval tp; |
| 44 | gettimeofday(&tp,NULL); |
| 45 | return((double)tp.tv_sec+(double)tp.tv_usec*1e-6); |
| 46 | |
| 47 | } |
| 48 | void initialData(float* ip,int size) |
| 49 | { |
| 50 | time_t t; |
nothing calls this directly
no test coverage detected