Difference between revisions of "GPU621/Intel Advisor Assistant"

From CDOT Wiki
Jump to: navigation, search
(Project Name)
(Intel Advisor)
Line 20: Line 20:
 
• Check vectorization efficiency
 
• Check vectorization efficiency
 
• Prototype threading designs
 
• Prototype threading designs
 +
 +
== How to install Intel Advisor ==
 +
The standalone tool is available on Intel’s official website at https://www.intel.com/content/www/us/en/developer/tools/oneapi/advisor.html and it is also a part of the Intel OneAPI Base Toolkit.
  
  
 
== Progress ==
 
== Progress ==

Revision as of 16:15, 8 December 2021

Intel Advisor

Group Members

Introduction to Intel Advisor

Intel advisor is a tool used by developers writing code in Fortran, C, C++, Data Parallel C++ (DPC++), OpenMP, and Python. It will analyze your code written in these languages and help you figure out where you can optimize, and make your application run faster.

It is a part of the Intel OneAPI Base Toolkit that we used in our course – GPU621.

This tool will take your code and help with its performance, it does this through analyzing your code through following key points: • Vectorization and Code Insights • CPU/ Memory Roofline Insights and GPU Roofline Insights • Offload Modeling • GPU Roofline Insights • Threading

Intel Advisor will not write your code, but it will help with optimization. It allows you to: • Model your application performance on an accelerator • Visualize performance bottlenecks on a CPU or GPU using a Roofline chart • Check vectorization efficiency • Prototype threading designs

How to install Intel Advisor

The standalone tool is available on Intel’s official website at https://www.intel.com/content/www/us/en/developer/tools/oneapi/advisor.html and it is also a part of the Intel OneAPI Base Toolkit.


Progress