CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    anything coming for VB.Net/C#

    With the new parallel classes built into VS2010, it should be easier to create concurrent tasks. Any tools out there to help us?
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  2. #2
    Join Date
    Apr 2010
    Posts
    4

    Re: anything coming for VB.Net/C#

    The team at Intel is very excited about the recent release of Microsoft Visual Studio 2010 which for the very first time includes built in new parallelism capabilities. On of the most significant advancement in the area of parallel application development and IntelĀ® Parallel Studio is Concurrency Runtime layer (ConcRT) Resource Manager. "The ConcRT Resource Manager is an abstraction over the hardware that allows vendors like Microsoft and Intel (OpenMP, TBB) to program at a higher layer and compose these platforms, as well as coming up with one set of concepts for providing parallel code such as tasks, task groups and so forth."

    You can learn more about the ConcRT at http://blogs.microsoft.co.il/blogs/s...rt-on-ums.aspx

    Here is a great place to start learning more about Parallel Studio:
    http://software.intel.com/en-us/inte...l-studio-home/

    More thoughts and insight about Parallel Studio and MS Visual Studio can be found at:
    http://software.intel.com/en-us/blog...o-2010-launch/

    You can also learn all about the new Concurrency Visualizer and Apply Parallel Patterns with the .NET Framework 4 at:
    http://msdn.microsoft.com/en-us/conc...y/default.aspx

  3. #3
    Join Date
    Jan 2006
    Location
    Fox Lake, IL
    Posts
    15,007

    Re: anything coming for VB.Net/C#

    Thanks. I'll look into them.
    David

    CodeGuru Article: Bound Controls are Evil-VB6
    2013 Samples: MS CODE Samples

    CodeGuru Reviewer
    2006 Dell CSP
    2006, 2007 & 2008 MVP Visual Basic
    If your question has been answered satisfactorily, and it has been helpful, then, please, Rate this Post!

  4. #4
    Join Date
    Apr 2010
    Posts
    27

    Re: anything coming for VB.Net/C#

    Tersteeg , ConcRT is a native API, it's of no help in the VB.Net/C# world.
    Intel Parallel Studio is also targeted at native world.

    VB.Net/C# developer may take a look at Task Parallel Library (TPL), PLINQ (Parallel LINQ), perhaps F#.

  5. #5
    Join Date
    Apr 2010
    Posts
    27

    Re: anything coming for VB.Net/C#

    Start here:
    Parallel Computing with Managed Code
    http://msdn.microsoft.com/en-us/conc.../ee851578.aspx

  6. #6
    Join Date
    Apr 2010
    Posts
    4

    Re: anything coming for VB.Net/C#

    Thank you dvyukov.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured