Parallel computation seeks to reduce the running times of programs by allowing many computations to be carried out simultaneously
73
votes
1answer
4k views
What's the status of multicore programming in Haskell?
What's the status of multicore programming in Haskell? What projects, tools, and libraries are available now? What experience reports have there been?
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 ...
20
votes
4answers
2k views
Performance considerations of Haskell FFI / C?
If using Haskell as a library being called from my C program, what is the performance impact of making calls in to it? For instance if I have a problem world data set of say 20kB of data, and I want ...
20
votes
11answers
2k views
Scalable / Parallel Large Graph Analysis Library?
I am looking for good recommendations for scalable and/or parallel large graph analysis libraries in various languages. The problems I am working on involve significant computational analysis of ...
19
votes
3answers
4k views
Parallel.ForEach() vs. foreach(IEnumerable<T>.AsParallel())
Erg, I'm trying to find these two methods in the BCL using Reflector, but can't locate them. What's the difference between these two snippets?
A:
IEnumerable<string> items = ...
...
18
votes
4answers
303 views
C# Asynchronous Options for Processing a List
I am trying to better understand the Async and the Parallel options I have in C#. In the snippets below, I have included the 5 approaches I come across most. But I am not sure which to choose - or ...
18
votes
2answers
2k views
How do I make an already written concurrent program run on a GPU array?
I have a neural network written in Erlang, and I just bought a GeForce GTX 260 card with a 240 core GPU on it. Is it trivial to use CUDA as glue to run this on the graphics card?
17
votes
2answers
239 views
How do I pass 2 lists into Parallel.ForEach?
How do I pass 2 lists into Parallel.ForEach?
Example:
List<Person> a = new List<Person>() { new Person(), new Person(), new Person() };
List<Car> b = new List<Car>() { new ...
17
votes
4answers
2k views
What is a “spark” in Haskell
I'm confused about the notion of "spark"
Is it a thread in Haskell? Or is the action of spawning a new thread ?
Thanks everybody:
So to summarize, sparks are not thread but more of unit of ...
16
votes
4answers
330 views
Are you using Parallel Extensions?
I hope this is not a misuse of stackoverflow; recently I've seen some great questions here on Parallel Extensions, and it got my interest piqued.
My question:
Are you using Parallel Extensions, and ...
16
votes
2answers
4k views
Can I use the task parallel library in a .Net 3.5 project?
I heard that the Task Parallel Library can be used in a .Net 3.5 project. Is this correct, and if yes, how do I use it? In .Net 4.0, it resides in System.Threading, but when I select .Net 3.5 as the ...
15
votes
2answers
208 views
Why is concurrent haskell non deterministic while parallel haskell primitives (par and pseq) deterministic?
Don't quite understand determinism in the context of concurrency and parallelism in Haskell. Some examples would be helpful.
Thanks
15
votes
2answers
693 views
Is it possible to limit the cores for Parallel.ForEach?
I'm using a Parallel.ForEach in my code. All my 8 cores go to 100%. This is bad for the other apps that are running on the server. Is it possible to limit execution to like 4 cores?
15
votes
1answer
635 views
Understanding VS2010 C# parallel profiling results
I have a program with many independent computations so I decided to parallelize it.
I use Parallel.For/Each.
The results were okay for a dual-core machine - CPU utilization of about 80%-90% most of ...
15
votes
7answers
3k views
Difference between concurrent programming and parallel programming
I have a question: what is the difference between concurrent programming and parallel programing? I asked google but didn't find anything that helped me to understand that difference. Could you give ...
15
votes
4answers
9k views
Does Parallel.ForEach limits the number of active threads?
If
var arrayStrings = new string[1000];
Parallel.ForEach<string>(arrayStrings, someString =>
{
DoSomething(someString);
});
All 1000 Threads will spawn almost simultaneously?
14
votes
2answers
620 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
5answers
566 views
C# fundamentally not portable?
I've been using C# for a while, and have recently started working on adding parallelism to a side project of mine. So, according to Microsoft, reads and writes to ints and even floats are atomic
I'm ...
14
votes
7answers
1k views
Multicore programming: the hard parts
I'm writing a book on multicore programming using .NET 4 and I'm curious to know what parts of multicore programming people have found difficult to grok or anticipate being difficult to grok?
13
votes
9answers
577 views
Is it safe to pipe the output of several parallel processes to one file using >>?
I'm scraping data from the web, and I have several processes of my scraper running in parallel.
I want the output of each of these processes to end up in the same file. As long as lines of text ...
13
votes
6answers
3k views
Why is MPI considered harder than shared memory and Erlang considered easier, when they are both message-passing?
There's a lot of interest these days in Erlang as a language for writing parallel programs on multicore. I've heard people argue that Erlang's message-passing model is easier to program than the ...
12
votes
3answers
262 views
Scala Parallel Collections- How to return early?
I have a list of possible input Values
val inputValues = List(1,2,3,4,5)
I have a really long to compute function that gives me a result
def reallyLongFunction( input: Int ) : Option[String] = { ...
12
votes
4answers
343 views
Iterate over lines in a file in parallel (Scala)?
I know about the parallel collections in Scala. They are handy! However, I would like to iterate over the lines of a file that is too large for memory in parallel. I could create threads and set up ...
12
votes
7answers
885 views
Help understanding C# optimization
I was playing with C# and wanted to speed up a program. I made changes and was able to do so. However, I need help understanding why the change made it faster.
I've attempted to reduce the code to ...
12
votes
3answers
385 views
Why do you have to use both a compiler flag and a run-time flag to get multicore-support in Haskell?
The Haskell wiki shows that you need to both set a compilation flag and a run-time flag to get multi-core support. Why isn't using the library enough to get the correct behavior at compile time? Why ...
12
votes
5answers
693 views
Parallel features in .Net 4.0
I have been going over the practicality of some of the new parallel features in .Net 4.0.
Say I have code like so:
foreach (var item in myEnumerable)
myDatabase.Insert(item.ConvertToDatabase());
...
10
votes
6answers
259 views
Why isn't Parallel.ForEach running multiple threads?
Today i tried do some optimization to foreach statement, that works on XDocument.
Before optimization:
foreach (XElement elem in xDoc.Descendants("APSEvent").ToList())
{
//some operations
}
...
10
votes
1answer
150 views
Has anybody ever done large searches in JavaScript using webworkers to parallelize?
I'm writing a search function in JavaScript which is highly parallelizable, and operates on enormous data sets. The data sets are stored in trees of JS objects, and it could be implemented by ...
10
votes
2answers
235 views
Parallels.ForEach Taking same Time as Foreach
All,
I am using the Parallels.ForEach as follows
private void fillEventDifferencesParallels(IProducerConsumerCollection<IEvent> events, Dictionary<string, IEvent> originalEvents)
{
...
10
votes
3answers
177 views
For parallel algorithm with N threads, can performance gain be more than N?
A theoretical question, maybe it is obvious:
Is it possible that an algorithm, after being implemented in a parallel way with N threads, will be executed more than N times faster than the original, ...
10
votes
1answer
225 views
Strategies in Scala
Is there an equivalent to Haskell Control.Parallel.Strategies or a way to acheive the same thing ?
That allow an existing code to be evaluated in a different way.
By separeting algorithm from ...
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
3answers
322 views
The strange case of multiple Futures in Scala
What's the the connection between those Future-related class and traits in Scala, and why are they sprinkled over different packages?
I have found those:
abstract class scala.actors.Future
object ...
10
votes
1answer
340 views
Haskell — parallel map that makes less sparks
I want to write a parallel map function in Haskell that's as efficient as possible. My initial attempt, which seems to be currently best, is to simply write,
pmap :: (a -> b) -> [a] -> [b]
...
10
votes
5answers
3k views
C#: Using AsParallel()/Parellel.ForEach() guidelines?
Looking for a little advice on leveraging AsParallel() or Parallel.ForEach() to speed this up.
See the method I've got (simplified/bastardized for this example) below.
It takes a list like "US, FR, ...
9
votes
2answers
191 views
Mutable, (possibly parallel) Haskell code and performance tuning
I have now implemented another SHA3 candidate, namely Grøstl. This is still work in progress (very much so), but at the moment a 224-bit version pass all KATs. So now I'm wondering about performance ...
9
votes
1answer
414 views
How to make a Strategy in Haskell Control.Parallel.Strategies?
Update: I just found this documentation page. Wish there was a link to it from the documentation that I'd been using, which seemed to be the definitive API doc. But maybe it's a new, unreleased work.
...
9
votes
11answers
1k views
Multithreading Puzzles
I'm trying to come up with some programming puzzles focused on multi-threading. Most of the problems I've been able to come up with, so far, have been pretty domain specific. Does anybody have any ...
9
votes
7answers
8k views
How to wait for all threads to finish, using ExecutorService?
I need to execute some amount of tasks 4 at a time, something like this:
ExecutorService taskExecutor = Executors.newFixedThreadPool(4);
while(...) {
taskExecutor.execute(new MyTask());
}
...
9
votes
5answers
2k views
What is the best MPI implementation [closed]
I have to implement MPI system in a cluster. If anyone here has any experience with MPI (MPICH/OpenMPI), I'd like to know which is better and how the performance can be boosted on a cluster of x86_64 ...
8
votes
5answers
194 views
Non-blocking / Asynchronous Execution in Perl
Is there a way to implement non-blocking / asynchronous execution (without fork()'ing) in Perl?
I used to be a Python developer for many years... Python has really great 'Twisted' framework that ...
8
votes
1answer
252 views
What are the differences between Intel TBB and Microsoft PPL?
I'm planning to start "playing" with task-based parallelism for a cross-platform project. I wanted to use Intel Threading Building Blocks. I'm starting with Windows and Visual Studio.
As I just want ...
8
votes
1answer
250 views
Change [exec] label in output for Ant <exec> task
I am using Ant's <parallel> task to perform multiple simultaneous targets that use <exec> tasks, but it's difficult to read the output because it is interleaved. Is there any way to change ...
8
votes
2answers
804 views
Parallel collections in Scala 2.9 and Actors
Ok, this might be a rather silly question, but what is the benefit of using parallel collections within an actor framework? That is, if I'm only dealing with one message at a time from an actor's ...
8
votes
1answer
1k views
Parallel.ForEach - Graceful Cancellation
On the subject of waiting until tasks are complete and thread synchronisation.
I currently have an iteration i have enclosed within a Parallel.ForEach. In the Example below I have posed some ...
8
votes
5answers
1k views
Parallel.ForEach Ordered Execution
I am trying to execute parallel fuctions on an list of objects using the new 4.0 Parallel.ForEach function. This is a very long maintenance process. I would like to make it execute in the order of ...
8
votes
3answers
855 views
Is there a way to have parallel for-each loops?
Let's say I have 2 lists in Python and I want to loop through each one in parallel - e.g. do something with element 1 for both lists, do something with element 2 for both lists... I know that I can do ...
8
votes
8answers
3k views
How to wait for a set of threads to complete?
What is a way to simply wait for all threaded process to finish? For example, let's say I have:
public class DoSomethingInAThread implements Runnable{
public static void main(String[] args) {
...
8
votes
2answers
2k views
Parallel Programming and C++
I've been writing a lot recently about Parallel computing and programming and I do notice that there are a lot of patterns that come up when it comes to parallel computing. Noting that Microsoft ...