4
votes
8answers
426 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
3answers
519 views

What's the opposite of parallel/concurrent execution?

In my program, I give the ability to execute certain code either as parallel or non-parallel. I don't know what to call the non-parallel option though. Is Linear a good term? What would be the best ...