Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This were the only two questions I couldn't answer in the interview I got rejected from last night.

share|improve this question
all a man needs...a couple of cans of beers :) – Suraj Chandran Sep 14 '11 at 16:36
I guess mt will be the most beneficial when tasks are independent, otherwise there will be unavoidable sequential execution. – Victor Sorokin Sep 14 '11 at 16:48

7 Answers

up vote 0 down vote accepted

Q: When should you use multithreading?

A: "Your question is very broad. There are few non-trivial systems where the functionality can be met simply, quickly and reliably with only one thread. For example: [pick out a typical system that the target company sells and pick out a couple aspects of its function that would be better threaded off - heavy CPU, comms, multi-user - just pick out something likely & explain].

Q: Would multithreading be beneficial if the different threads execute mutually independent tasks?

A: "Depends on what you mean by 'executing tasks'. Multithreading would surely be beneficial if the threads process mutually independent data in a concurrent fashion - it reduces requirements for locks and probabilty of deadlocks increases in a super-linear fashion with the number of locks. OTOH, there is no issue with threads executing the same code, this is safe and very common."

Rgds, Martin

share|improve this answer

You should use multithreading when you want to perform heavy operations without "blocking" the flow.
Example in UIs where you do a heavy processing in a background thread but the UI is still active.

If the threads execute mutually exclusive tasks it is the best since there is no overhead for synchronization among threads needed

share|improve this answer

You should definitely use multithreading in GUI applications when you invoke time consuming tasks from the main event loop. Same applies for server application that might block while doing the I/O.

For the second question, it is usually yes when you have machine with multiple CPU cores. In this case these independent tasks can be executed in parallel.

share|improve this answer

I would use multithreading for tasks like rendering images, brute-force calculations, etc. Basically tasks which perform repetitive operations to reach a result.

As for the second question, I'd say that it can be. When I coded my rendering engine, I used multithreading extensively. Each pass required me to operate on a ton of matrices, vectors, etc., but every single pass was completely independent of all the others.

share|improve this answer

In general, multithreading is used in cases where execution time is throttled/bottlenecked by the CPU as opposed to other areas such as IO. The second question is really quite subjective to the circumstance. For example if they are mutually independent but both do heavy IO, you might not necessarily get a large gain.

share|improve this answer
Depends. On a single-core CPU, if CPU time is the bottleneck, threading can actually slow you down (as the CPU and OS have to spend time switching between threads). Threading there wins big only when you have jobs that involve waiting on something sporadic and/or slow -- be it GUI events, keyboard input, whatever -- and want other stuff to happen while those jobs are waiting. – cHao Sep 14 '11 at 16:55
1  
You're right. I made the assumption there are multiple physical cores. – Mike Kwan Sep 14 '11 at 17:02

Multithreading is a way to introduce parallelness in your program. In any case if there can be parallel paths (parts which do not depend on result from a other part) in your program, use can make use of it.

Specially with all these multiple core machines now days, this is a feature which one should exploit.

Some examples would be processing of large data where you can divide it in chunks and get it done in multiple threads, file processing etc.

To your second question, it would be best if the tasks are mutually independent - reasons

  • no shared data means no contentions
  • no need for any ordered processing (dependency), so each thread can work when have resources
  • more easy to implement
share|improve this answer

You can use multithreading if the tasks can be broken down which can be executed in parallel. Like produce and consume , Validate and save , Read and Validate.

For the second question , Yes, it is beneficial for make a program into Multi threading if they are executing independent tasks.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.