Skip to content

Commit 56f3602

Browse files
authored
Merge pull request #2628 from krisrak/20250308-occcal-main
fixed BMG EU counts
2 parents bbb05ef + 38dfa95 commit 56f3602

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Tools/GPU-Occupancy-Calculator/index.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@
8181
<script>
8282
// Links used from GPU Optimization Guide
8383
var href_gpu_list = "https://dgpu-docs.intel.com/devices/hardware-table.html";
84-
var href_grf_modes = "https://www.intel.com/content/www/us/en/docs/oneapi/optimization-guide-gpu/current/grf-mode-selection.html";
85-
var href_gpu_architecture = "https://www.intel.com/content/www/us/en/docs/oneapi/optimization-guide-gpu/current/xe-arch.html";
86-
var href_gpu_occupancy = "https://www.intel.com/content/www/us/en/docs/oneapi/optimization-guide-gpu/current/thread-mapping.html";
87-
var href_sub_groups = "https://www.intel.com/content/www/us/en/docs/oneapi/optimization-guide-gpu/current/sub-group.html";
84+
var href_grf_modes = "https://www.intel.com/content/www/us/en/docs/oneapi/optimization-guide-gpu/current/small-register-mode-vs-large-register-mode.html";
85+
var href_gpu_architecture = "https://www.intel.com/content/www/us/en/docs/oneapi/optimization-guide-gpu/current/intel-xe-gpu-architecture.html";
86+
var href_gpu_occupancy = "https://www.intel.com/content/www/us/en/docs/oneapi/optimization-guide-gpu/current/thread-mapping-and-gpu-occupancy.html";
87+
var href_sub_groups = "https://www.intel.com/content/www/us/en/docs/oneapi/optimization-guide-gpu/current/sub-groups-and-simd-vectorization.html";
8888
</script>
8989
<script>
9090
// Script from: https://www.chartjs.org/dist/master/chart.min.js
@@ -240,7 +240,7 @@ <h3>Disclaimer</h3>
240240
"device_info": {
241241
"EU_Per_Sub_Slice": 8,
242242
"Threads_Per_EU": 8,
243-
"EU_Count": [320, 288],
243+
"EU_Count": [160, 144],
244244
"Max_Threads_Per_Sub_Slice": 64,
245245
"Large_GRF_Mode": false,
246246
"Subgroup_Sizes": [32, 16],
@@ -307,8 +307,8 @@ <h3>Disclaimer</h3>
307307
}
308308
},
309309
{
310-
"name": "Discrete GPU (Xe HPG / Data Center Flex / ATSM)",
311-
"code": "xe_hpg_dg2_flex",
310+
"name": "Discrete GPU (Xe HP / Data Center Flex / ATSM)",
311+
"code": "xe_hp_ats",
312312
"device_info": {
313313
"EU_Per_Sub_Slice": 16,
314314
"Threads_Per_EU": 8,
@@ -1109,9 +1109,9 @@ <h3>Disclaimer</h3>
11091109
//FLEX
11101110
{
11111111
"pci_id": ["56C1"],
1112-
"name": "Discrete GPU (Xe HPG)",
1112+
"name": "Discrete GPU (Xe HP)",
11131113
"product_name": "Intel® Data Center GPU Flex 140",
1114-
"code": "xe_hpg_dg2_flex",
1114+
"code": "xe_hp_ats",
11151115
"device_info": {
11161116
"EU_Per_Sub_Slice": 16,
11171117
"Threads_Per_EU": 8,
@@ -1129,9 +1129,9 @@ <h3>Disclaimer</h3>
11291129
},
11301130
{
11311131
"pci_id": ["56C0"],
1132-
"name": "Discrete GPU (Xe HPG)",
1132+
"name": "Discrete GPU (Xe HP)",
11331133
"product_name": "Intel® Data Center GPU Flex 170",
1134-
"code": "xe_hpg_dg2_flex",
1134+
"code": "xe_hp_ats",
11351135
"device_info": {
11361136
"EU_Per_Sub_Slice": 16,
11371137
"Threads_Per_EU": 8,
@@ -1279,7 +1279,7 @@ <h3>Disclaimer</h3>
12791279
"device_info": {
12801280
"EU_Per_Sub_Slice": 8,
12811281
"Threads_Per_EU": 8,
1282-
"EU_Count": 320,
1282+
"EU_Count": 160,
12831283
"Max_Threads_Per_Sub_Slice": 32,
12841284
"Large_GRF_Mode": false,
12851285
"Subgroup_Sizes": [32, 16],
@@ -1299,7 +1299,7 @@ <h3>Disclaimer</h3>
12991299
"device_info": {
13001300
"EU_Per_Sub_Slice": 8,
13011301
"Threads_Per_EU": 8,
1302-
"EU_Count": 288,
1302+
"EU_Count": 144,
13031303
"Max_Threads_Per_Sub_Slice": 32,
13041304
"Large_GRF_Mode": false,
13051305
"Subgroup_Sizes": [32, 16],

0 commit comments

Comments
 (0)