The big thing to keep in mind is this....

All threading either at the processor or in code will share a resource.  Heavy use by one process on a CPU core can effect any other process running on that core.  Heavy use on one CPU core will not effect the other cores. (sorta, as data bus issues can still occur).

Most processes use very little actual CPU.  So, between the OS and the multicores, modern computers can push allot of work through themselves.

That said, there are some processes that are highly comparative.  Multicores can actually slow down execution in these cases because any type of multiuse of a resource will encounter administrative overhead.  But these processes are the exception, not the rule.  If you have such needs, turn Hyperthreading off.  Generally leave it on, and the the hardware do its job.

Kevin


On Sep 7, 2016 1:36 PM, "Jerry Snitselaar" <dev@snitselaar.org> wrote:
On Tue Sep 06 16, Keith Smith wrote:


Hi,

If an Intel CPU has 4 cores and 8 threads will it look like 8 cores to VirtualBox when assigning resources to a guest?

If so is there a way to determine which is a tread and which is actually a core?

Thanks!!
Keith
---------------------------------------------------
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss

In addition to the answers already given, you can read
about it in Volume 1 of the Intel Software Developer's Manual,
section 2.2.8.

http://www.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html

As to your question, if you have a hyperthreaded CPU it will look like
multiple cores and there is no difference between them as far as
you're concerned.
---------------------------------------------------
PLUG-discuss mailing list - PLUG-discuss@lists.phxlinux.org
To subscribe, unsubscribe, or to change your mail settings:
http://lists.phxlinux.org/mailman/listinfo/plug-discuss