OpenMP timer doesn't work on inline assembly code?
- by Brett
I'm trying to compare some code samples for speed, and I decided to use the OpenMP timer since I'll eventually be multi threading the code.
The timer works great on two of my four code snippets, but not on the other two
start=omp_get_wtime();
/*code here*/
finish = omp_get_wtime() - start_time;
The four code here sections are serial code,…