By tag: parallelfx
0
kicks
Seeing the Future in ParallelFX
Showing off Futures in ParallelFX and how they can be used for running and synchronizing many tasks that have results.
0
kicks
Parallel Extensions to the .NET Framework
Interesting article by Daniel Moth about the Parallel Extensions.
0
kicks
A tale of Parallel.For in ParallelFX
An example of how to effectively use Parallel.For in ParallelFX using everyone's favorite topic: matrix multiplication.
0
kicks
Just Do it! Parallel.Do in ParallelFX
An example of how to use Parallel.Do in order to efficiently sort items and also how to use Parallel.Do and IParallelEnumerable to Parallelize long running processes.
0
kicks
ParallelMap function using ParallelFX
Reimplementing the ParallelMap function from a previous post, but this time using ParallelFX
0
kicks
Programming in the Age of Concurrency (C9 video)
C# creator Anders Hejlsberg and Parallel LINQ architect Joe Duffy talk about ParallelFx: the .NET library that helps developers more easily write parallel programs to take advantage of the multiple cores in today's machines.
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...