How can I make my pthreads execute a function each time they are rescheduled by the kernel?
I need to identify on which physical CPU/socket (not logical core) my thread is being scheduled at and cannot afford to do this all the time.
Can the wakeup routine be hooked somehow to make the necessary updates to TLS only when the thread is actually being rescheduled?
As to why I need this: I have code which executes AMOs appx every 70ns per thread which is fine if the address is not cached on another socket, deploying the same code on two sockets gives a 15 times performance impact because of frequent cache invalidations. I intend to allocate memory especially for this which is only shared among threads running the same L3 cache. So I need to identify on which socket I am running and address the correct memory block. I could obviously call sched_getcpu and compare this to the physical CPU ID in /proc/cpuinfo, but this is a rather big overhead. I cannot afford to allocate thread-private memory for each thread though, too expensive.
cpuid2xAPIC field can be used for that... – Sergey L. Nov 19 '12 at 17:33getcpu()syscall that underliessched_getcpu()(you can also call it directly) is implemented as a vsyscall, so it can be very fast - it does not have to go to kernel mode. Reading/proc/cpuinfois obviously slow, but you could read that just once at startup and cache the logical->physical translation in a small array. – caf Nov 20 '12 at 3:16