SlideShare ist ein Scribd-Unternehmen logo
1 von 44
Downloaden Sie, um offline zu lesen
ParallelFx
Bringing Mono applications in the multicore era




                 Jérémie Laval




     @     jeremie.laval@gmail.com
           http://blog.neteril.org
           http://twitter.com/jeremie_laval
     IRC   Garuma on #mono @ GIMPNet.org
Outline


Why bother?
  The free lunch
  An awesome idea
  Remaining performant

ParallelFx
   The big picture
   Tasks and co
   PLinq
   State of things

A note for the future
Why bother? ParallelFx A note for the future Questions




Why are we bothering with parallelization




 3 / 23
Why bother? ParallelFx A note for the future Questions




Why are we bothering with parallelization



                   Everyone loves his single thread




 3 / 23
Why bother? ParallelFx A note for the future Questions




Why are we bothering with parallelization



                   Everyone loves his single thread



“The ideal number of thread you should use is 1”

                                                                   – Alan Mc Govern
                                                                        Mono hacker



 3 / 23
Why bother? ParallelFx A note for the future Questions




Why are we bothering with parallelization



                   Everyone loves his single thread




                                                                   – Alan Mc Govern
                                                                        Mono hacker



 3 / 23
Why bother? ParallelFx A note for the future Questions




Why are we bothering with parallelization




 4 / 23
Why bother? ParallelFx A note for the future Questions




Why are we bothering with parallelization


                     Because the free lunch is over!




 4 / 23
Why bother? ParallelFx A note for the future Questions




Free lunch?

                                70’s - 2005: Moore’s law in action

                                                 Intel Processor Clock Speed (MHz)
                 10000
                                                                                                     Pentium 4 (Prescott)


                                                                                                                  Core 2
                                                                                                                 Extreme
                  1000
                                                                                    Pentium III

                                                                                 Celeron                 Multicore crisis
                                                                    Pentium                                 is here !
                  100

                                                            80486

                                                    80386

                   10
                                         80286
                                8080



                    1
                         1968     1973       1979            1984         1990    1995            2001            2006




                  0.1




                                                                                                                Source: Smoothspan blog

 5 / 23
Why bother? ParallelFx A note for the future Questions




The awesome idea




6 / 23
Why bother? ParallelFx A note for the future Questions




The awesome idea


          Can’t scale vertically? Scale horizontally!




6 / 23
Why bother? ParallelFx A note for the future Questions




Trend of things


                                   Number of cores


             1                 2                 4                 12ish          80

                                       Core 2                                 Intel
Pentium             Core Duo                           Core i7-980X
                                       Quad                                prototype




 7 / 23
Why bother? ParallelFx A note for the future Questions




Problem




8 / 23
Why bother? ParallelFx A note for the future Questions




Problem




                     No more magical free-lunch




8 / 23
Why bother? ParallelFx A note for the future Questions




Solution
                                  Let’s break up work...




                             ....and share it among cores
 9 / 23
Why bother? ParallelFx A note for the future Questions




Errr...




 10 / 23
Why bother? ParallelFx A note for the future Questions




Parallelization is difficult




11 / 23
Why bother? ParallelFx A note for the future Questions




Parallelization is difficult


  Hard: is that stuff really thread safe?




11 / 23
Why bother? ParallelFx A note for the future Questions




Parallelization is difficult


  Hard: is that stuff really thread safe?

  Tedious: whose turn is it to debug deadlocks?




11 / 23
Why bother? ParallelFx A note for the future Questions




Parallelization is difficult


  Hard: is that stuff really thread safe?

  Tedious: whose turn is it to debug deadlocks?

  Inefficient: how many thread to use?




11 / 23
Why bother? ParallelFx A note for the future Questions




Parallelization is difficult


  Hard: is that stuff really thread safe?

  Tedious: whose turn is it to debug deadlocks?

  Inefficient: how many thread to use?
          Too few: it’s not scaling




