Atalasoft
Welcome to Atalasoft Community Sign in | Join | Help
in

Browse by Tags

All Tags » parallelism
  • F# Discoveries This Week 01/13/2010

    Back again this week with a fresh batch of F# Posts, Videos and Events.  I’ve been enjoying Matthew Podwysocki’s “Much Ado About Monads” series quite a lot.  They are well worth checking out for beginner and advanced alike.   Events If you would like to see your event here, send me an email via the link at the top of the page. ...
    Posted to Rick Minerich's Development Wonderland (Weblog) by RickM on January 13, 2010
  • F# and You! - New Hampshire User’s Group and Beyond

    I’ve been working for a while on a new presentation which I was finally able to give last week at the New Hampshire .NET User Group.  F# and You! focuses on painting the big picture about F# instead of the off-putting details like having to learn new syntax.   For this new presentation I start by discussing the adoption of ...
    Posted to Rick Minerich's Development Wonderland (Weblog) by RickM on October 26, 2009
  • Discoveries This Week 08/02/2009

    Tomorrow Matthew Podwysocki will be speaking at the New England F# User Group.  I also have some great links today with Don Syme at QCon08, why we need the rec keyword, regular expression parsing and graphing with GLEE.   Tomorrow @ FSUG: Matthew Podwysocki on Parallelism in F# With the increasing amount of data available to us, we ...
    Posted to Rick Minerich's Development Wonderland (Weblog) by RickM on August 2, 2009
  • My solution for unit testing concurrent code in NUnit

    I blogged recently about testing parallel code in NUnit. I think I settled with requirements: I want to use threads; I want to use assertions in threads; I want to control how threads step on each other; Too bad that solutions I tested did not fit 100%. So I came up with a small (200 lines of code) tool called “Sync” that meets my ...
    Posted to Dan Barvitsky (Weblog) by dbarvitsky on June 15, 2009
  • Techniques for testing concurrent code in NUnit

    Last time I blogged about a way to make concurrent unit tests deterministic. This time I’d like to focus on the technical aspects, namely NUnit. Let us start with the following test: [Test] public void TestThread() { int n = 0; var thread1 = new Thread(() => { n ...
    Posted to Dan Barvitsky (Weblog) by dbarvitsky on June 12, 2009