View RSS Feed

Steve Baer

  1. Multithreaded Python


    One of the nice bits that we have access to in Rhino python is the Task Parallel Library that is built into .NET 4
    http://msdn.microsoft.com/en-us/libr...ing.tasks.aspx

    This set of classes and functions makes it relatively easy to write things like parallel for loops in which every iteration of the loop may be processed on different threads. This nice thing about parallel for loops ...