Tagged Questions
The simultaneous use of more than one CPU or processor core to execute a program or multiple computational threads
89
votes
15answers
4k views
Why aren't we programming on the GPU?
So I finally took the time to learn CUDA and get it installed and configured on my computer and I have to say, I'm quite impressed!
Here's how it does rendering the Mandelbrot set at 1280 x 678 ...
47
votes
23answers
3k views
How are you taking advantage of Multicore?
As someone in the world of HPC who came from the world of enterprise web development, I'm always curious to see how developers back in the "real world" are taking advantage of parallel computing. ...
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 ...
35
votes
5answers
5k views
Concurrency vs Parallelism - What is the difference?
Concurrency vs Parallelism - What is the difference? Any examples
29
votes
10answers
4k views
F# performance in scientific computing
I am curious as to how F# performance compares to C++ performance? I asked a similar question with regards to Java, and the impression I got was that Java is not suitable for heavy numbercrunching.
...
26
votes
3answers
606 views
Interview Question: running time of two programs run seperately and then together
I was recently asked this question in an interview, and while I did alright on the first two parts [I am assuming] I struggled a bit on the third. Here's the question:
You have two Linux programs, A ...
26
votes
3answers
10k views
How does the MapReduce sort algorithm work?
One of the main examples that is used in demonstrating the power of MapReduce is the Terasort benchmark. I'm having trouble understanding the basics of the sorting algorithm used in the MapReduce ...
25
votes
10answers
2k views
Concurrency: how does shared memory vs message passing handle large data structures?
In looking at Go and Erlang's approach to concurrency, I noticed that they both rely on message passing.
This approach obviously alleviates the need for complex locks because there is no shared ...
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 ...
21
votes
8answers
3k views
What type of problems can mapreduce solve?
Is there a theoretical analysis available which describes what kind of problems mapreduce can solve?
20
votes
1answer
551 views
How are scala 2.9 parallel collections working behind the scenes?
Scala 2.9 introduced parallel collections. They are a really great tool for certain tasks. However, I'm wondering how they work internally and if I'm able to influence the behavior/configuration.
...
20
votes
3answers
2k views
How, if at all, do Erlang Processes map to Kernel Threads?
Erlang is known for being able to support MANY lightweight processes; it can do this because these are not processes in the traditional sense, or even threads like in P-threads, but threads entirely ...
19
votes
3answers
2k views
Pure functions in C#
I know C# is getting a lot of parallel programming support, but AFAIK there is still no constructs for side-effects verification, right?
I assume it's more tricky now that C# is already laid out. But ...
18
votes
5answers
554 views
Best Practices for cache locality in Multicore Parallelism in F#
I'm studying multicore parallelism in F#. I have to admit that immutability really helps to write correct parallel implementation. However, it's hard to achieve good speedup and good scalability ...
18
votes
6answers
1k views
Parallel.For(): Update variable outside of loop
I'm just looking in to the new .NET 4.0 features. With that, I'm attempting a simple calculation using Parallel.For and a normal for(x;x;x) loop.
However, I'm getting different results about 50% of ...
17
votes
3answers
542 views
What multithreading package for Lua “just works” as shipped?
Coding in Lua, I have a triply nested loop that goes through 6000 iterations. All 6000 iterations are independent and can easily be parallelized. What threads package for Lua compiles out of the box ...
17
votes
7answers
2k views
Programming language for functional parallelism: F# vs Haskell
Functional programming has immutable data structures and no side effect which are inherently suitable for parallel programming. I investigate how to exploit multicore computation in a functional ...
17
votes
11answers
8k views
Parallel processing from a command queue on Linux (bash, python, ruby… whatever)
I have a list/queue of 200 commands that I need to run in a shell on a Linux server.
I only want to have a maximum of 10 processes running (from the queue) at once. Some processes will take a few ...
17
votes
6answers
6k views
MPI for multicore?
With the recent buzz on multicore programming is anyone exploring the possibilities of using MPI ?
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 ...
15
votes
5answers
3k views
Parallel Sort Algorithm
I'm looking for a simple implementation of a parallelized (multi-threaded) sort algorithm in C# that can operate on List<T> or Arrays, and possibly using Parallel Extensions but that part isn't ...
13
votes
10answers
560 views
Library or tool to download multiple files in parallell
I'm looking for a python library or a command line tool for downloading multiple files in parallell. My current solution is to download the files sequentially which is slow. I know you can easily ...
13
votes
4answers
411 views
Multi-node concurrency in Java
I've written a multi-threaded Java program to solve an embarrassingly parallel problem such that it utilizes all the free CPU cycles of on a multi-core CPU. I'd like to refactor my solution so that ...
13
votes
4answers
325 views
Is there a Scheme implementation that parallelizes?
Is there a R5RS-or-higher Scheme implementation that does parallelization? For example, if I say to do:
(map (lambda (x)
(pure-functional-stuff x))
'(1 3 5 7 11 13))
it will process ...
13
votes
4answers
2k views
Threading vs. Parallel Processing
Microsoft .NET 4.0 introduces new "parallel enhancements" to its framework. I am wondering what the difference between making an application that uses the standard System.Threading functions versus ...
13
votes
8answers
1k views
Does F# provide you automatic parallelism?
By this I meant: when you design your app side effects free, etc, will F# code be automatically distributed across all cores?
12
votes
4answers
508 views
What is the easiest way to parallelize a vectorized function in R?
I have a very large list X and a vectorized function f. I want to calculate f(X), but this will take a long time if I do it with a single core. I have (access to) a 48-core server. What is the easiest ...
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
7k views
Optimal number of threads per core
Let's say I have a 4-core CPU, and I want to run some process in the minimum amount of time. The process is ideally parallelizable, so I can run chunks of it on an infinite number of threads and each ...
12
votes
16answers
2k views
What future does the GPU have in computing?
Your CPU may be a quad-core, but did you know that some graphics cards today have over 200 cores? We've already seen what GPU's in today's graphics cards can do when it comes to graphics. Now they ...
12
votes
17answers
2k views
What's the opposite of “embarrassingly parallel”?
According to Wikipedia, an "embarrassingly parallel" problem is one for which little or no effort is required to separate the problem into a number of parallel tasks. Raytracing is often cited as an ...
12
votes
19answers
2k views
Which parallel programming APIs do you use?
Trying to get a grip on how people are actually writing parallel code currently, considering the immense importance of multicore and multiprocessing hardware these days. To me, it looks like the ...
11
votes
2answers
343 views
Running unit tests on more than five cores in parallel
I've followed the instructions on http://blogs.msdn.com/b/vstsqualitytools/archive/2009/12/01/executing-unit-tests-in-parallel-on-a-multi-cpu-core-machine.aspx to the letter and I can execute tests in ...
11
votes
1answer
437 views
Find a median in parallel
If you have one huge amount of numbers and one hundred computers,
How would you find the median of the numbers?
11
votes
8answers
646 views
Quickly load 350M numbers into a double[] array in C#
I am going to store 350M pre-calculated double numbers in a binary file, and load them into memory as my dll starts up. Is there any built in way to load it up in parallel, or should I split the data ...
11
votes
3answers
919 views
What hash algorithms are parallelizable? Optimizing the hashing of large files utilizing on multi-core CPUs
I'm interested in optimizing the hashing of some large files (optimizing wall clock time). The I/O has been optimized well enough already and the I/O device (local SSD) is only tapped at about 25% of ...
11
votes
3answers
2k views
Better alternative to pmap in Clojure for parallelizing moderately inexpensive functions over big data?
Using clojure I have a very large amount of data in a sequence and I want to process it in parallel, with a relatively small number of cores (4 to 8).
The easiest thing to do is use pmap instead of ...
11
votes
6answers
580 views
Threading vs Parallelism, how do they differ?
What is the difference between threading and parallelism?
Which one has advantage over the other?
11
votes
8answers
846 views
Faster fundamental datastructures on multicore machines?
I've been pondering this question for a while:
Can you build a faster fundamental datastructure (i.e. linked list, hashtable, set, skiplist, bloom filter, red-black tree, etc.) on a multicore ...
11
votes
16answers
1k views
Why does Moore's Law necessitate parallel computing?
This was a question in one of my CS textbooks. I am at a loss. I don't see why it necessarily would lead to parallel computing. Anyone wanna point me in the right direction?
10
votes
2answers
232 views
Will Scala's parallel collections guarantee ordering?
If I have this:
val a = Array(...)
and I write
a.par.map(e => someFunc(e))
Will the resulting collection be in the same order as the non-parallel collection?
10
votes
3answers
479 views
Are Scala parallel collections better in some ways than the parallel collections already available in Java?
I've recently been learning about various libraries for concurrency in Java such as ConcurrentHashMap and the lovely non blocking one from Cliff Click
I don't know much about Scala but I've heard ...
10
votes
5answers
683 views
Parallel processing in PHP - How do you do it?
I am currently trying to implement a job queue in php. The queue will then be processed as a batch job and should be able to process some jobs in parallel.
I already did some research and found ...
10
votes
3answers
516 views
Parfor for Python
I am looking for a definitive answer to MATLAB's parfor for Python (Scipy, Numpy).
Is there a solution similar to parfor? If not, what is the complication for creating one?
UPDATE: Here is a typical ...
10
votes
3answers
530 views
Should I learn/use MapReduce, or some other type of parallelization for this task?
After talking with a friend of mine from Google, I'd like to implement some kind of Job/Worker model for updating my dataset.
This dataset mirrors a 3rd party service's data, so, to do the update, I ...
10
votes
4answers
3k views
Does Java have support for multicore processors/parallel processing?
I know that now that most processors have two or more cores, multicore programming is all the rage. Is there functionality to utilize this in Java? I know that Java has a Thread class, but I also know ...
10
votes
4answers
2k views
Parallel.Foreach spawning way too many threads
The problem
Although the code about which I will talk here I wrote in F#, it is based on the .NET 4 framework, not specifically depending on any particularity of F# (at least it seems so!).
I have ...
10
votes
6answers
2k views
How to create Chrome like application in Delphi which runs multiple processes inside one Window?
Is it possible to create an "application group" which would run under one window, but in separate processes, like in Chrome browser? I'd like to divide one application into multiple parts, so that one ...
10
votes
4answers
1k views
Just how good is VTK?
I have heard some good reviews oF Visualization ToolKit(VTK) from developers. But, exactly how powerful is it? For example, can it handle visualization of an entire oil reservoir (in a simulator) with ...
9
votes
5answers
144 views
How to optimize for dual, quad and higher multi-processors?
Folks, I've been programming high speed software over 20 years and know virtually every trick in the book from micro-bench making cooperative, profiling, user-mode multitasking, tail recursion, you ...