-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Wrong id to pin threads on Cascade Lake #668
Comments
Here are the files: |
From the output, it seems that your runtime is starting one thread more than expected. LIKWID sees all threads (progress, library, shepherd threads, ...), not just the application level threads (OpenMP threads). Since you identified that HWThread 1 is not used, I would try to skip that one: A general remark to your system. The hwthread numbering is odd. All even numbered HWthreads are on socket 0 and all odd numbered one on socket 1. So Last remark: ENERGY counters exist only once per socket, so the first HWthread of a socket in your CPUset measures the energy, the other ones return zero. In your output hwthreads 0 and 1 are on different sockets, thus measure the energy. The hwthreads 2 and 3 do not measure it. |
In deed, If I run with the -s 0x1, for 0,2,4,6, I can see there are 4 threads running at 0,2,4,6. Is there an explanation why? I'm not sure to understand. |
Does it mean likwid defines/modifies some OpenMP env variables? |
LIKWID's pinning mechanism overwrites the LIKWID defines OpenMP environment variables but never modifies them. The user is always right, thus if you export |
Thanks for your explanations and remarks! |
Which OpenMP runtime are you using? The common ones (gomp and llvm/intel omp)? Can you provide the compiler version if GCC or Intel compiler? |
gcc (Debian 13.3.0-12) 13.3.0 and gomp |
Thx. I will check the version, it is currently not installed on our systems. I close the issue but feel free to re-open it if you encounter further related issues with LIKWID on your system. |
Describe the bug
Lets say I'm running
likwid-perfctr -C 0-3 -M 1 -g ENERGY ./bin/bt.B.x
. When monitoring cpu usage with htop, I can see 0,2 and 3 are working but not 1. I should see 1 working.Also whatever I choose (e.g. 10 threads, pinned from 0 to 9; 20 threads, 9-29), the second id is not working
To Reproduce / Env
Some debug outpuy from Likwid
Attached are the output of
likwid-topology -V 3
andlikwid-perfctr -V 3 -C 0-3 -M 1 -g ENERGY ./bin/bt.B.x
To reproduce
export OMP_NUM_THREADS=4
and
likwid-perfctr -C 0-3 -M 1 -g ENERGY ./bin/bt.B.x
The text was updated successfully, but these errors were encountered: