$30 off During Our Annual Pro Sale. View Details »
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
79
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
57
5 coisas que todo dev deveria saber Para criar aplicações com GenAI
gustavopinto
0
70
Large Language Models for Education: Grading Open-Ended Questions Using ChatGPT
gustavopinto
0
82
Cognitive Driven Development: A Research Agenda
gustavopinto
0
81
The Infinite Academic Game
gustavopinto
0
44
[ESEM 2022] To What Extent Cognitive Driven Development Improves Code Readability
gustavopinto
0
93
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
90
Featured
See All Featured
Imperfection Machines: The Place of Print at Facebook
scottboms
266
13k
BBQ
matthewcrist
85
9.3k
The World Runs on Bad Software
bkeepers
PRO
65
11k
Code Review Best Practice
trishagee
64
17k
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.2k
Building Adaptive Systems
keathley
38
2.3k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
48
2.2k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
1.9k
How to train your dragon (web standard)
notwaldorf
88
5.7k
Building Flexible Design Systems
yeseniaperezcruz
327
38k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
665
120k
Keith and Marios Guide to Fast Websites
keithpitt
410
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]