Skin Border Image

Software Know How Forums

Skin Border Image
 
ForumForumDevelopmentDevelopmentParallel & HPCParallel & HPChow can parallel programming help my apps?how can parallel programming help my apps?
Disabled 
Previous
 
Next
 Disabled
New Post
 6/7/2010 9:54 PM
 

I develop in managed code using .NET and want to know more about how my apps will benefit from parallel programming even though most of the apps I develop aren't being used on dual core or multi core machines?

New Post
 6/8/2010 11:28 AM
 

This is an excellent question. My general feeling about this is that you should not write parallel optimised code if you are not going to target a multi-core machine as there is a performance overhead. However, in terms of respecting the scalability of your application it is perhaps something you should consider if there is a possibility your code will eventually run on a multi-core machine or even a mixed envoironment.

Personally, I would tend not to write parallel optimised code until I feel there is a serious need for it. E.g. a slow running operation or hefty report etc. In these cases you can always look into running processes on a separate thread so as to not lock up the user interface while processing is being completed. I found the this article which also discusses this topic and maybe of some use.

Disabled 
Previous
 
Next
 Disabled
ForumForumDevelopmentDevelopmentParallel & HPCParallel & HPChow can parallel programming help my apps?how can parallel programming help my apps?