Tagged Questions
The parallel-programming tag has no wiki summary.
41
votes
22answers
3k views
What parallel programming model do you recommend today to take advantage of the manycore processors of tomorrow?
If you were writing a new application from scratch today, and wanted it to scale to all the cores you could throw at it tomorrow, what parallel programming model/system/language/library would you ...
29
votes
11answers
3k views
I'm trying to learn C, but what I am missing? Wow, are these books old
I'm a physicist by degree, and I'm working in a computational biophysics lab where everything is written in old school C, so I've been furiously scrambling (with my mind) to keep up and learn some C. ...
22
votes
3answers
2k views
Is parallel programming == multithread programming?
Is parallel programming == multithread programming?
21
votes
1answer
1k views
Is there an equivalent to 'continue' in a Parallel.ForEach?
I am porting some code to Parallel.ForEach
and got an error with a continue I have in the code. Is there something equivalent I can use in a Parallel.ForEach functionally equivalent to 'continue' in a ...
17
votes
2answers
301 views
How do memory fences work?
I need to understand memory fences in multicore machines. Say I have this code
Core 1
mov [_x], 1; mov r1, [_y]
Core 2
mov [_y], 1; mov r2, [_x]
Now the unexpected results without memory ...
17
votes
4answers
3k views
Coordinating parallel execution in node.js
The event-driven programming model of node.js makes it somewhat tricky to coordinate the program flow.
Simple sequential execution gets turned into nested callbacks, which is easy enough (though a ...
16
votes
1answer
550 views
How do I replace the fork join pool for a Scala 2.9 parallel collection?
I've been looking at the new scala 2.9 parallel collections, and hoping to abandon a whole lot of my crufty amateur versions of similar things. In particular, I'd like to replace the fork join pool ...
16
votes
2answers
606 views
Writing a parallel programming framework, what have I missed?
Clarification: As per some of the comments, I should clarify that this is intended as a simple framework to allow execution of programs that are naturally parallel (so-called embarrassingly parallel ...
14
votes
2answers
617 views
Why do we need 'seq' or 'pseq' with 'par' in Haskell?
I'm trying to understand why we need all parts of the standard sample code:
a `par` b `pseq` a+b
Why won't the following be sufficient?
a `par` b `par` a+b
The above expression seems very ...
14
votes
2answers
2k views
How to create an async method in C# 4 according to the best practices?
Consider the following code snippet:
public static Task<string> FetchAsync()
{
string url = "http://www.example.com", message = "Hello World!";
var request = ...
12
votes
6answers
2k views
“Parallel.For” for Java?
I was wondering if there is a Parallel.For equivalent to the .net version for Java?
If there is could someone please supply an example? thanks!
Jamie
12
votes
6answers
2k views
Parallel programming patterns for C#?
With Intel's launch of a Hexa-Core(6) processor for the desktop, it looks like we can no longer wait for Microsoft to make many-core programming "easy". I just order a copy of Joe Duffy's book ...
12
votes
3answers
2k views
Parallel programming in C#
I'm interested in learning about parallel programming in C#.NET (not like everything there is to know, but the basics and maybe some good-practices), therefore I've decided to reprogram an old program ...
11
votes
5answers
392 views
Writing pseudocode for parallel programming
How do you write pseudo-code for parallel programming? Especially, how do you differentiate local and shared variables? How do you represent operations like scatter, gather, reduce, broadcast, and ...
11
votes
4answers
377 views
Python: Something like `map` that works on threads
I was sure there was something like this in the standard library, but it seems I was wrong.
I have a bunch of urls that I want to urlopen in parallel. I want something like the builtin map function, ...
10
votes
2answers
334 views
What is the state of OCaml's parallelization abilities?
I'm interested in using OCaml for a project, however I'm not sure about where its parallelization capabilities are anymore. Is there a message passing ability in OCaml? Is OCaml able to efficiently ...
10
votes
2answers
318 views
libstdc++ parallel mode: Who's using it? Is it safe? Any similar projects?
the GNU implementation of the C++ Library supports a parallel mode, explained here.
Any experiences in using it? Good ones? Bad ones? Especially regarding correctness, but also performance.
Are ...
10
votes
2answers
835 views
How do i write tasks? (parallel code)
I am impressed with intel thread building blocks. I like how i should write task and not thread code and i like how it works under the hood with my limited understanding (task are in a pool, there ...
10
votes
16answers
779 views
Advice on starting a large multi-threaded programming project
My company currently runs a third-party simulation program (natural catastrophe risk modeling) that sucks up gigabytes of data off a disk and then crunches for several days to produce results. I will ...
9
votes
3answers
1k views
Scala analogues of QtConcurrent
What are the analogues of QtConcurrent for Scala (or Java)? Ie simplified implementation of MapReduce, the parallel map and foldl.
Thank you
9
votes
4answers
924 views
STL algorithms and concurrent programming
Can any of STL algorithms/container operations like std::fill, std::transform be executed in parallel if I enable OpenMP for my compiler? I am working with MSVC 2008 at the moment.
Or maybe there are ...
8
votes
2answers
133 views
Using Parallel Linq Extensions to union two sequences, how can one yield the fastest results first?
Let's say I have two sequences returning integers 1 to 5.
The first returns 1, 2 and 3 very fast, but 4 and 5 take 200ms each.
public static IEnumerable<int> FastFirst()
{
for (int i = 1; ...
8
votes
6answers
236 views
How to do hardware independent parallel programming?
These days there are two main hardware environments for parallel programming, one is multi-threading CPU's and the other is the graphics cards which can do parallel operations on arrays of data.
The ...
8
votes
2answers
171 views
OpenMP: are local variables automatically private?
#pragma omp parallel
{
int x; // private to each thread ?
}
#pragma omp parallel for
for (int i=0; i<1000; ++i)
{
int x; // private to each thread ?
}
Thank you!
P.S. If local variables ...
8
votes
5answers
579 views
JVM (embarrasingly) parallel processing libraries/tools
I am looking for something that will make it easy to run (correctly coded) embarrassingly parallel JVM code on a cluster (so that I can use Clojure + Incanter).
I have used Parallel Python in the ...
7
votes
1answer
146 views
Using more than one GPU in matlab
this is the output of ginfo using Jacket/matlab:
Detected CUDA-capable GPUs:
CUDA driver 270.81, CUDA toolkit 4.0
GPU0 Tesla C1060, 4096 MB, Compute 1.3 (single,double) (in use)
GPU1 Tesla C1060, ...
7
votes
1answer
129 views
Parallel depth-first search in Erlang is slower than its sequential counterpart
I am trying to implement a modified parallel depth-first search algorithm in Erlang (let's call it *dfs_mod*).
All I want to get is all the 'dead-end paths' which are basically the paths that are ...
7
votes
2answers
192 views
Stack overflow in CUDA
I have a huge problem with the code I am programming.
I am not an expert, and i asked many people before coming here. corrected a lot of things, too. So, I guess I am ready to show you the code and ...
7
votes
1answer
152 views
Parallel.ForEach iterating items in collection multiple times
I have a Parallel.ForEach running inside a Task. It iterates over a collection of email addresses and sends a MailMessage to the SMTP queue, once it's sent it updates a table in the DB with a result.
...
7
votes
1answer
560 views
parallel foreach loop - odd behavior
The code below simply creates a List> of random numbers and then calculates the cumulative sum of each list in a parallel foreach loop. Why do I get less than 'numLists' evaluations? Often around ...
7
votes
7answers
699 views
sorting 50 000 000 numbers
Suppose, that we need to sort 50 000 000 numbers. suppose, that the numbers is stored in a file. What is the most efficient algorithm for solving this problem? Parallel algorithm for sorting...
How ...
7
votes
2answers
815 views
Parallel Processing in python
Whats a simple code that does parallel processing in python 2.7? All the examples Ive found online are convoluted and include unnecessary codes.
how would i do a simple brute force integer factoring ...
7
votes
9answers
418 views
Game of life : how to have “entities” to evolve in parallel?
Ok the title is not clear, here is what I mean.
I am programming some kind of game (like the game of life). For example, there are animals (each animal is a Java instance of a class).
All these ...
7
votes
1answer
824 views
How exactly do MbUnit's [Parallelizable] and DegreeOfParallelism work?
I thought I understood how MbUnit's parallel test execution worked, but the behaviour I'm seeing differs sufficiently much from my expectation that I suspect I'm missing something!
I have a set of UI ...
7
votes
4answers
1k views
deciding between subprocess, multiprocessing and thread in Python?
I'd like to parallelize my Python program so that it can make use of multiple processors on the machine that it runs on. My parallelization is very simple, in that all the parallel "threads" of the ...
7
votes
2answers
809 views
Is LLVM suitable for parallel languages?
What properties of LLVM makes it good choice for implementation of (parallel, concurrent, distributed)-oriented language, what makes it bad?
7
votes
8answers
660 views
What are the developments going on in all languages in parallel programming area
As we are nearing the 8-Core and 16-Core CPUs, what are the various advances going on in parallel programming area in all the languages?
I am aware of a parallel task library in .Net, and also of a ...
6
votes
5answers
140 views
How to properly parallelise job heavily relying on I/O
I'm building a console application that have to process a bunch of data.
Basically, the application grabs references from a DB. For each reference, parse the content of the file and make some ...
6
votes
5answers
145 views
Is it possible to fork/exec and guarantee one starts before the other?
Pretty much as the title says. I have a snippet of code that looks like this:
pid_t = p;
p = fork();
if (p == 0) {
childfn();
} else if (p > 0) {
parentfn();
} else {
// error
}
I ...
6
votes
4answers
301 views
Parallel tree traversal in C#
I need to traverse a tree quickly, and I would like to do it in parallel. I'd rather use the parallel extensions than manually spin up a bunch of threads.
My current code looks something like this:
...
6
votes
2answers
155 views
Why is it bad to pause/abort threads?
My model of how threads work is that some ThreadManager gives each thread a turn. When it's a thread's turn, it gets to execute a few lines of code.
To pause a thread, couldn't one just have the ...
6
votes
1answer
600 views
Any Lisp extensions for CUDA?
I just noted that one of the first languages for the Connection-Machine of W.D. Hillis was *Lisp, an extension of Common Lisp with parallel constructs. The Connection-Machine was a massively parallel ...
6
votes
1answer
294 views
OpenMP with OCAML
There's someone that know if is possible use OpenMP with an a OCaml source code?
Or another application/ambient of work, compatible with OCaml, that allow me to run parallel programs that exploit ...
6
votes
5answers
256 views
Best ways to write a method that updates two objects in a multithreaded java environment?
Suppose we have a class called AccountService that manages the state of accounts.
AccountService is defined as
interface AccountService{
public void debit(account);
public void credit(account);
...
6
votes
2answers
688 views
Ideas for student parallel programming project
I'm looking to do a parallel programming project in C (probably using pthreads or maybe OpenMP) for a class. It will done by a group of about four students, and should take about 4 weeks. I was ...
6
votes
2answers
309 views
Haskell speculative parallel execution
I am thinking about exploiting parallelism for one problem I am trying to solve. The problem is roughly this: given input (sequence of points) find a best output (biggest triangle composed from these ...
6
votes
3answers
267 views
Trying to know why the OpenMP code does not parallelise
I just started learning how to use OpenMP. I am trying to figure out why the following code does not run in parallel with Visual Studio 2008. It compiles and runs fine. However it uses only one core ...
6
votes
3answers
2k views
Difference between multithreaded and parallel programming
Is there a difference between multithreaded and parallel programming?
If related (which I guess they are) is parallel programming the successor of multithreaded programming in terms of terminology?
...
6
votes
7answers
1k views
Parallelization: What causes Java threads to block other than synchronization & I/O?
Short version is in the title.
Long version:
I am working on a program for scientific optimization using Java. The workload of the program can be divided into parallel and serial phases -- parallel ...
5
votes
2answers
90 views
Can we speed-up CPU intensive tasks in java?
Task like finding factorial of 2000 where using BigInteger is a CPU-intensive task, is there anyway to speed-up such processes?
Ex: finding 2000!
Since it is a single task only, i think there is no ...