Stories recently tagged with 'parallelfx'

Parallel Extensions to the .NET Framework(vsj.co.uk)

submitted by simonebsimoneb(5450) 3 years, 11 months ago

Interesting article by Daniel Moth about the Parallel Extensions. read more...

add a comment |category: |Views: 27

tags: another

Seeing the Future in ParallelFX(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 11 months ago

Showing off Futures in ParallelFX and how they can be used for running and synchronizing many tasks that have results. read more...

add a comment |category: |Views: 10

tags: another

Just Do it! Parallel.Do in ParallelFX(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 11 months ago

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. read more...

add a comment |category: |Views: 202

tags: another

A tale of Parallel.For in ParallelFX(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 11 months ago

An example of how to effectively use Parallel.For in ParallelFX using everyone's favorite topic: matrix multiplication. read more...

add a comment |category: |Views: 96

tags: another

ParallelMap function using ParallelFX(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 11 months ago

Reimplementing the ParallelMap function from a previous post, but this time using ParallelFX read more...

add a comment |category: |Views: 5

tags: another

Programming in the Age of Concurrency (C9 video)(channel9.msdn.com)

submitted by JudahGabrielJudahGabriel(783) 4 years, 3 months ago

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. read more...

add a comment |category: |Views: 5

tags: another

Optimize Managed Code For Multi-Core Machines(msdn.microsoft.com)

submitted by jamesewelchjamesewelch(2275) 4 years, 4 months ago

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 advantage of those multiple processors. In fact, most applications use just a single core and see no speed improvements when run on a multi-core machine. We need to write our programs in a new way. read more...

2 comments |category: |Views: 26

tags: another