Skip to main content

Questions tagged [hyperthreading]

Filter by
Sorted by
Tagged with
8 votes
1 answer
758 views

I have a Threadripper 3970x that has 32 cores and 64 threads. I installed Linux and the kernel shows SMT as being "notsupported": root@services:~# cat /sys/devices/system/cpu/smt/control ...
JackCarmichael's user avatar
3 votes
2 answers
808 views

I am using whisper.cpp to transcribe some sound files. It is a very CPU heavy process so I try to find some optimal settings and therefore I have done some tests with the thread setting (-t) but the ...
d-b's user avatar
  • 2,077
3 votes
0 answers
353 views

Suppose I have an 18 core CPU with SMT enabled, and there are 18 long runnning processes, all using ~100% of a thread. If I start a 19th process, the kernel will schedule it to run on one of the cores,...
uLoop's user avatar
  • 141
0 votes
1 answer
723 views

I have a Ryzen 3 3200g and, when I do lscpu in a Linux Mint 20.1 Cinnamon OS terminal, the output says that I only have 1 thread per core. The Windows system's info accurately recognizes that my CPU ...
Vitor_figm's user avatar
1 vote
1 answer
717 views

In Solaris, how we can find the status or check hyper-threading or multi-threading is enabled or not using commands?
sandeep's user avatar
  • 11
3 votes
1 answer
873 views

The following is what I am doing to tell whether a processor does support HT or not, regardless of whether it is enabled or disabled: # dmidecode -t processor | grep "Hardware Thread" | wc -l If ...
Raulinbonn's user avatar
3 votes
1 answer
155 views

I have some i7-4700EQ based embedded server systems that require hyperthreading. All is good except that, on rare occasions, the hyperthreading flag in CMOS gets set to disabled. While the hardware ...
Hugh McCurdy's user avatar
2 votes
0 answers
2k views

I know it should be a simple matter of grep -wl ht /proc/cpuinfo but that's not always accurate. I have an i5-7440HQ CPU which doesn't support hyper-threading (Intel, WikiPedia, and my BIOS agree on ...
TheAmigo's user avatar
  • 383
-1 votes
1 answer
192 views

Are there UNIX variants or other OS which make user level threads visible to OS kernel ?
bawejakunal's user avatar
11 votes
1 answer
19k views

The CPU is a [email protected]. It has 4 cores and each core has 2 threads. Here is the dmidecode output: # dmidecode -t 4 # dmidecode 2.9 SMBIOS 2.7 present. Handle 0x0042, DMI type 4, 42 bytes ...
Chris Tsui's user avatar
0 votes
2 answers
513 views

We've currently bought a new server, with 64 GB of RAM and 8 cores with hyperthreading support. We are going to build a system using: nginx. apache. mysql. php So, the question is about performance: ...
SPIRiT_1984's user avatar
1 vote
1 answer
4k views

I'm running Oracle 10 on a blade450 g6. I have hyper-threading turned on but I have heard several people say that Oracle databases don't play well with it. Are there specific performance or ...
Joe's user avatar
  • 11
3 votes
1 answer
1k views

When I enable hyperthreading, CPU size and capacity decrease to about half the non-hyperthreaded value. Since most of my processes use only two cores, should I disable hyperthreading? lshw -C ...
Raphael Calmon's user avatar
7 votes
1 answer
5k views

I use a i5-2410M processor, which is setup to do hyperthreading by default on my laptop. Considering that this is a 2-core processor, this means it can do 4 threads at a time. This also means that ...
tshepang's user avatar
  • 67.7k
13 votes
3 answers
4k views

I understand that Σ(%CPU) ≤ logicalcores*(1+ε) (where ε is measure and rounding error). But, how can I have on a 2 core system 2 different processes, each taking 200% of CPU (as measured by htop)? ...
Maja Piechotka's user avatar