mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
amd: set the correct LLVM processor name for gfx1036
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22084>
This commit is contained in:
parent
0b6a7cba0b
commit
e0d449dd40
1 changed files with 2 additions and 2 deletions
|
|
@ -174,8 +174,8 @@ const char *ac_get_llvm_processor_name(enum radeon_family family)
|
|||
return LLVM_VERSION_MAJOR >= 13 ? "gfx1034" : "gfx1030";
|
||||
case CHIP_REMBRANDT:
|
||||
return LLVM_VERSION_MAJOR >= 13 ? "gfx1035" : "gfx1030";
|
||||
case CHIP_RAPHAEL_MENDOCINO: /* TODO: LLVM 15 doesn't support this yet */
|
||||
return "gfx1030";
|
||||
case CHIP_RAPHAEL_MENDOCINO:
|
||||
return LLVM_VERSION_MAJOR >= 15 ? "gfx1036" : "gfx1030";
|
||||
case CHIP_GFX1100:
|
||||
return "gfx1100";
|
||||
case CHIP_GFX1101:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue