Comment by wtallis

Comment by wtallis a year ago

5 replies

Your processor has two P cores, and ten cores total, not twelve. The HyperThreading (SMT) does not make the two P cores into four cores. Your experiment with 4 threads will most likely result in using both P cores and two E cores, as no sane OS would double up threads on the P cores before the E cores were full with one thread each.

jeffbee a year ago

I am sure rwmj was smart enough to use `taskset` to make this experiment meaningful.

  • rwmj a year ago

    Hehe, if only :-( However I do want to know what's best with the default Linux scheduler and just using 'make' rather than more complicated commands.

rwmj a year ago

The hyperthreading should cover up memory latency, since the workload (compiling qemu) might not fit into L3 cache. Although I take your point that it doesn't magically create two core-equivalents.

  • gonzo a year ago

    “Hyperthreading” is a write pipe hack.

    If the core stalls on a write then the other thread gets run.

    • atq2119 a year ago

      It's much more than that. It also allows one thread to make progress while the other is waiting for memory loads, or filling in instruction slots while the other thread is recovering from a branch mispredict.

      Compilers tend to do a lot of pointer chasing and branching, so it's expected that they would benefit decently from hyperthreading.