Comments on: Difference between Multi-Threading and Parallel Programming http://usamadar.com/2012/09/15/difference-between-multi-threading-and-parallel-programming/ Author, Researcher, Technology Enthusiast Thu, 27 Mar 2014 13:29:33 +0000 hourly 1 http://wordpress.com/ By: waruna http://usamadar.com/2012/09/15/difference-between-multi-threading-and-parallel-programming/#comment-233 Thu, 20 Sep 2012 20:00:15 +0000 http://usamadar.com/?p=570#comment-233 I agree with ekayrakli

]]>
By: ekayrakli http://usamadar.com/2012/09/15/difference-between-multi-threading-and-parallel-programming/#comment-231 Sat, 15 Sep 2012 23:09:44 +0000 http://usamadar.com/?p=570#comment-231 Just a few humble side notes: multithreading and parallel programming are not entirely different concepts. we can assume that every parallel program is also multithreaded, right? However, a multithreaded program can have different parts executing at the same time if hardware allows that, which makes it sort of a parallel program. And other thing is saying that parallel programming divides the main task into smaller parts can be true for task parallelism, however in data parallelism you do not break the task down to small units of execution but small units of data.

]]>