SlideShare a Scribd company logo
BRADLEY MCCREDIE
March 2, 2020
2 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
This presentation contains forward-looking statements concerning Advanced Micro Devices, Inc. (AMD)
including, but not limited to, the timing, features, functionality, availability, performance, expectations and
expected benefits related to AMD’s products, future products and markets, which are made pursuant to
the Safe Harbor provisions of the Private Securities Litigation Reform Act of 1995. Forward-looking
statements are commonly identified by words such as "would," "may," "expects," "believes," "plans,"
"intends," "projects" and other terms with similar meaning. Investors are cautioned that the forward-
looking statements in this presentation are based on current beliefs, assumptions and expectations, speak
only as of the date of this presentation and involve risks and uncertainties that could cause actual results
to differ materially from current expectations. Such statements are subject to certain known and unknown
risks and uncertainties, many of which are difficult to predict and generally beyond AMD's control, that
could cause actual results and other future events to differ materially from those expressed in, or implied
or projected by, the forward-looking information and statements. Investors are urged to review in detail
the risks and uncertainties in AMD's Securities and Exchange Commission filings including, but not limited
to, AMD’s Annual Report on Form 10-K for the year ended December 28, 2019.
3 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
4 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 * SOURCE: AMD, SEE END NOTES
5 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
RETICLE LIMIT
*SEE END NOTES
6 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
Time
Technology Gains
Demand
*ILLUSTRATIVE ONLY
7 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 USE OF THIRD PARTY MARKS / LOGOS/ PRODUCTS IS FOR INFORMATIONAL PURPOSES ONLY AND NO ENDORSEMENT OF OR BY AMD IS INTENDED OR IMPLIED. GD-83
8 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
9 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
10 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
2013 2014 2015 2016 2017 2018 2019 2020
*SEE END NOTES
11 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020






