Skip to content

Commit 4c61931

Browse files
authored
updated GPU Occupancy Calculator (#2353)
1 parent ccd57a1 commit 4c61931

File tree

2 files changed

+511
-333
lines changed

2 files changed

+511
-333
lines changed

Tools/GPU-Occupancy-Calculator/README.md

+12-18
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,20 @@ for GPU/HPC application development.
77

88
## Tool Details
99

10-
* Allows user to pick a GPU SKU, input Global Size of HPC application,
11-
Work-Group(WG) size, Sub-Group size, Shared Local Memory(SLM) size and barrier
12-
usage.
13-
* Computes Sub-Slice/Dual Sub-Slice (SS/DSS) Theoretical Occupancy based
14-
on the inputs.
15-
* Generates charts for Impact of varying Work-Group size and
16-
Impact of varying Shared Local Memory size.
17-
* Generates a list of all valid
18-
Work-Group sizes that can be used and corresponding Occupancy.
19-
* Generates a list of optimal configuration values for WG, SG and SLM limit that
20-
will get 100% Occupancy.
10+
The Intel GPU Occupancy tool will compute the theoretical GPU Occupancy for Intel GPU devices based on GPU Kernel code parameters. The Occupancy value will determine whether the GPU is efficiently utilizing all the GPU hardware resources. The tool will also generate graphs that will help optimize GPU Occupancy.
11+
12+
* Allows user to select a GPU, input Global Size of HPC application,
13+
Work-Group(WG) size, Sub-Group(SG) size and Shared Local Memory(SLM) size.
14+
* Computes Theoretical Occupancy based on the inputs.
15+
* Generates charts for Impact of varying Work-Group size, Impact of varying Shared Local Memory size and GPU Occupancy graph for the workload.
2116

2217
## Usage
2318
* Open Page: [oneapi-src.github.io/oneAPI-samples/Tools/GPU-Occupancy-Calculator/](https://oneapi-src.github.io/oneAPI-samples/Tools/GPU-Occupancy-Calculator/)
24-
* Select a GPU from the dropdown and change "EU Count" if necessary OR select
19+
* Select a GPU from the dropdown and change "XVE Count" if necessary OR select
2520
the option to enter PCI ID for GPU.
26-
* The tool will load some default values for Global Size, WG size, SG size,
27-
SLM size and will compute Occupancy and generate graphs.
28-
* Change the values of GPU target, Global size, WG size, SG size, SLM size or
29-
Barrier usage based on your HPC application to calculate Occupancy and tune application.
21+
* The tool will load some default values for Global Size, Work-Group size, Sub-Group size,
22+
Local Memory size and will compute Occupancy and generate graphs.
23+
* Change the values of Global size, Work-Group size, Sub-Group size or Local Memory size based on your HPC application to calculate Occupancy and tune application.
3024

3125

3226
### Custom GPU Configuration:
@@ -36,7 +30,7 @@ An example of a custom configuration and corresponding description are listed be
3630

3731
Example of Intel GPU Occupancy Calculator with Custom GPU configuration:
3832

39-
`https://oneapi-src.github.io/oneAPI-samples/Tools/GPU-Occupancy-Calculator/?gpu=8;8;512;64;true;[32,16];128;128;[0,1,2,4,8,16,24,32,48,64,96,128];1024;64;32;My_GPU`
33+
`https://oneapi-src.github.io/oneAPI-samples/Tools/GPU-Occupancy-Calculator/?gpu=8;8;512;64;true;[32,16];128;128;[0,1,2,4,8,16,24,32,48,64,96,128];1024;64;64;My_GPU`
4034

4135
URL Parameters details are as follows:
4236
```
@@ -51,7 +45,7 @@ URL Parameters details are as follows:
5145
TG_SLM_Sizes = [0,1,2,4,8,16,24,32,48,64,96,128]
5246
Max_Work_Group_Size = 1024
5347
Max_Num_Of_Workgroups = 64
54-
Max_Num_Of_Barrier_Registers = 32
48+
Max_Num_Of_Barrier_Registers = 64
5549
Custom_GPU_Name (Optional) = My_GPU
5650
```
5751
## License

0 commit comments

Comments
 (0)