The hyperthreading tag has no wiki summary.
0
votes
2answers
44 views
hyperthreading and turbo boost in matrix multiply - worse performance using hyper threading
I am tunning my GEMM code and comparing with Eigen and MKL. I have a system with four physical cores. Until now I have used the default number of threads from OpenMP (eight on my system). I assumed ...
0
votes
1answer
45 views
Do I need Hyper Threading for developing on windows phone 8?
I want to figure out, whether my PC is able to start the windows phone 8 emulator.
SLAT (Second Level Address Translation) and DEP (Data Execution Prevention) is possible/available on my PC. I used ...
7
votes
2answers
118 views
Processor count reliability
I'm making an Android game and the performance difference between single core phones such as Galaxy S and dual-core Galaxy S2 is comparable to night and day. Thus instead of making different versions ...
2
votes
1answer
48 views
Is there a task scheduler that is well-suited for floating-point calculations on processors with hyper-threading?
I would like to use TPL to manage calls into Intel IPP or MKL libraries. Naturally, these are floating-point compute-intensive instructions. Since Hyper-Threading only assigns one floating-point ...
1
vote
1answer
94 views
Is CPU time relevant to Hyperthreading?
Is increased CPU time (as reported by time CLI command) indicative of inefficiency when hyperthreading is used (e.g. time spent in spinlocks or cache misses) or is it possible that the CPU time is ...
1
vote
1answer
155 views
How to make maximum benefit from Hyper-Threading in .Net
Not sure if that is even possible in a managed language, but is it possible to actually make an application perform better in the presence of hyper threading ?
Is there something specific that can be ...
0
votes
1answer
211 views
Difference b/w hyper threading and multithreading?
I was wondering if someone could explain me the difference b/w these two ? Has it something to do with intel hardware architecture (HT) ?
0
votes
1answer
126 views
Disable Hyperthreading online
I have an Ubuntu server which has the following attributes ( snapshot)
processor : 23
vendor_id : GenuineIntel
cpu family : 6
model : 44
model name : Intel(R) Xeon(R) ...
0
votes
0answers
67 views
Intel Hyper-Threading Technology computational throughput
Intel Hyper-Threading Technology delivers two processing threads per physical core for a total of four threads for massive computational throughput. This 4-way multi-task processing allows each core ...
2
votes
1answer
95 views
Determining the independent CPU's (specified with affinity ID's) for building ATLAS
I'm trying to determine the independent CPU's (specified with affinity ID's) for building ATLAS on a linux machine with 4 Intel CPU's with hyperthreading (ubuntu 12.04).
The reason I'm doing this is ...
5
votes
1answer
321 views
CPU/Intel OpenCL performance issues, implementation questions
I have some questions hanging in the air without an answer for a few days now. The questions arose because I have an OpenMP and an OpenCL implementations of the same problem. The OpenCL runs perfectly ...
2
votes
2answers
298 views
python how to find out whether hyperthreading is enabled
I have Intel i7-2600K quadcore, with hyperthreading enabled on Ubuntu 12.04. I know that I can find out how many cores I have in Python with import multiprocessing; multiprocessing.cpu_count(), but ...
0
votes
1answer
106 views
Intel IPP library requirements
So I am trying to compile an Intel IPP sample application that comes with the library -- string matching --, and I don't seem be able to leverage the IPP instructions. The computational time stays the ...
0
votes
2answers
142 views
About Adaptive Mode for L1 Cache in Hyper-threading
I'm a student doing some research on Hyper-threading recently. I'm a little confused about the feature - L1 Data Cache Context Mode.
In the architecture optimization manual, it was described that L1 ...
1
vote
2answers
622 views
assign two MPI processes per core
How do I assign 2 MPI processes per core?
For example, if I do mpirun -np 4 ./application then it should use 2 physical cores to run 4 MPI processes (2 processes per core). I am using Open MPI 1.6. I ...
0
votes
0answers
106 views
how to specify the number of logical process
I have an application built on MPI. The application is running on a machine, which has 8 cores (hyper threading enabled) with openMPI 1.6 installed.
If I run the application using this command ...
0
votes
1answer
53 views
hyper-threadomg configuration
Suppose I have a machine, which has 2 x Intel Xeon x5550 quad-core processors (total 8 core).
Hyper-threading is enabled.
I want to run an application on 4 cores (4 threads) with 2 physical cores ...
10
votes
5answers
620 views
Is it possible to check in Java if the CPU is hyper threading?
I would like to know the optimal number of threads I can run. Normally, this equals to Runtime.getRuntime().availableProcessors().
However, the returned number is twice as high on a CPU supporting ...
0
votes
2answers
170 views
Cores and hyperthreading
I'm writing an extremely optimized and CPU-intensive multithreaded code in C which performs a task in a more or less limited time space. During this time it does not venture out of its L1 cache except ...
0
votes
0answers
70 views
Query regarding disabling Hyperthreading on Intel compiler
I was wondering if there is any difference between disabling the hyperthreading option completely and manually forcing no hyperthreading using the numactl oprions. (--cpubind, --membind)
I was just ...
1
vote
1answer
217 views
Disable Hyperthreading in Mac-pro 2008 from EFI?
Is there a way of disabling HT at a firmware level (EFI) ??
I have a server-linux distribution and a macosx both installed in a mac-pro 2008 workstation.
Searching in google, i came up with the EFI ...
5
votes
1answer
416 views
Disable hyperthreading vs. changing ProcessorAffinity?
I have noticed that several of my multi-threaded calculations run faster if I disable hyper-threading in the BIOS.
I have also learnt that I can programmatically disable the (logical) CPU:s by ...
0
votes
3answers
2k views
Single-CPU programs running on Hyper-Threading-enabled quadcore CPU
I'm a researcher in statistical pattern recognition, and I often run simulations that run for many days. I'm running Ubuntu 12.04 with Linux 3.2.0-24-generic, which, as I understand, supports ...
3
votes
1answer
2k views
Why does the performance become bad after enabling hyperthread?
I port Linux kernel 2.6.32 to Intel(R) Xeon(R) CPU E31275 @ 3.40GHz. If I enable hyperthread in BIOS, I can see 7 CPU cores (CPU0 ~ CPU7). Most of interrupts occur in CPU 4, and the CPU usage of this ...
4
votes
1answer
253 views
Why does Hyper-threading get reported as supported on processors without it?
I'm trying to gather system information and noticed the following on an Intel Xeon E5420:
After executing CPUID(EAX=1), EDX[28] is set, indicating Hyper-threading support, despite the fact that the ...
2
votes
4answers
491 views
How to make my i7 processor reach 100% usage with this code (fastest way to parse xml)
How to make my i7 processor reach 100% usage with this code? Is there something special that happens in the XmlDocument? is just because of the context change? and if so why putting more threads ...
0
votes
2answers
266 views
Can hyperthreading effect atomicity of 32-bit int read/write on a 32-bit processor?
I have read somewhere that hyperthreading can make 32-bit int (on a 32-bit processor) read and write non-atomic even when it is boundary aligned. Can anyone explain how hyperthreading effects this?
...
2
votes
4answers
1k views
Should I disable HyperThreading to run parallel simulations?
My computer has a quadcore i7 processor. I'm studying parallelization of scientific simulations. How does hyperthreading impact on parallel performances? I know I should never use more than 4 working ...
1
vote
0answers
106 views
Which tool can show if my CPU supports hyperthread or not? [closed]
I want to do some hyperthread stuff. I am wondering any tool can show if my CPU is hyperthread structure or not? Can CPU-Z do it?
4
votes
2answers
1k views
Can two processes simultaneously run on one CPU core?
Can two processes simultaneously run on one CPU core, which has hyper threading? I learn from the Internet. But, I do not see a clear straight answer.
Edit:
Thanks for discussion and sharing! My ...
1
vote
0answers
446 views
Which is the best processor for mobile emulators like Android and Windows Mobile? [closed]
I am using Intel-i3 processor for android development.Emulator is really sluggish.Let me know whether Android emulators will use the full functionality of hyper threading.Now i am planning to buy a ...
3
votes
3answers
551 views
Running simulation with hyperthreading doubles runtime
I use a simulation written in python/numpy/cython.
Since i need to average over many simulation runs i use the multiprocessing module to run all the individual simulation runs in batches.
At the ...
0
votes
2answers
938 views
How can I query the number of physical cores from MATLAB?
Does anyone know of a way to query the number of physical cores from MATLAB? I would specifically like to get the number of physical rather than logical cores (which can differ when hyperthreading is ...
0
votes
2answers
977 views
JVM + Linux + Intel's Hyperthreading =
I noticed that JVM threads run as processes under Linux for some reasons (correct me if I'm wrong). Furthermore, it is a fact that Intel's Hyperthreading provides additional parallelization only for ...
2
votes
1answer
410 views
Why is a thread's status running but it doesn't use any CPU?
Today I found a very strange problem.
I ran Redhat Enterprise Linux 6, and the CPU was Intel E31275 (4 cores, 8 threads). I found one kernel thread (I called it as my_thread) didn't work correctly.
...
1
vote
4answers
613 views
How to implement affinity on multi-core HT with topological considerations in a C++ program?
I'm developing some C++ multi-core programs with a variable number of threads and I'd like to know how to set a proper (actually "the best") affinity. I use Boost-threads, so I can call ...
2
votes
1answer
223 views
How to find physical and logical core number in a kernel module?
Are there kernel functions in Linux that would return the number of the physical core and
logical core (in case of Hyperthreading) on which a kernel module is running ?
1
vote
2answers
3k views
Linux find out Hyper-threaded core id
I spent this morning trying to find out how to determine which processor id is the hyper-threaded core, but without luck.
I wish to find out this information and use set_affinity() to bind a process ...
0
votes
0answers
211 views
Hyperthreading performance and game servers
I have a hard time finding some hard facts about it, and I can't really run any benchmarks myself, so I figured I'd ask here:
Can hyperthreading decrease performance on a machine that runs several ...
2
votes
4answers
2k views
Visual Studio 2010, Maximum Concurrent C++ Compilations for Hyper-Threaded Processors
I am trying to optimise the compilation time of a large VC++ project.
My processor is a Core i7 950 (4 Cores, 8 Threads since it supports Intel Hyper-Threading Technology).
In Microsoft Visual Studio ...
1
vote
3answers
709 views
Is hyperthreading working?
I'm running some fairly processor-intensive stuff on my PC, and notice my CPU usage looks pretty odd. My PC is a quad-core i7-870, which supposedly has eight virtual cores.
I'm using the Task Parallel ...
1
vote
0answers
139 views
How much hardware duplication exists for hyperthread logical processors? [closed]
With a single physical processor, which is hyperthreaded into two logical processors, how much CPU-internal hardware (adders, shifters, etc) is duplicated for the logical processors?
I know they ...
0
votes
1answer
211 views
Indy Sockets gradually slows down on hyper threaded machines
This is a long shot but maybe someone has an idea. I am using IndySockets, a library that extends .Net sockets classes in a multithreaded (20-25 threads) web crawling application. The app is run on a ...
0
votes
0answers
433 views
Explain how intel Hyper Threading technology works? [closed]
I want to know how intel hyper thread technology works i.e how multiple threads are running simultineously.....
1
vote
2answers
107 views
I need a short C programm that runs slower on a processor with HyperThreading than on one without it
I want to write a paper with Compiler Optimizations for HyperTreading. First step would be to investigate why a processor with HyperThreading( Simultaneous Multithreading) could lead to poorer ...
11
votes
3answers
2k views
Hyper-threading… made my renderer 10 times slower!
Executive summary:
How can one specify in his code that OpenMP should only use threads for the REAL cores, i.e. not count the hyper-threading ones?
Detailed analysis: Over the years, I've coded a ...
9
votes
5answers
1k views
Dual-Core Hyperthreading: Should I use 4 threads or 3 or 2?
If you're spawning multiple threads (or processes) concurrently, is it better to spawn as many as the number of physical processors or the number of logical processors, assuming the task is CPU-bound? ...
2
votes
1answer
350 views
Programmically detect hyperthread-enabled CPU?
How can my win32 app programmically determine if it is running on a machine with CPU with hyperthread technology?
0
votes
1answer
508 views
Testing on a single-core PC with hyperthreading
If a multithreaded program runs safe on a single-core CPU with hyperthreading, will it also run safe on a dual-core CPU with hyperthreading? Concerning thread-safety etc.
EDIT
Ok, I try to be more ...
5
votes
4answers
3k views
Turning off Hyper-Threading in 6-core Intel Xeon
We got a 12-core MacPro to do some Monte Carlo calculations. Its Intel Xeon processors have Hyper-Threading (HT) enabled, so in fact there should be 24 processes running in parallel to make them fully ...