12 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
Time
uArch Innovation
Technology Gains
Demand
*ILLUSTRATIVE ONLY
13 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
14 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 *ILLUSTRATIVE ONLY
15 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
FLOPs/Watt FLOPs/mm2
CPU Vector Optimzed CPU GPU
16 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
17 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
CPU GPU GPU
GPU0
Memory
GPU1
Memory
System
Memory
CPU GPU GPU
GPU0
Memory
GPU1
Memory
System
Memory
18 CORPORATE TEMPLATE | AMD CONFIDENTIAL | 2020
[AMD Official Use Only - Internal Distribution Only]
CPU CODE
char **data;
data = (char**)malloc(N*sizeof(char*));
for (int i = 0; i < N; i++) data[i] = i;
cpu_kernel (data, N);
GPU CODE W/O UNIFIED MEMORY
More Lines of Code -> More Complex for Developers
char **data;
data = (char**)malloc(N*sizeof(char*));
for (int i = 0; i < N; i++) data[i] = i;
char **device_data;
for (int i = 0; i < N; i++) {
hipMalloc(&host_data[i], N);
hipMemcpy(host_data[i], data[i], N, ...);
}
hipMalloc(&device_data, N*sizeof(char*));
hipMemcpy(device_data, host_data, N*sizeof(char*), ...);
gpu_kernel<<<...>>> (data, N);
GPU CODE W/ UNIFIED MEMORY
Like CPU Code, but Accelerated
char **data;
data = (char**)malloc(N*sizeof(char*));
for (int i = 0; i < N; i++) data[i] = i;
gpu_kernel <<<...>>> (data, N);
19 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
Time
Hetergenous Solutions
uArch Innovation
Technology Gains
Demand
*ILLUSTRATIVE ONLY
20 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
21 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 USE OF THIRD PARTY MARKS / LOGOS/ PRODUCTS IS FOR INFORMATIONAL PURPOSES ONLY AND NO ENDORSEMENT OF OR BY AMD IS INTENDED OR IMPLIED. GD-83
22 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
Industry leading HPC & ML frameworks for portability
Standard Math and Communication Libraries
C/C++, Python, Fortran
 
 
 
 
CPU GPU
Profilers, Tracers, and Debuggers
for Developers System management for IT
23 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
Virtually
Automatic
Conversion
Developer
maintains HIP port
Portable HIP C++
CUDA-based
application
“HIPify”
Resulting C++ code
runs on NVIDIA or
AMD GPUs
AMD
NVIDIA
24 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
Time
Open Innovation
Hetergenous Solutions
uArch Innovation
Technology Gains
Demand
*ILLUSTRATIVE ONLY
25 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
Architected together for scale and simplicity
Scaling TCO in a Post Moore's Era
27 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
Slides 6, 7
L. T. Su, S. Naffziger and M. Papermaster, "Multi-chip technologies to unleash computing performance gains over the next decade," 2017 IEEE
International Electron Devices Meeting (IEDM), San Francisco, CA, 2017. https://ieeexplore.ieee.org/abstract/document/8268306
Slide 9, 22
Use of third party marks / logos/ products is for informational purposes only and no endorsement of or by AMD is intended or implied. GD-83
Slide 12
15% IPC claim: AMD "Zen 2" CPU-based system scored an estimated 15% higher than previous generation AMD “Zen” based system using
estimated SPECint®_base2006 results. SPEC and SPECint are registered trademarks of the Standard Performance Evaluation Corporation. See
www.spec.org. EPYC-09
28 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
DISCLAIMER
The information contained herein is for informational purposes only, and is subject to change without notice. While every precaution
has been taken in the preparation of this document, it may contain technical inaccuracies, omissions and typographical errors, and
AMD is under no obligation to update or otherwise correct this information. Advanced Micro Devices, Inc. makes no representations or
warranties with respect to the accuracy or completeness of the contents of this document, and assumes no liability of any kind,
including the implied warranties of noninfringement, merchantability or fitness for particular purposes, with respect to the operation
or use of AMD hardware, software or other products described herein. No license, including implied or arising by estoppel, to any
intellectual property rights is granted by this document. Terms and limitations applicable to the purchase or use of AMD’s products are
as set forth in a signed agreement between the parties or in AMD's Standard Terms and Conditions of Sale. GD-18
©2020 Advanced Micro Devices, Inc. All rights reserved. AMD, the AMD Arrow logo, EPYC, Radeon Instinct, Infinity Fabric and
combinations thereof are trademarks of Advanced Micro Devices, Inc. OpenMP and the OpenMP logo are registered trademarks of the
OpenMP Architecture Review Board. PCIe is a registered trademark of the PCI-SIG Corporation. Other product names used in this
publication are for identification purposes only and may be trademarks of their respective companies.

More Related Content

PPTX
AMD Next Horizon
 
PPTX
AMD Next Horizon
 
PDF
AMD Epyc 7Fx2 Press Deck
PDF
strategic-acquisition-xilinx-investor-presentation.pdf
PPTX
Embedded Platforms Launch Press Presentation
 
PDF
Bhadale group of companies oil gas industry products catalogue
PDF
AMD Q3'22 Earnings Slides_.pdf
PDF
Amd pro graphics showcase presentation
AMD Next Horizon
 
AMD Next Horizon
 
AMD Epyc 7Fx2 Press Deck
strategic-acquisition-xilinx-investor-presentation.pdf
Embedded Platforms Launch Press Presentation
 
Bhadale group of companies oil gas industry products catalogue
AMD Q3'22 Earnings Slides_.pdf
Amd pro graphics showcase presentation

Similar to Scaling TCO in a Post Moore's Era (20)

PDF
Mod Viz Es Q2 2003
PDF
M-RTOS webinar presentation July 20th 2020
PPTX
The_Future_of_Cloud_Computing_in_2027_From_Technology_to_Business_Innovation_...
PDF
AMD CFO Commentary slides 14Q4
PDF
[IGC2018] AMD Don Woligroski - WHY RADEON
PDF
Covid-19 Massive Retrenchment and Unemployment: Individuals Upskilling & Resk...
PDF
ISSCC "Carrizo"
 
