By tag: TPL
0
kicks
Parallel Programming w/ Task Parallel Library
Taking a look at how we can simplify parallel programming by using the Task Parallel Library which is part of .Net 4.0
We will take a look at how to move your code away from for and foreach and towards Parallel.For and Parallel.Foreach. These new methods allow you to parallelize your loops w/ lit...
0
kicks
Optimize Managed Code For Multi-Core Machines
Multi-processor machines are now becoming standard while the speed increases of single processors have slowed down. The key to performance improvements is therefore to run a program on multiple processors in parallel. Unfortunately, it is still very hard to write algorithms that actually take advant...