Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Understanding Energy Behaviors of Thread Manage...
Search
Gustavo Pinto
January 14, 2018
0
77
Understanding Energy Behaviors of Thread Management Constructs
Gustavo Pinto
January 14, 2018
Tweet
Share
More Decks by Gustavo Pinto
See All by Gustavo Pinto
Developer Experiences with a Contextualized AI Coding Assistant: Usability Expectations, and Outcomes
gustavopinto
0
9
Apoiando pessoas programadoras com deficiência: Lições aprendidas na Zup Innovation
gustavopinto
0
55
5 coisas que todo dev deveria saber Para criar aplicações com GenAI
gustavopinto
0
68
Large Language Models for Education: Grading Open-Ended Questions Using ChatGPT
gustavopinto
0
81
Cognitive Driven Development: A Research Agenda
gustavopinto
0
81
The Infinite Academic Game
gustavopinto
0
43
[ESEM 2022] To What Extent Cognitive Driven Development Improves Code Readability
gustavopinto
0
90
Caminhos e desafios para a pesquisa em Computação (ou como se manter produtivo) na Região Norte
gustavopinto
2
290
How Open is the SBES PC Community
gustavopinto
0
87
Featured
See All Featured
Git: the NoSQL Database
bkeepers
PRO
427
64k
Why Our Code Smells
bkeepers
PRO
334
57k
The Straight Up "How To Draw Better" Workshop
denniskardys
232
140k
Statistics for Hackers
jakevdp
796
220k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Happy Clients
brianwarren
98
6.7k
Bash Introduction
62gerente
608
210k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
25
1.8k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5k
We Have a Design System, Now What?
morganepeng
50
7.2k
A designer walks into a library…
pauljervisheath
203
24k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
226
22k
Transcript
Understanding Energy Behaviors of Thread Management Constructs Gustavo Pinto1 Fernando
Castor1 David Liu2 {ghlp, castor}@cin.ufpe.br1
[email protected]
2 • First, the proliferation of multicore CPUs • Second,
the prevalence of multi-threaded programs Motivation
3 • First, more cores more power consumed • Second,
little is known about energy behaviors of multi-threaded program on the application and programming language level The Problem
4 1. programming abstractions of thread management on energy efficiency
2. programmer choices of thread management on energy efficiency This Talk for Java multi-threaded programs
5 • Explicit threading (the Thread-style): Using the java.lang.Thread class
• Thread pooling (the Executor-style): Using the java.util.concurrent.Executor framework • Working Stealing (the ForkJoin-style): Using the java.util.concurrent.ForkJoin framework Thread management constructs
6 • Embarrassingly parallel: spectralnorm, sunflow, n-queens • Leaning parallel:
xalan, knucleotide, tomcat • Leaning serial: mandelbrot, largestImage • Embarrassingly serial: h2 Benchmarks
7 • Embarrassingly parallel: spectralnorm, sunflow, n-queens • Leaning parallel:
xalan, knucleotide, tomcat • Leaning serial: mandelbrot, largestImage • Embarrassingly serial: h2 Benchmarks Micro-benchmarks DaCapo benchmarks
8 Experimental Environment A 2×16-core AMD CPUs, running Debian Linux,
64GB of memory, JDK version 1.7.0 11, build 21, “ondemand” governor
9 Experimental Environment A 2×16-core AMD CPUs, running Debian Linux,
64GB of memory, JDK version 1.7.0 11, build 21, “ondemand” governor
10 Experimental Environment A 2×16-core AMD CPUs, running Debian Linux,
64GB of memory, JDK version 1.7.0 11, build 21.
11 Experimental Environment A 2×16-core AMD CPUs, running Debian Linux,
64GB of DDR3 1600 memory, and JDK version 1.7.0 11, build 21.
Energy Consumption When Varying the Number of Threads 12
13 The Λ Curve
14 The Λ Curve
15 The Λ Curve
16 More cores idle CPU frequency at a lower level
The Λ Curve
17 More cores idle CPU frequency at a lower level
More threads used, program completes sooner The greater the ratio between speedup and power, the steeper the \ The Λ Curve
Which programming style should I use? 18 ? ?
Overpopulating Cores with Threads 19
Overpopulating Cores with Threads 20
Faster ≠ Greener 21
Copying vs Sharing 22
Copying vs Sharing 23 Copying
Copying vs Sharing 24 Copying Sharing
Copying vs Sharing 25 Copying Sharing ±15% of energy savings!
26 Copy-Fork
27 After Before Copy-Fork
28 After Before Copy-Fork Copy/Fork/Copy/Fork/…
29 After Before Copy-Fork Copy/Fork/Copy/Fork/…
30 After Before Copy-Fork Copy/Fork/Copy/Fork/… Copy/../Copy/Fork/…/Fork
31 After Before Copy-Fork ±10% of energy savings! Copy/Fork/Copy/Fork/… Copy/../Copy/Fork/…/Fork
Data Size 32
Data Size 33 For most of the cases, energy consumption
is linear to data size!
34
35
36
37
Understanding Energy Behaviors of Thread Management Constructs Gustavo Pinto1 Fernando
Castor1 David Liu2 {ghlp, castor}@cin.ufpe.br1
[email protected]