PDF
Protection and monetization of 3D printed objects in the spare parts business...
PDF
apidays Singapore 2023 - State of the API Industry, Manjunath Bhat, Gartner
PPTX
GFT - InsurTech Innovation Award 2022
PDF
2018-06-07 dynaCERT Announces Update, New Orders, New Equipment Received for HG2
PDF
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」
PDF
Andre Paul: Importing VMware infrastructures into CloudStack
PDF
T072 310-02 en-ed
PDF
IRJET - A Novel Approach for Automating Vehicle Verification and Tracking
PDF
Rethinking Your LED Heatsinks
PPTX
Programmable Logic Controller (PLC) Market by Product Type, Distribution Chan...
PDF
Roland Berger Industrial Automation Perspective 2019
PDF
Roland Berger Industrial Automation Perspective 2019
PDF
E-Magazine November - 2015
Mod Viz Es Q2 2003
M-RTOS webinar presentation July 20th 2020
The_Future_of_Cloud_Computing_in_2027_From_Technology_to_Business_Innovation_...
AMD CFO Commentary slides 14Q4
[IGC2018] AMD Don Woligroski - WHY RADEON
Covid-19 Massive Retrenchment and Unemployment: Individuals Upskilling & Resk...
ISSCC "Carrizo"
 
Protection and monetization of 3D printed objects in the spare parts business...
apidays Singapore 2023 - State of the API Industry, Manjunath Bhat, Gartner
GFT - InsurTech Innovation Award 2022
2018-06-07 dynaCERT Announces Update, New Orders, New Equipment Received for HG2
PCCC23:日本AMD株式会社 テーマ1「AMD Instinct™ アクセラレーターの概要」
Andre Paul: Importing VMware infrastructures into CloudStack
T072 310-02 en-ed
IRJET - A Novel Approach for Automating Vehicle Verification and Tracking
Rethinking Your LED Heatsinks
Programmable Logic Controller (PLC) Market by Product Type, Distribution Chan...
Roland Berger Industrial Automation Perspective 2019
Roland Berger Industrial Automation Perspective 2019
E-Magazine November - 2015
Ad

More from inside-BigData.com (20)

PDF
Major Market Shifts in IT
PDF
Preparing to program Aurora at Exascale - Early experiences and future direct...
PPTX
Transforming Private 5G Networks
PDF
The Incorporation of Machine Learning into Scientific Simulations at Lawrence...
PDF
How to Achieve High-Performance, Scalable and Distributed DNN Training on Mod...
PDF
Evolving Cyberinfrastructure, Democratizing Data, and Scaling AI to Catalyze ...
PDF
HPC Impact: EDA Telemetry Neural Networks
PDF
Biohybrid Robotic Jellyfish for Future Applications in Ocean Monitoring
PDF
Machine Learning for Weather Forecasts
PPTX
HPC AI Advisory Council Update
PDF
Fugaku Supercomputer joins fight against COVID-19
PDF
Energy Efficient Computing using Dynamic Tuning
PDF
HPC at Scale Enabled by DDN A3i and NVIDIA SuperPOD
PDF
State of ARM-based HPC
PDF
Versal Premium ACAP for Network and Cloud Acceleration
PDF
Zettar: Moving Massive Amounts of Data across Any Distance Efficiently
PDF
CUDA-Python and RAPIDS for blazing fast scientific computing
PDF
Introducing HPC with a Raspberry Pi Cluster
PDF
Overview of HPC Interconnects
PDF
Efficient Model Selection for Deep Neural Networks on Massively Parallel Proc...
Major Market Shifts in IT
Preparing to program Aurora at Exascale - Early experiences and future direct...
Transforming Private 5G Networks
The Incorporation of Machine Learning into Scientific Simulations at Lawrence...
How to Achieve High-Performance, Scalable and Distributed DNN Training on Mod...
Evolving Cyberinfrastructure, Democratizing Data, and Scaling AI to Catalyze ...
HPC Impact: EDA Telemetry Neural Networks
Biohybrid Robotic Jellyfish for Future Applications in Ocean Monitoring
Machine Learning for Weather Forecasts
HPC AI Advisory Council Update
Fugaku Supercomputer joins fight against COVID-19
Energy Efficient Computing using Dynamic Tuning
HPC at Scale Enabled by DDN A3i and NVIDIA SuperPOD
State of ARM-based HPC
Versal Premium ACAP for Network and Cloud Acceleration
Zettar: Moving Massive Amounts of Data across Any Distance Efficiently
CUDA-Python and RAPIDS for blazing fast scientific computing
Introducing HPC with a Raspberry Pi Cluster
Overview of HPC Interconnects
Efficient Model Selection for Deep Neural Networks on Massively Parallel Proc...
Ad

