Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
2k views

Do You Recommend “The Art of Multiprocessor Programming?”

What is your opinion on The Art of Multiprocessor Programming, by Maurice Herlihy? Do you recommend it? Please do not downvote other's opinions; if you have a different opinion, just add it as ...
8
votes
1answer
2k views

Streaming multiprocessors, Blocks and Threads (CUDA)

What is the relationship between a CUDA core, a streaming multiprocessor and the CUDA model of blocks and threads? What gets mapped to what and what is parallelized and how? and what is more ...
6
votes
6answers
1k views

“Work stealing” vs. “Work shrugging”?

Why is it that I can find lots of information on "work stealing" and nothing on "work shrugging" as a dynamic load-balancing strategy? By "work-shrugging" I mean pushing surplus work away from busy ...
5
votes
3answers
828 views

How can I modify my perl script to use multiple processors?

Hi I have a simple script that takes a file and runs another Perl script on it. The script does this to every picture file in the current folder. This is running on a machine with 2 quad core Xeon ...
5
votes
4answers
179 views

How do threaded systems cope with shared data being being cached by different cpus?

I'm coming largely from a c++ background, but I think this question applies to threading in any language. Here's the scenario: We have two threads (ThreadA and ThreadB), and a value x in shared ...
4
votes
4answers
555 views

What can I do to make my C# application take advantage of multiple processor cores?

I've been doing some tests about the way a .NET C# application uses resources, like CPU or memory. I wrote some loops that calculate values for a large amount of numbers and I'm satisfied with the ...
3
votes
4answers
739 views

Stop reading process output in Python without hang?

I have a Python program for Linux almost looks like this one : import os import time process = os.popen("top").readlines() time.sleep(1) os.popen("killall top") print process the program hangs ...
3
votes
3answers
630 views

Force C# application to use a single core in a PC with a multicore processor

Hi guys this question might seem weird, but I'm using the Haptek People Putty player for my C# application and I've seen people say in the forums that it doesn't work well with a multicore processor. ...
3
votes
3answers
2k views

How to make WebLogic use all the processors on a multi processor machine

We noticed a peculiar behavior with Java/Web Logic on one of our multi-processor servers, yesterday, so wanted to get your thoughts on it. For some reason, Web Logic/Java use only one processor of ...
2
votes
5answers
80 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
5answers
4k views

Parallel coding Vs Multithreading (on single cpu)

can we use interchangeably "Parallel coding" and "Multithreading coding " on single cpu? i am not much experience in both, but i want to shift my coding style to any one of the above. As i found ...
1
vote
2answers
51 views

Determining the number of available cores on a machine?

I want my software to create one thread per core, obviously different Macs have a different number of cores. Does anyone know how to (programmatically, via Cocoa) determine the number of cores?
1
vote
2answers
452 views

Best Practise for Stopwatch in multi processors machine?

I found a good question for measuring function performance, and the answers recommend to use Stopwatch as follows Stopwatch sw = new Stopwatch(); sw.Start(); //DoWork sw.Stop(); //take sw.Elapsed ...
1
vote
1answer
130 views

Application crashing during string related operations in multi threaded and multiprocessor environment

The application is developed in VC++ 6.0. When this is run in a multithreaded and multiprocessor environment along with its dependent services one of the dependent services crashes when attempting ...
1
vote
4answers
497 views

Is Erlang designed only for running on a single multicore machine, or can you distribute the processes?

My app runs well on my quad-core machine. It is 'embarrasingly parallel', with about 100K processes, and thus nicely suited to run on a cluster of machines. However, I have trouble finding ...
0
votes
2answers
111 views

How locks are implemented on multiple cores

For a uni-processor, the lock algorithm is pretty simple. Lock(threadID) { Disable Interrupts If lock is already owned by same thread{ Restore Interrupts return } if lock is free { ...
0
votes
1answer
242 views

In a multithreaded app, would a multi-core or multiprocessor arrangement be better?

I've read a lot on this topic already both here (e.g., stackoverflow.com/questions/1713554/threads-processes-vs-multithreading-multi-core-multiprocessor-how-they-are or ...
0
votes
1answer
53 views

Does anyone have experience with clusters running on ClusterVisionOS?

I'm currently working on a cluster using the ClusterVisionOS 3.1. This will be my first time working with a cluster, so I probably haven't tried the "obvious". I can submit a single job to the ...
0
votes
3answers
575 views

java process is frozen(?) on linux

all. This is my first question on S.O. I have a very odd problem. Below is my problem... I write very simple method that write some text to a file. Of course it works well my machine(XP, 4CPU, ...
0
votes
1answer
189 views

interlocked operation on unanligned data

The win32 interlocked functions provide a mecanism for atomic operation on data. They are supposed to be thread-safe and multiprocessor-safe. What happen if the data is not aligned? the interlocked ...