11 / 23
Why bother? ParallelFx A note for the future Questions




Parallelization is difficult


  Hard: is that stuff really thread safe?

  Tedious: whose turn is it to debug deadlocks?

  Inefficient: how many thread to use?
          Too few: it’s not scaling
          Too much: context-switching hurts performance




11 / 23
Why bother? ParallelFx A note for the future Questions




Parallelization is difficult


  Hard: is that stuff really thread safe?

  Tedious: whose turn is it to debug deadlocks?

  Inefficient: how many thread to use?
          Too few: it’s not scaling
          Too much: context-switching hurts performance
          What if the number of core changes?




11 / 23
Why bother? ParallelFx A note for the future Questions




KISS time (Keep it simple, stupid)


We need something different :




 12 / 23
Why bother? ParallelFx A note for the future Questions




KISS time (Keep it simple, stupid)


We need something different :

   Automagically regulate thread usage at runtime




 12 / 23
Why bother? ParallelFx A note for the future Questions




KISS time (Keep it simple, stupid)


We need something different :

   Automagically regulate thread usage at runtime

   As straightforward as possible




 12 / 23
Why bother? ParallelFx A note for the future Questions




KISS time (Keep it simple, stupid)


We need something different :

   Automagically regulate thread usage at runtime

   As straightforward as possible
           Simulate familiar constructs




 12 / 23
Why bother? ParallelFx A note for the future Questions




KISS time (Keep it simple, stupid)


We need something different :

   Automagically regulate thread usage at runtime

   As straightforward as possible
           Simulate familiar constructs
           Reuse existing code with only slight modification




 12 / 23
Why bother? ParallelFx A note for the future Questions




Enter ParallelFx

                                  ParallelFx at a glance




13 / 23
Why bother? ParallelFx A note for the future Questions




At the heart

                                   Work-stealing scheduler


                                                  Mono Application

                             Shared
                                                  ParallelFX library
                              work
                              pool                  (Scheduler)


                                        Retrieve



                        Local work        Steal                        Local work
                           pool                                           pool


                         Thread          Manage                         Thread
                         Worker                                         Worker

                            OS                                             OS
                          thread                                         thread


14 / 23
Why bother? ParallelFx A note for the future Questions




