intel: Rename GFX 12.5 to XE_HP

git grep -l "GFX 12\.5" | xargs sed -ie "s/GFX 12\.5/XE_HP/g"

Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/10877>
This commit is contained in:
Anuj Phogat 2021-05-10 15:14:39 -07:00
parent 0e94b17dd1
commit 8e10d54804
2 changed files with 4 additions and 4 deletions

View File

@ -1199,7 +1199,7 @@ _mi_resolve_address_token(struct mi_builder *b,
#if GFX_VERx10 >= 125
/*
* Indirect load/store. Only available on GFX 12.5+
* Indirect load/store. Only available on XE_HP+
*/
MUST_CHECK static inline struct mi_value
@ -1254,7 +1254,7 @@ mi_store_mem64_offset(struct mi_builder *b,
}
/*
* Control-flow Section. Only available on GFX 12.5+
* Control-flow Section. Only available on XE_HP+
*/
struct _mi_goto {

View File

@ -958,7 +958,7 @@ TEST_F(mi_builder_test, store_if)
#if GFX_VERx10 >= 125
/*
* Indirect load/store tests. Only available on GFX 12.5+
* Indirect load/store tests. Only available on XE_HP+
*/
TEST_F(mi_builder_test, load_mem64_offset)
@ -1018,7 +1018,7 @@ TEST_F(mi_builder_test, store_mem64_offset)
}
/*
* Control-flow tests. Only available on GFX 12.5+
* Control-flow tests. Only available on XE_HP+
*/
TEST_F(mi_builder_test, goto)