Dell Inspiron 620 を使用しています。システム コントロール パネルには、1 Intel i3-2100 と表示されています。Intel によると ( http://ark.intel.com/products/53422/ )、2 つのコアと 4 つのスレッドがあります。3 つの質問: システム環境変数では、no_of_processors=4; それで、それは4つのスレッドですか?
コアに関しては、このコードを実行すると:
// get a list of all processor devices
deviceList = SetupDiGetClassDevs(ref processorGuid, "ACPI", IntPtr.Zero, (int)DIGCF.PRESENT);
// attempt to process each item in the list
for (int deviceNumber = 0; ; deviceNumber++)
{
SP_DEVINFO_DATA deviceInfo = new SP_DEVINFO_DATA();
deviceInfo.cbSize = Marshal.SizeOf(deviceInfo);
// attempt to read the device info from the list, if this fails, we're at the end of the list
if (!SetupDiEnumDeviceInfo(deviceList, deviceNumber, ref deviceInfo))
{
deviceCount = deviceNumber - 1;
break;
}
}
コア数は 2 ではなく 3 です。
また、このシステムが適切にサポートするスレッド数に関しては、コア x プロセッサでしょうか?
ありがとう。