Intel® Moderncode for Parallel Architectures
Support for developing parallel programming applications on Intel® Architecture.

time i nmicrosecond in itanium

karimfath
Beginner
213 Views

hello

i want mesure the time elapsed in segment of code but in itanium rdstc is not supported then the question .how can i evaluate time of execution of segment of code in itanium processor

thanks for help

0 Kudos
1 Reply
TimP
Honored Contributor III
213 Views
Quoting - karimfath

i want mesure the time elapsed in segment of code but in itanium rdstc is not supported then the question .how can i evaluate time of execution of segment of code in itanium processor

unsigned long result;
/* gcc-IA64 version */
__asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");
while (__builtin_expect ((int) result == -1, 0))
__asm__ __volatile__("mov %0=ar.itc" : "=r"(result) :: "memory");

0 Kudos
Reply