Tip and Rules for Parallel Programming
There are simple tips for parallel programming "Nine Tips to Parallel Programming Heaven". These rules include many aspects of parallel programing such as cost-efficiency trade-off, reusability, debugging, performance profiling, load balancing. Rule #7 is indeed pragmatic: "Stop when it is good enough". However, it is true because what we need is performance and therefore if we can achieve acceptable performance, why we need to spend more human resource on it.
"8 Simple Rules for Designing Threaded Applications" tells us 8 practical rules needed for multi-threaded programs. They are worth learning by heart.
"8 Simple Rules for Designing Threaded Applications" tells us 8 practical rules needed for multi-threaded programs. They are worth learning by heart.
Labels: Parallel Programming, rules, tips