mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-05 19:55:56 +01:00
dpc++ didn't like rdtsc()
This commit is contained in:
parent
59c51d2c35
commit
7caed4edd9
@ -95,7 +95,8 @@ inline uint64_t cyclecount(void){
|
||||
}
|
||||
#elif defined __x86_64__
|
||||
inline uint64_t cyclecount(void){
|
||||
return __rdtsc();
|
||||
uint64_t ret = __rdtsc();
|
||||
return (uint64_t)ret;
|
||||
}
|
||||
#else
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user