Tagged Questions
The rdtsc tag has no wiki summary.
10
votes
4answers
3k views
rdtsc accuracy across CPU cores
I am sending network packets from one thread and receiving replies on a 2nd thread that runs on a different CPU core. My process measures the time between send & receive of each packet (similar ...
5
votes
4answers
196 views
rdtsc, too many cycles
#include <stdio.h>
static inline unsigned long long tick()
{
unsigned long long d;
__asm__ __volatile__ ("rdtsc" : "=A" (d) );
return d;
}
int main()
{
long ...
4
votes
3answers
240 views
Variance in RDTSC overhead
I'm constructing a micro-benchmark to measure performance changes as I experiment with the use of SIMD instruction intrinsics in some primitive image processing operations. However, writing useful ...
3
votes
1answer
72 views
cpp linux: about rdtsc
I'm using the following function in my code:
static __inline__ unsigned long long rdtsc(void){
unsigned long long int x;
__asm__ volatile (".byte 0x0f, 0x31" : "=A" (x));
return x;
}
Does ...
3
votes
5answers
124 views
Why does the first printf take longer?
I was playing around with high precision timers and one of my first tests was to use rdtsc to measure printf. Below is my test prpgram followed by its output. The thing I noticed is that the first ...
3
votes
3answers
290 views
Time Stamp Counter
I am using time stamp counter in my C++ programme by querying the register. However, one problem I encounter is that the function to acquire the time stamp would acquire from different CPU. How could ...
3
votes
2answers
595 views
How to benchmark on multi-core processors
I am looking for ways to perform micro-benchmarks on multi-core processors.
Context:
At about the same time desktop processors introduced out-of-order execution that made performance hard to ...
2
votes
2answers
94 views
Why is RDTSC a virtualized instruction on modern processors?
I am studying RDTSC and learning about how it is virtualized for the purposes of virtual machines like VirtualBox and VMWare. Why did Intel/AMD go to all the trouble of virtualizing this instruction?
...
2
votes
2answers
153 views
Accessing high Performance Counter in 16-bit Turbo Pascal
I'm trying to use the high performance counter in a 16-bit Turbo Pascal 7 program (don't ask...) running in a WinXP DOS box. I can execute the RDTSC instruction with inline $0F, $31 and the contents ...
1
vote
0answers
17 views
Coordinating Times From /sys/kernel/debug/tracing In Ubuntu
I am trying to gather data from multiple sources on an Ubuntu 10.10 machine programatically about a program's performance. For all of my other sources, I have been able to gather them using the RDTSC ...
1
vote
3answers
186 views
Equivalent of rdtsc opcode for PPC
I have an assembly program that has the following code.
This code compiles fine for a intel processor. But, when I use a PPC (cross)compiler, I get an error that the opcode is not recognized. I am ...
1
vote
2answers
207 views
How to detect if RDTSC returns a constant rate counter value?
It seems most newer CPUs from both AMD and Intel implement rdtsc as a constant rate counter, avoiding the issues caused by frequency changing as a result of things like TurboBoost or power saving ...
1
vote
7answers
252 views
How do I ensure my program runs from beginning to end without interruption?
I'm attempting to time code using RDTSC (no other profiling software I've tried is able to time to the resolution I need) on Ubuntu 8.10. However, I keep getting outliers from task switches and ...
0
votes
1answer
20 views
Read rdtsc in Python
Is there any way to read out the timestamp-counter on x86 CPUs in Python?
I know that using rdtscp is bad and using rdtsc is even worse. But trust me I really need that value, or at least some ...