The parallel-programming tag has no wiki summary.
4
votes
8answers
311 views
When should I use parallelism?
After asking this question, I got to realize that parallelism may not always be good.
So far I can see that parallelism (under c#) is
A little complicated code-wise
Will probably insert some ...
3
votes
0answers
116 views
Why was the parallel version slower than the sequential version in this example? [migrated]
I've been learning a little about parallelism in the last few days, and I came across this example.
I put it side to side with a sequential for loop like this:
private static void NoParallelTest()
{
...
42
votes
11answers
2k views
What kind of problems does MapReduce solve?
I have been reading about MapReduce for a while -- but what I can't understand is how someone would make a decision to use (or not use) MapReduce.
I mean, what are the problem patterns that signal ...
3
votes
2answers
178 views
Parallel computing and mobile computing
I have been working as software developer for past 4 years on a variety of software products (Financial ERP system, Online Web development, Trading software and now a Supply Chain mgmt software). Most ...
1
vote
1answer
120 views
Debug multiprocessing in Python
What are some good practices in debugging multiprocessing programs in Python?
3
votes
1answer
214 views
What's the current best practice for C multithreading?
I've been a Java (and PHP) developer for most of my life, but will need to use C for my next project. I remember some basic stuff we did back in school with fork, pthread, semaphores, etc. but I'm not ...
8
votes
3answers
363 views
Studying parallel programming
I'm currently finishing my Bachelor's degree in Computer Science and thinking a lot about which specialisation to choose in my Master's degree.
One subject I'm particularly interested in is parallel ...
1
vote
3answers
288 views
Is there a canonical book on parallel programming with focus on C++ ?
I am looking for a good book about parallel programming with focus on C++. Something suitable for a person reasonably good in C++ programming, but with no experience in concurrent software ...
13
votes
13answers
734 views
What are some common examples of a Parallelizable problem?
I was just wondering if there were some "standard" examples that everyone uses as a basis for explaining the nature of parallel problems. What are some well-known problems out there that can see great ...
3
votes
1answer
323 views
Parallel programming library? (+ some features)
Note: this is a reposting as the question has been considered non-suitable for the Stack Overflow forum and should have been posted here. The original topic is there.
I'd like to talk of ...
1
vote
5answers
312 views
learning web development c#
I've been learning c# "for a while" now and I would like to move to web development as that is actually what I'm interested in, however I dont know where would I start from so I would like if someone ...