Skip to content

updated LNL and BMG device details to GPU Occupancy Calculator #2567

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 153 additions & 15 deletions Tools/GPU-Occupancy-Calculator/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -235,12 +235,48 @@ <h3>Disclaimer</h3>
<script>
var targets = [
{
"name": "Integrated GPU (Xe LPG / Arc™ Graphics)",
"name": "Discrete GPU (Xe2 HPG / Arc™ Graphics / BMG)",
"code": "xe2_hpg",
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 8,
"EU_Count": [320, 288],
"Max_Threads_Per_Sub_Slice": 64,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16],
"SLM_Size_Per_Sub_Slice": 128,
"SLM_Size_Per_Work_Group": 128,
"TG_SLM_Sizes": [0, 1, 2, 4, 8, 16, 24, 32, 48, 64, 96, 128],
"Max_Work_Group_Size": 1024,
"Max_Num_Of_Workgroups": 64,
"Max_Num_Of_Barrier_Registers": 64
}
},
{
"name": "Integrated GPU (Xe2 LPG / Arc™ Graphics / LNL)",
"code": "xe2_lpg",
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 8,
"EU_Count": [64, 56, 32],
"Max_Threads_Per_Sub_Slice": 64,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16],
"SLM_Size_Per_Sub_Slice": 128,
"SLM_Size_Per_Work_Group": 128,
"TG_SLM_Sizes": [0, 1, 2, 4, 8, 16, 24, 32, 48, 64, 96, 128],
"Max_Work_Group_Size": 1024,
"Max_Num_Of_Workgroups": 64,
"Max_Num_Of_Barrier_Registers": 64
}
},
{
"name": "Integrated GPU (Xe LPG / Arc™ Graphics / MTL)",
"code": "xe_lpg",
"device_info": {
"EU_Per_Sub_Slice": 16,
"Threads_Per_EU": 8,
"EU_Count": [48, 64, 112, 128],
"EU_Count": [128, 112, 64, 48],
"Max_Threads_Per_Sub_Slice": 64,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16, 8],
Expand All @@ -253,12 +289,12 @@ <h3>Disclaimer</h3>
}
},
{
"name": "Discrete GPU (Xe HPC / Data Center Max)",
"name": "Discrete GPU (Xe HPC / Data Center Max / PVC)",
"code": "xe_hpc_pvc",
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 8,
"EU_Count": [448, 512, 896, 1024],
"EU_Count": [1024, 896, 512, 448],
"Max_Threads_Per_Sub_Slice": 64,
"Large_GRF_Mode": true,
"Subgroup_Sizes": [32, 16],
Expand All @@ -271,12 +307,12 @@ <h3>Disclaimer</h3>
}
},
{
"name": "Discrete GPU (Xe HPG / Data Center Flex)",
"name": "Discrete GPU (Xe HPG / Data Center Flex / ATSM)",
"code": "xe_hpg_dg2_flex",
"device_info": {
"EU_Per_Sub_Slice": 16,
"Threads_Per_EU": 8,
"EU_Count": [128, 512],
"EU_Count": [512, 128],
"Max_Threads_Per_Sub_Slice": 128,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16, 8],
Expand All @@ -289,12 +325,12 @@ <h3>Disclaimer</h3>
}
},
{
"name": "Discrete GPU (Xe HPG / Arc™ Graphics)",
"name": "Discrete GPU (Xe HPG / Arc™ Graphics / DG2)",
"code": "xe_hpg_dg2_arc",
"device_info": {
"EU_Per_Sub_Slice": 16,
"Threads_Per_EU": 8,
"EU_Count": [96, 128, 256, 384, 448, 512],
"EU_Count": [512, 448, 384, 256, 128, 96],
"Max_Threads_Per_Sub_Slice": 128,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16, 8],
Expand All @@ -307,7 +343,7 @@ <h3>Disclaimer</h3>
}
},
{
"name": "Discrete GPU (Xe LP / Iris® Xe MAX)",
"name": "Discrete GPU (Xe LP / Iris® Xe MAX / DG1)",
"code": "xe_dg1",
"device_info": {
"EU_Per_Sub_Slice": 16,
Expand All @@ -325,12 +361,12 @@ <h3>Disclaimer</h3>
}
},
{
"name": "Integrated GPU (Xe LP)",
"name": "Integrated GPU (Xe LP / TGL,RPL,RKL,ADL)",
"code": "gen12",
"device_info": {
"EU_Per_Sub_Slice": 16,
"Threads_Per_EU": 7,
"EU_Count": [16, 24, 32, 48, 96],
"EU_Count": [96, 48, 32, 24, 16],
"Max_Threads_Per_Sub_Slice": 112,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16, 8],
Expand All @@ -348,7 +384,7 @@ <h3>Disclaimer</h3>
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 7,
"EU_Count": [32, 48, 64],
"EU_Count": [64, 48, 32],
"Max_Threads_Per_Sub_Slice": 56,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16, 8],
Expand All @@ -366,7 +402,7 @@ <h3>Disclaimer</h3>
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 7,
"EU_Count": [24, 48, 72],
"EU_Count": [72, 48, 24],
"Max_Threads_Per_Sub_Slice": 56,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16, 8],
Expand Down Expand Up @@ -949,7 +985,7 @@ <h3>Disclaimer</h3>
"Max_Num_Of_Barrier_Registers": 64
}
},
//ARC
//DG2
{
"pci_id": ["56A5", "5694"],
"name": "Discrete GPU (Xe HPG)",
Expand Down Expand Up @@ -1154,7 +1190,7 @@ <h3>Disclaimer</h3>
},
// MTL
{
"pci_id": ["7D55"],
"pci_id": ["7D55", "7DD5"],
"name": "Integrated GPU (Xe LPG / Arc™ Graphics)",
"product_name": "Intel® Arc™ Graphics",
"code": "xe_lpg",
Expand All @@ -1173,6 +1209,108 @@ <h3>Disclaimer</h3>
"Max_Num_Of_Barrier_Registers": 64
}
},
{
"pci_id": ["7D45", "7D40"],
"name": "Integrated GPU (Xe LPG / Arc™ Graphics)",
"product_name": "Intel® Graphics",
"code": "xe_lpg",
"device_info": {
"EU_Per_Sub_Slice": 16,
"Threads_Per_EU": 8,
"EU_Count": 64,
"Max_Threads_Per_Sub_Slice": 64,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16, 8],
"SLM_Size_Per_Sub_Slice": 128,
"SLM_Size_Per_Work_Group": 64,
"TG_SLM_Sizes": [0, 1, 2, 4, 8, 16, 32, 64],
"Max_Work_Group_Size": 1024,
"Max_Num_Of_Workgroups": 64,
"Max_Num_Of_Barrier_Registers": 64
}
},
// LNL
{
"pci_id": ["64A0", "6420"],
"name": "Integrated GPU (Xe2 LPG / Arc™ Graphics)",
"product_name": "Intel® Arc™ Graphics",
"code": "xe2_lpg",
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 8,
"EU_Count": 64,
"Max_Threads_Per_Sub_Slice": 64,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16],
"SLM_Size_Per_Sub_Slice": 128,
"SLM_Size_Per_Work_Group": 128,
"TG_SLM_Sizes": [0, 1, 2, 4, 8, 16, 24, 32, 48, 64, 96, 128],
"Max_Work_Group_Size": 1024,
"Max_Num_Of_Workgroups": 64,
"Max_Num_Of_Barrier_Registers": 64
}
},
{
"pci_id": ["64B0"],
"name": "Integrated GPU (Xe2 LPG / Arc™ Graphics)",
"product_name": "Intel® Graphics",
"code": "xe2_lpg",
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 8,
"EU_Count": 32,
"Max_Threads_Per_Sub_Slice": 32,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16],
"SLM_Size_Per_Sub_Slice": 128,
"SLM_Size_Per_Work_Group": 128,
"TG_SLM_Sizes": [0, 1, 2, 4, 8, 16, 24, 32, 48, 64, 96, 128],
"Max_Work_Group_Size": 1024,
"Max_Num_Of_Workgroups": 64,
"Max_Num_Of_Barrier_Registers": 64
}
},
// BMG
{
"pci_id": ["E20B"],
"name": "Discrete GPU (Xe2 HPG / Arc™ Graphics)",
"product_name": "Intel® Arc™ B580 Graphicss",
"code": "xe2_hpg",
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 8,
"EU_Count": 320,
"Max_Threads_Per_Sub_Slice": 32,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16],
"SLM_Size_Per_Sub_Slice": 128,
"SLM_Size_Per_Work_Group": 128,
"TG_SLM_Sizes": [0, 1, 2, 4, 8, 16, 24, 32, 48, 64, 96, 128],
"Max_Work_Group_Size": 1024,
"Max_Num_Of_Workgroups": 64,
"Max_Num_Of_Barrier_Registers": 64
}
},
{
"pci_id": ["E20C"],
"name": "Discrete GPU (Xe2 HPG / Arc™ Graphics)",
"product_name": "Intel® Arc™ B570 Graphics",
"code": "xe2_hpg",
"device_info": {
"EU_Per_Sub_Slice": 8,
"Threads_Per_EU": 8,
"EU_Count": 288,
"Max_Threads_Per_Sub_Slice": 32,
"Large_GRF_Mode": false,
"Subgroup_Sizes": [32, 16],
"SLM_Size_Per_Sub_Slice": 128,
"SLM_Size_Per_Work_Group": 128,
"TG_SLM_Sizes": [0, 1, 2, 4, 8, 16, 24, 32, 48, 64, 96, 128],
"Max_Work_Group_Size": 1024,
"Max_Num_Of_Workgroups": 64,
"Max_Num_Of_Barrier_Registers": 64
}
},
];

var gpu = {};
Expand Down