Recently uploaded (20)

PDF
Advanced Soft Computing BINUS July 2025.pdf
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
GamePlan Trading System Review: Professional Trader's Honest Take
PDF
KodekX | Application Modernization Development
PDF
Modernizing your data center with Dell and AMD
PDF
Machine learning based COVID-19 study performance prediction
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
PDF
Approach and Philosophy of On baking technology
PPTX
Big Data Technologies - Introduction.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
cuic standard and advanced reporting.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Advanced Soft Computing BINUS July 2025.pdf
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Advanced methodologies resolving dimensionality complications for autism neur...
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
GDG Cloud Iasi [PUBLIC] Florian Blaga - Unveiling the Evolution of Cybersecur...
Spectral efficient network and resource selection model in 5G networks
GamePlan Trading System Review: Professional Trader's Honest Take
KodekX | Application Modernization Development
Modernizing your data center with Dell and AMD
Machine learning based COVID-19 study performance prediction
CIFDAQ's Market Insight: SEC Turns Pro Crypto
20250228 LYD VKU AI Blended-Learning.pptx
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
Approach and Philosophy of On baking technology
Big Data Technologies - Introduction.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
cuic standard and advanced reporting.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...

Scaling TCO in a Post Moore's Era

  • 2. 2 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 This presentation contains forward-looking statements concerning Advanced Micro Devices, Inc. (AMD) including, but not limited to, the timing, features, functionality, availability, performance, expectations and expected benefits related to AMD’s products, future products and markets, which are made pursuant to the Safe Harbor provisions of the Private Securities Litigation Reform Act of 1995. Forward-looking statements are commonly identified by words such as "would," "may," "expects," "believes," "plans," "intends," "projects" and other terms with similar meaning. Investors are cautioned that the forward- looking statements in this presentation are based on current beliefs, assumptions and expectations, speak only as of the date of this presentation and involve risks and uncertainties that could cause actual results to differ materially from current expectations. Such statements are subject to certain known and unknown risks and uncertainties, many of which are difficult to predict and generally beyond AMD's control, that could cause actual results and other future events to differ materially from those expressed in, or implied or projected by, the forward-looking information and statements. Investors are urged to review in detail the risks and uncertainties in AMD's Securities and Exchange Commission filings including, but not limited to, AMD’s Annual Report on Form 10-K for the year ended December 28, 2019.
  • 3. 3 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
  • 4. 4 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 * SOURCE: AMD, SEE END NOTES
  • 5. 5 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 RETICLE LIMIT *SEE END NOTES
  • 6. 6 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 Time Technology Gains Demand *ILLUSTRATIVE ONLY
  • 7. 7 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 USE OF THIRD PARTY MARKS / LOGOS/ PRODUCTS IS FOR INFORMATIONAL PURPOSES ONLY AND NO ENDORSEMENT OF OR BY AMD IS INTENDED OR IMPLIED. GD-83
  • 8. 8 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
  • 9. 9 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
  • 10. 10 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 2013 2014 2015 2016 2017 2018 2019 2020 *SEE END NOTES
  • 11. 11 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020      
  • 12. 12 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 Time uArch Innovation Technology Gains Demand *ILLUSTRATIVE ONLY
  • 13. 13 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
  • 14. 14 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 *ILLUSTRATIVE ONLY
  • 15. 15 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 FLOPs/Watt FLOPs/mm2 CPU Vector Optimzed CPU GPU
  • 16. 16 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
  • 17. 17 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 CPU GPU GPU GPU0 Memory GPU1 Memory System Memory CPU GPU GPU GPU0 Memory GPU1 Memory System Memory
  • 18. 18 CORPORATE TEMPLATE | AMD CONFIDENTIAL | 2020 [AMD Official Use Only - Internal Distribution Only] CPU CODE char **data; data = (char**)malloc(N*sizeof(char*)); for (int i = 0; i < N; i++) data[i] = i; cpu_kernel (data, N); GPU CODE W/O UNIFIED MEMORY More Lines of Code -> More Complex for Developers char **data; data = (char**)malloc(N*sizeof(char*)); for (int i = 0; i < N; i++) data[i] = i; char **device_data; for (int i = 0; i < N; i++) { hipMalloc(&host_data[i], N); hipMemcpy(host_data[i], data[i], N, ...); } hipMalloc(&device_data, N*sizeof(char*)); hipMemcpy(device_data, host_data, N*sizeof(char*), ...); gpu_kernel<<<...>>> (data, N); GPU CODE W/ UNIFIED MEMORY Like CPU Code, but Accelerated char **data; data = (char**)malloc(N*sizeof(char*)); for (int i = 0; i < N; i++) data[i] = i; gpu_kernel <<<...>>> (data, N);
  • 19. 19 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 Time Hetergenous Solutions uArch Innovation Technology Gains Demand *ILLUSTRATIVE ONLY
  • 20. 20 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020
  • 21. 21 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 USE OF THIRD PARTY MARKS / LOGOS/ PRODUCTS IS FOR INFORMATIONAL PURPOSES ONLY AND NO ENDORSEMENT OF OR BY AMD IS INTENDED OR IMPLIED. GD-83
  • 22. 22 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 Industry leading HPC & ML frameworks for portability Standard Math and Communication Libraries C/C++, Python, Fortran         CPU GPU Profilers, Tracers, and Debuggers for Developers System management for IT
  • 23. 23 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 Virtually Automatic Conversion Developer maintains HIP port Portable HIP C++ CUDA-based application “HIPify” Resulting C++ code runs on NVIDIA or AMD GPUs AMD NVIDIA
  • 24. 24 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 Time Open Innovation Hetergenous Solutions uArch Innovation Technology Gains Demand *ILLUSTRATIVE ONLY
  • 25. 25 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 Architected together for scale and simplicity
  • 27. 27 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 Slides 6, 7 L. T. Su, S. Naffziger and M. Papermaster, "Multi-chip technologies to unleash computing performance gains over the next decade," 2017 IEEE International Electron Devices Meeting (IEDM), San Francisco, CA, 2017. https://ieeexplore.ieee.org/abstract/document/8268306 Slide 9, 22 Use of third party marks / logos/ products is for informational purposes only and no endorsement of or by AMD is intended or implied. GD-83 Slide 12 15% IPC claim: AMD "Zen 2" CPU-based system scored an estimated 15% higher than previous generation AMD “Zen” based system using estimated SPECint®_base2006 results. SPEC and SPECint are registered trademarks of the Standard Performance Evaluation Corporation. See www.spec.org. EPYC-09
  • 28. 28 RICE OIL&GAS HPC CONFERENCE | MARCH 2, 2020 DISCLAIMER The information contained herein is for informational purposes only, and is subject to change without notice. While every precaution has been taken in the preparation of this document, it may contain technical inaccuracies, omissions and typographical errors, and AMD is under no obligation to update or otherwise correct this information. Advanced Micro Devices, Inc. makes no representations or warranties with respect to the accuracy or completeness of the contents of this document, and assumes no liability of any kind, including the implied warranties of noninfringement, merchantability or fitness for particular purposes, with respect to the operation or use of AMD hardware, software or other products described herein. No license, including implied or arising by estoppel, to any intellectual property rights is granted by this document. Terms and limitations applicable to the purchase or use of AMD’s products are as set forth in a signed agreement between the parties or in AMD's Standard Terms and Conditions of Sale. GD-18 ©2020 Advanced Micro Devices, Inc. All rights reserved. AMD, the AMD Arrow logo, EPYC, Radeon Instinct, Infinity Fabric and combinations thereof are trademarks of Advanced Micro Devices, Inc. OpenMP and the OpenMP logo are registered trademarks of the OpenMP Architecture Review Board. PCIe is a registered trademark of the PCI-SIG Corporation. Other product names used in this publication are for identification purposes only and may be trademarks of their respective companies.