Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C#

Multi Core Programming using Task Parallel Library with .NET 4.0

Rate me:
Please Sign up or sign in to vote.
4.76/5 (96 votes)
9 Apr 2012CPOL6 min read 301.1K   12.9K   207  
The task parallel library allows you to write code which is human readable, less error prone, and adjusts itself with the number of Cores available.
  • ConsoleApplication1.zip
    • ConsoleApplication1
      • ConsoleApplication1
        • _ReSharper.ConsoleApplication1
          • BuildScriptCache
            • .crc
            • .version
            • 3
              • 6d216f12.dat
          • DecompilerCache
          • ModuleIds.xml
          • NamedArguments
            • .crc
            • .version
            • 1
              • 60d8746c.dat
          • PdbInfo
          • ProjectModel
            • ProjectModel.dat
          • Resources
            • .crc
            • .version
          • SymbolCache.bin
          • TagPrefixes
            • .crc
            • .version
          • TodoCache
            • .crc
            • .version
            • 6
              • 460d4b47.dat
          • WebsiteFileReferences
            • .crc
            • .version
          • WordIndex
            • .crc
            • .version
            • 1
              • 60d8746c.dat
        • ConsoleApplication1.5.1.ReSharper.user
        • ConsoleApplication1.sln
        • ConsoleApplication1.suo
        • ConsoleApplication1
  • MatrixMultiplication.zip
    • MatrixMultiplication
      • _ReSharper.MatrixMultiplication
        • BuildScriptCache
          • .crc
          • .version
          • 7
            • 729fb83f.dat
        • DecompilerCache
        • ModuleIds.xml
        • NamedArguments
          • .crc
          • .version
          • 5
            • 6656bd99.dat
        • PdbInfo
        • ProjectModel
          • ProjectModel.dat
        • Resources
          • .crc
          • .version
        • SymbolCache.bin
        • TagPrefixes
          • .crc
          • .version
        • TodoCache
          • .crc
          • .version
          • 7
            • 729fb83f.dat
        • WebsiteFileReferences
          • .crc
          • .version
        • WordIndex
          • .crc
          • .version
          • 5
            • 6656bd99.dat
      • MatrixMultiplication.5.1.ReSharper.user
      • MatrixMultiplication.sln
      • MatrixMultiplication.suo
      • MatrixMultiplication

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MatrixMultiplication", "MatrixMultiplication\MatrixMultiplication.csproj", "{0480D9EE-4E0F-4C16-BF77-92C0F7411B36}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|x86 = Debug|x86
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{0480D9EE-4E0F-4C16-BF77-92C0F7411B36}.Debug|x86.ActiveCfg = Debug|x86
		{0480D9EE-4E0F-4C16-BF77-92C0F7411B36}.Debug|x86.Build.0 = Debug|x86
		{0480D9EE-4E0F-4C16-BF77-92C0F7411B36}.Release|x86.ActiveCfg = Release|x86
		{0480D9EE-4E0F-4C16-BF77-92C0F7411B36}.Release|x86.Build.0 = Release|x86
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions