mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
intel/compiler: Add compiler enum for Xe3
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31838>
This commit is contained in:
parent
f59ae1ec10
commit
cd33b7766a
1 changed files with 2 additions and 0 deletions
|
|
@ -41,6 +41,7 @@ enum gfx_ver {
|
|||
GFX12 = (1 << 10),
|
||||
GFX125 = (1 << 11),
|
||||
XE2 = (1 << 12),
|
||||
XE3 = (1 << 13),
|
||||
GFX_ALL = ~0
|
||||
};
|
||||
|
||||
|
|
@ -64,6 +65,7 @@ gfx_ver_from_devinfo(const struct intel_device_info *devinfo)
|
|||
case 120: return GFX12;
|
||||
case 125: return GFX125;
|
||||
case 200: return XE2;
|
||||
case 300: return XE3;
|
||||
default:
|
||||
unreachable("not reached");
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue