+ All Categories
Home > Documents > PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive...

PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive...

Date post: 30-May-2020
Category:
Upload: others
View: 11 times
Download: 2 times
Share this document with a friend
13
February 28, 2020 PROFILING
Transcript
Page 1: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

February 28, 2020

PROFILING

Page 2: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

2

NSIGHT DEVELOPER TOOLS

Page 3: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

3

NSIGHT PRODUCT FAMILY

Standalone Performance Tools

Nsight Systems - System-wide application algorithm tuning

Nsight Compute – Debug CUDA API and optimize CUDA kernels

Nsight Graphics - Debug/optimize specific graphics apps

IDE Plugins

Nsight Eclipse Edition/Visual Studio – editor, debugger, some perf analysis

Workflow

NsightSystems

NsightCompute

NsightGraphics

Page 4: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

4

NSIGHT SYSTEMS

System-wide application algorithm tuningMulti-process tree support

Locate optimization opportunities

Visualize millions of events on a fast GUI timeline

Or gaps of unused CPU and GPU time

Balance your workload across multiple CPUs and

GPUs

CPU algorithms, utilization, and thread state

GPU streams, kernels, memory transfers, etc

Multi-platform: Linux, Windows, Mac OS X (host only)

System Profiling Tool

Page 5: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

5

NSIGHT COMPUTE

Key Features:

• Interactive CUDA API debugging and kernel profiling

• Fast Data Collection

• Improved Workflow (diffing results)

• Fully Customizable (programmable UI/Rules)

• Command Line, Standalone, IDE Integration

OS: Linux, Windows, Mac OS X (host only)

GPUs: Volta, Turing

Next-Gen Kernel Profiling Tool

Page 6: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

6

USING NSIGHT SYSTEMS

Page 7: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

7

COLLECT A PROFILE WITH NSIGHT SYSTEMS

$ nsys profile --stats=true ./myapp.exe

Generated file: report.qdrep

Import for viewing into the Nsight Systems UI

The Nsight Systems UI can also be used for interactive system profiling

Page 8: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

8

Page 9: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

9

Page 10: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

10

USING NSIGHT COMPUTE

Page 11: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

11

KERNEL PROFILES WITH NSIGHT COMPUTE

$ nv-nsight-cu-cli –k mykernel ./myapp.exe

(Without the –k option, Nsight Compute will profile everything and take a long time!)

The Nsight Compute UI can also be used for interactive kernel profiling

Page 12: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

12

NSIGHT COMPUTE UI

Page 13: PROFILING - NERSC€¦ · System Profiling Tool. 5 NSIGHT COMPUTE Key Features: • Interactive CUDA API debugging and kernel profiling • Fast Data Collection • Improved Workflow

Recommended