Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
3answers
6k views

multi-CPU, multi-core and hyper-thread

Could anyone recommend me some documents to illustrate their differences please? I am always confused about the differents between multi-CPU, multi-core and hyper-thread, and pros/cons of each ...
11
votes
3answers
2k views

CPU Affinity

Is there a progamatic method to set CPU affinity for a process in c/c++ for the linux operating system.
8
votes
4answers
4k views

How can I get the CPU core number from within a user-space app (Linux, C)?

Presumably there is a library or simple asm blob that can get me the number of the current CPU that I am executing on.
5
votes
1answer
612 views

Running code on different processor (x86 assembly)

In real mode on x86, what instructions would need to be used to run the code on a different processor, in a multiprocessor system? (I'm writing some pre-boot code in assembler that needs to set ...
4
votes
2answers
270 views

does the linux kernel in an SMP system guarantee that UDP packets arriving from a network in order will be read from a socket in order?

on a project I am working on, we are seeing out-of-order issues in certain circumstances on a SMP system when we are reading a UDP stream from the network. We can see it arrives from the network in ...
3
votes
2answers
96 views

Is there a way to take advantage of multi-core when dealing with network connections?

When we doing network programming, no matter you use multi-process, multi-thread or select/poll(epoll), there is only one process/thread to deal with accept the connection on same port. And if you ...
3
votes
2answers
593 views

How could I know which core a process is running on?

I am currently working on a project about setting process to one core in linux environment. I use sched_setaffinity to do this job and I wonder whether there are some functions provided by linux to ...
3
votes
2answers
619 views

Is there a simple process-based parallel map for python?

I'm looking for a simple process-based parallel map for python, that is, a function parmap(function,[data]) that would run function on each element of [data] on a different process (well, on a ...
3
votes
2answers
546 views

Setting affinity in multicore x86 processors

( I ask because it was before serious SMP and multicore that I studied OS. I like to have some vision of how code is being executed. ) If I have a multicore x86 CPU booting directly into my program. ...
3
votes
3answers
112 views

Best hardware/software solution for parallel makes?

We've got a Linux-based build system in which a build consists of many different embedded targets (with correspondingly different drivers and featuresets enabled), each one built with another single ...
2
votes
5answers
79 views

What happens if two process in different processors try to acquire the lock at EXACTLY same time

Ok, so I am reading about synchronization, and I read through various algorithms such as spinlocks, semaphores, and mutex to avoid race condition. However, these algorithms can't prevent race ...
2
votes
7answers
1k views

What is the best way for interprocessor communication in Linux?

I have two CPUs on the chip and they have a shared memory. This is not a SMP architecture. Just two CPUs on the chip with shared memory. There is a Unix-like operating system on the first CPU and ...
1
vote
0answers
16 views

How are cpus enumerated/identified/counted by BIOS and other low-level routines? [migrated]

By what mechanism is a BIOS or a kernel able to "see" (enumerate,identify,whatever term is right) other CPUs in an SMP system? How is the boot CPU able to initialise and then "launch" the second or ...
1
vote
2answers
310 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 ...
1
vote
1answer
110 views

How to find the thread affinity in Linux other than using the affinity mask?

We have an embedded MIPS 2-core processor running SMP Linux (2.6.18). We are planning to assign the affinity of the main GUI threads to one of the two cores, and the other core used for driver/data ...
1
vote
2answers
128 views

Large RAM Requirements and Clusters/Clouds

This is really a bioinformatics question, but I'll make it as general as I can. Here's the semi-hypothetical situation: Let's say I have access to a cluster or even a cloud. I want to run some very ...
1
vote
1answer
215 views

Boost threads and non-existant speedups on Linux SMPs

I have written a small example C++ program, using boost::thread. Since it's 215 lines, I've posted it on pastebin instead http://pastebin.com/LRZ24W7D The program creates a large number of floats ...
1
vote
7answers
297 views

Highly concurrent multi-threaded application requires hardware

I am looking for a hardware, which must run about 256 computationally intensive real-time concurrent tasks in 24 hour mode (one multi-threaded C application). Each task takes about 40-50 MFLOPs, so ...
1
vote
4answers
674 views

Erlang Documentation/SMP: single-node and multi-node per machine or per application, and the confusion that may follow

I'm studying Erlang's process model at the moment. I have hit a snag in a tech report (section 3, paragraph 2) on Erlang: This explains why it in some cases can be more efficient to run several ...
1
vote
1answer
922 views

How do I tell the Hotspot JVM whether to use single or multi-processor thread-synchronization?

The Machine is Dual-Core, the OS uses a Multi-Processor kernel. In order to run some performance assessments, I want to set the thread-affinity of the JVM to a single core. However, I am worried that ...
0
votes
2answers
52 views

Is it possible for a child process created by fork() on Linux to run on a separate core in an SMP environment?

When calling fork(), what practices exist to ensure that the child process can run in parallel on a separate core?
0
votes
1answer
38 views

What is the expected overhead of a multi-process system compared to multi-threaded application?

For some operating systems (OpenBSD & ...) threads are userland-only and mostly exist for compatibility. Disregarding that type of implementation, how does the use of kernel-level threads compare ...
0
votes
1answer
262 views

Having Trouble with SMP (Strobe Media Playback)

I'm having some difficulties getting paths within SMP to work right. In the demo files, it includes an HTML file that works great when I just double click it. But when I move it elsewhere, say one ...
0
votes
0answers
42 views

how best to detect running on SGI UltraViolet (UV) machine?

What is the best way to detect that a script is running on an SGI UltraViolet shared memory machine? There is a /proc/sgi_uv/ directory I could test for, but I was looking for the definitive flag in ...
0
votes
1answer
370 views

Multithread and SMP Linux

The Linux Kernel is said to be SMP. It is said that processes and kernel threads shall be distributed across processors. Does all Linux distribution like fedora13, ubuntu 10.04 Lucid by default ...
0
votes
3answers
158 views

Java mutex with smp

I am learning multi-thread programming; and whilst practising mutex, I notice that it seems doesn't work correctly on my dule-core laptop. The mutex code is at http://pastebin.com/axGY5y3c The ...
0
votes
2answers
68 views

core at which function is running

consider a kernel tasklet scheduled and executing the tasklet function. Is there a way to know which core the tasklet is running ? I mean is there a function / variable to know at which core the ...
0
votes
2answers
701 views

Processor affinity settings for Linux kernel modules?

In Windows, I can set the processor affinity of driver code using KeSetSystemAffinityThread, and check which processor my code is running on using KeGetCurrentProcessorNumber. I'm trying to do ...
0
votes
3answers
394 views

How this pthread actually works?

I am actually on my project on compiler with SMP, and want to code with pthreads and heard about many parallel things open mpi and so on, So to start with how this thread is allocated to core while ...
0
votes
4answers
364 views

Why does block I/O completion take so long when crossing CPUs?

I am trying to squeeze the most performance out of a Linux block driver for a high-end storage device. One problem that has me a bit stumped at the moment is this: if a user task starts an I/O ...
0
votes
2answers
1k views

How to: quad core and dual quad core virtualization?

On top of a dual quad core physical host, I would like to run a single VM with 8 virtual CPU (if possible) or at least 4 virtual CPU - for the purpose of scientific computing. I have investigated ...