Tasks



   CancellationTokenSource source = new CancellationTokenSource ();

   Task task = Task.Factory.StartNew (() => DoSomeStuff (), source.Token);

   Task continuation = task.ContinueWith ((t) => Console.WriteLine ("task finished");

   source.Cancel ();

   t.Wait ();




15 / 23
Why bother? ParallelFx A note for the future Questions




Future (Task<T>)



 static int SumParallel (Tree<int> tree, int curDepth)
 {
   const int SequentialThreshold = 3;

     if (tree == null) return 0;

     if (curDepth > SequentialThreshold)
        return SumSequentialInternal (tree);

     int right = SumParallel (tree.Right, curDepth + 1);

     Task<int> left =
                Task.Factory.StartNew (() => SumParallel (tree.Left, curDepth + 1));

     return tree.Data + left.Value + right;
 }




16 / 23
Why bother? ParallelFx A note for the future Questions




Parallel.For



   Fractal fractal = new Fractal (width, height);

   ColorChooser colorChooser = new ColorChooser ();

   Parallel.For (0, width, (i) => {
     for (int j = 0; j < height; j++) {
       ProcessPixel (i, j, fractal, colorChooser);
     }
   });




17 / 23
Why bother? ParallelFx A note for the future Questions




Demo: Parallel For




    Demo: image processing with parallel
                  loops




18 / 23
Why bother? ParallelFx A note for the future Questions




PLinq


   ParallelEnumerable.Range (1, 1000)./* ... */
   ParallelEnumerable.Repeat (‘‘Rupert’’, 1000)./* ... */
   enumerable.AsParallel ()./* ... */

   var query = from x in Directory.GetFiles ("/etc/")
               .AsParallel ()
               where x.EndsWith (".conf")
               select x;

   query.ForAll ((e) => {
     Console.WriteLine ("{0} from {1}", e,
                        Thread.CurrentThread.ManagedThreadId);
   });




19 / 23
Why bother? ParallelFx A note for the future Questions




Demo: PLinq




             Demo: raytracing the PLinq way




20 / 23
Why bother? ParallelFx A note for the future Questions




State of things


  Mono 2.6 (December 2009): .NET 4 beta 1
          Task, Future, Parallel loops
          Concurrent collections
          Coordination data structures

  Mono 2.8 (or git master): .NET 4 compliant
          Enabled by default
          Tons of improvement
          With PLinq!




21 / 23
Why bother? ParallelFx A note for the future Questions




A note for the future




22 / 23
Why bother? ParallelFx A note for the future Questions




A note for the future


                GLinq: GPGPU-powered Linq




22 / 23
Why bother? ParallelFx A note for the future Questions




A note for the future


                GLinq: GPGPU-powered Linq
  Re-use PLinq pipeline




22 / 23
Why bother? ParallelFx A note for the future Questions




A note for the future


                GLinq: GPGPU-powered Linq
  Re-use PLinq pipeline
  Same design guidelines than PLinq: simplicity, transparency




22 / 23
Why bother? ParallelFx A note for the future Questions




A note for the future


                GLinq: GPGPU-powered Linq
  Re-use PLinq pipeline
  Same design guidelines than PLinq: simplicity, transparency
  Rewrite C# code in OpenCL (Expression trees FTW!)




22 / 23
Why bother? ParallelFx A note for the future Questions




A note for the future


                GLinq: GPGPU-powered Linq
  Re-use PLinq pipeline
  Same design guidelines than PLinq: simplicity, transparency
  Rewrite C# code in OpenCL (Expression trees FTW!)
  Transparent mapping of OpenCL idioms to .NET




22 / 23
Why bother? ParallelFx A note for the future Questions




Closing the curtains




23 / 23

Weitere ähnliche Inhalte

Kürzlich hochgeladen

DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 

Kürzlich hochgeladen (20)

DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 

Empfohlen

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at WorkGetSmarter
 

Empfohlen (20)

How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 
12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work12 Ways to Increase Your Influence at Work
12 Ways to Increase Your Influence at Work
 
ChatGPT webinar slides
ChatGPT webinar slidesChatGPT webinar slides
ChatGPT webinar slides
 

ParallelFx, bringing Mono applications in the multicore era

  • 1. ParallelFx Bringing Mono applications in the multicore era Jérémie Laval @ jeremie.laval@gmail.com http://blog.neteril.org http://twitter.com/jeremie_laval IRC Garuma on #mono @ GIMPNet.org
  • 2. Outline Why bother? The free lunch An awesome idea Remaining performant ParallelFx The big picture Tasks and co PLinq State of things A note for the future
  • 3. Why bother? ParallelFx A note for the future Questions Why are we bothering with parallelization 3 / 23
  • 4. Why bother? ParallelFx A note for the future Questions Why are we bothering with parallelization Everyone loves his single thread 3 / 23
  • 5. Why bother? ParallelFx A note for the future Questions Why are we bothering with parallelization Everyone loves his single thread “The ideal number of thread you should use is 1” – Alan Mc Govern Mono hacker 3 / 23
  • 6. Why bother? ParallelFx A note for the future Questions Why are we bothering with parallelization Everyone loves his single thread – Alan Mc Govern Mono hacker 3 / 23
  • 7. Why bother? ParallelFx A note for the future Questions Why are we bothering with parallelization 4 / 23
  • 8. Why bother? ParallelFx A note for the future Questions Why are we bothering with parallelization Because the free lunch is over! 4 / 23
  • 9. Why bother? ParallelFx A note for the future Questions Free lunch? 70’s - 2005: Moore’s law in action Intel Processor Clock Speed (MHz) 10000 Pentium 4 (Prescott) Core 2 Extreme 1000 Pentium III Celeron Multicore crisis Pentium is here ! 100 80486 80386 10 80286 8080 1 1968 1973 1979 1984 1990 1995 2001 2006 0.1 Source: Smoothspan blog 5 / 23
  • 10. Why bother? ParallelFx A note for the future Questions The awesome idea 6 / 23
  • 11. Why bother? ParallelFx A note for the future Questions The awesome idea Can’t scale vertically? Scale horizontally! 6 / 23
  • 12. Why bother? ParallelFx A note for the future Questions Trend of things Number of cores 1 2 4 12ish 80 Core 2 Intel Pentium Core Duo Core i7-980X Quad prototype 7 / 23
  • 13. Why bother? ParallelFx A note for the future Questions Problem 8 / 23
  • 14. Why bother? ParallelFx A note for the future Questions Problem No more magical free-lunch 8 / 23
  • 15. Why bother? ParallelFx A note for the future Questions Solution Let’s break up work... ....and share it among cores 9 / 23
  • 16. Why bother? ParallelFx A note for the future Questions Errr... 10 / 23
  • 17. Why bother? ParallelFx A note for the future Questions Parallelization is difficult 11 / 23
  • 18. Why bother? ParallelFx A note for the future Questions Parallelization is difficult Hard: is that stuff really thread safe? 11 / 23
  • 19. Why bother? ParallelFx A note for the future Questions Parallelization is difficult Hard: is that stuff really thread safe? Tedious: whose turn is it to debug deadlocks? 11 / 23
  • 20. Why bother? ParallelFx A note for the future Questions Parallelization is difficult Hard: is that stuff really thread safe? Tedious: whose turn is it to debug deadlocks? Inefficient: how many thread to use? 11 / 23
  • 21. Why bother? ParallelFx A note for the future Questions Parallelization is difficult Hard: is that stuff really thread safe? Tedious: whose turn is it to debug deadlocks? Inefficient: how many thread to use? Too few: it’s not scaling 11 / 23
  • 22. Why bother? ParallelFx A note for the future Questions Parallelization is difficult Hard: is that stuff really thread safe? Tedious: whose turn is it to debug deadlocks? Inefficient: how many thread to use? Too few: it’s not scaling Too much: context-switching hurts performance 11 / 23
  • 23. Why bother? ParallelFx A note for the future Questions Parallelization is difficult Hard: is that stuff really thread safe? Tedious: whose turn is it to debug deadlocks? Inefficient: how many thread to use? Too few: it’s not scaling Too much: context-switching hurts performance What if the number of core changes? 11 / 23
  • 24. Why bother? ParallelFx A note for the future Questions KISS time (Keep it simple, stupid) We need something different : 12 / 23
  • 25. Why bother? ParallelFx A note for the future Questions KISS time (Keep it simple, stupid) We need something different : Automagically regulate thread usage at runtime 12 / 23
  • 26. Why bother? ParallelFx A note for the future Questions KISS time (Keep it simple, stupid) We need something different : Automagically regulate thread usage at runtime As straightforward as possible 12 / 23
  • 27. Why bother? ParallelFx A note for the future Questions KISS time (Keep it simple, stupid) We need something different : Automagically regulate thread usage at runtime As straightforward as possible Simulate familiar constructs 12 / 23
  • 28. Why bother? ParallelFx A note for the future Questions KISS time (Keep it simple, stupid) We need something different : Automagically regulate thread usage at runtime As straightforward as possible Simulate familiar constructs Reuse existing code with only slight modification 12 / 23
  • 29. Why bother? ParallelFx A note for the future Questions Enter ParallelFx ParallelFx at a glance 13 / 23
  • 30. Why bother? ParallelFx A note for the future Questions At the heart Work-stealing scheduler Mono Application Shared ParallelFX library work pool (Scheduler) Retrieve Local work Steal Local work pool pool Thread Manage Thread Worker Worker OS OS thread thread 14 / 23
  • 31. Why bother? ParallelFx A note for the future Questions Tasks CancellationTokenSource source = new CancellationTokenSource (); Task task = Task.Factory.StartNew (() => DoSomeStuff (), source.Token); Task continuation = task.ContinueWith ((t) => Console.WriteLine ("task finished"); source.Cancel (); t.Wait (); 15 / 23
  • 32. Why bother? ParallelFx A note for the future Questions Future (Task<T>) static int SumParallel (Tree<int> tree, int curDepth) { const int SequentialThreshold = 3; if (tree == null) return 0; if (curDepth > SequentialThreshold) return SumSequentialInternal (tree); int right = SumParallel (tree.Right, curDepth + 1); Task<int> left = Task.Factory.StartNew (() => SumParallel (tree.Left, curDepth + 1)); return tree.Data + left.Value + right; } 16 / 23
  • 33. Why bother? ParallelFx A note for the future Questions Parallel.For Fractal fractal = new Fractal (width, height); ColorChooser colorChooser = new ColorChooser (); Parallel.For (0, width, (i) => { for (int j = 0; j < height; j++) { ProcessPixel (i, j, fractal, colorChooser); } }); 17 / 23
  • 34. Why bother? ParallelFx A note for the future Questions Demo: Parallel For Demo: image processing with parallel loops 18 / 23
  • 35. Why bother? ParallelFx A note for the future Questions PLinq ParallelEnumerable.Range (1, 1000)./* ... */ ParallelEnumerable.Repeat (‘‘Rupert’’, 1000)./* ... */ enumerable.AsParallel ()./* ... */ var query = from x in Directory.GetFiles ("/etc/") .AsParallel () where x.EndsWith (".conf") select x; query.ForAll ((e) => { Console.WriteLine ("{0} from {1}", e, Thread.CurrentThread.ManagedThreadId); }); 19 / 23
  • 36. Why bother? ParallelFx A note for the future Questions Demo: PLinq Demo: raytracing the PLinq way 20 / 23
  • 37. Why bother? ParallelFx A note for the future Questions State of things Mono 2.6 (December 2009): .NET 4 beta 1 Task, Future, Parallel loops Concurrent collections Coordination data structures Mono 2.8 (or git master): .NET 4 compliant Enabled by default Tons of improvement With PLinq! 21 / 23
  • 38. Why bother? ParallelFx A note for the future Questions A note for the future 22 / 23
  • 39. Why bother? ParallelFx A note for the future Questions A note for the future GLinq: GPGPU-powered Linq 22 / 23
  • 40. Why bother? ParallelFx A note for the future Questions A note for the future GLinq: GPGPU-powered Linq Re-use PLinq pipeline 22 / 23
  • 41. Why bother? ParallelFx A note for the future Questions A note for the future GLinq: GPGPU-powered Linq Re-use PLinq pipeline Same design guidelines than PLinq: simplicity, transparency 22 / 23
  • 42. Why bother? ParallelFx A note for the future Questions A note for the future GLinq: GPGPU-powered Linq Re-use PLinq pipeline Same design guidelines than PLinq: simplicity, transparency Rewrite C# code in OpenCL (Expression trees FTW!) 22 / 23
  • 43. Why bother? ParallelFx A note for the future Questions A note for the future GLinq: GPGPU-powered Linq Re-use PLinq pipeline Same design guidelines than PLinq: simplicity, transparency Rewrite C# code in OpenCL (Expression trees FTW!) Transparent mapping of OpenCL idioms to .NET 22 / 23
  • 44. Why bother? ParallelFx A note for the future Questions Closing the curtains 23 / 23