Tagged Questions
7
votes
4answers
5k views
Programatically detect number of physical processors/cores or if hyper-threading is active on Windows, Mac and Linux
I have a multithreaded c++ application that runs on Windows, Mac and a few Linux flavours. To make a long story short: Inorder for it to run at maximum efficiency I have to be able to instantiate a ...
5
votes
1answer
890 views
Does GetSystemInfo (on Windows) always return the number of logical processors?
Reading up on this, and specifically reading the Microsoft docs, it looks like it should be returning the number of PHYSICAL processors, and that you should use GetLogicalProcessorInformation to ...
2
votes
2answers
374 views
CPU Numbering on a hypertheading enabled system
I am trying to find out how an OS (Windows, linux) assigns numbers to logical cpus in a Hyper threading enabled environment. ?
Does both the OSs first serially assign numbers to the Physical CPUs and ...