diff options
author | Matt Arsenault <Matthew.Arsenault@amd.com> | 2024-11-18 10:41:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 10:41:14 -0800 |
commit | a6fc489bb7a2e9fb3a7f70cccc181e4ee70374bf (patch) | |
tree | 684754914cb9844c38cef5dae7269ecb14889995 /clang/lib/Basic/Cuda.cpp | |
parent | 18be88e20abd9046217d79954c0477ee01ddd2f3 (diff) | |
download | llvm-a6fc489bb7a2e9fb3a7f70cccc181e4ee70374bf.zip llvm-a6fc489bb7a2e9fb3a7f70cccc181e4ee70374bf.tar.gz llvm-a6fc489bb7a2e9fb3a7f70cccc181e4ee70374bf.tar.bz2 |
AMDGPU: Add gfx950 subtarget definitions (#116307)
Mostly a stub, but adds some baseline tests and
tests for removed instructions.
Diffstat (limited to 'clang/lib/Basic/Cuda.cpp')
-rw-r--r-- | clang/lib/Basic/Cuda.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Basic/Cuda.cpp b/clang/lib/Basic/Cuda.cpp index 59c9324..d56609a 100644 --- a/clang/lib/Basic/Cuda.cpp +++ b/clang/lib/Basic/Cuda.cpp @@ -125,6 +125,7 @@ static const OffloadArchToStringMap arch_names[] = { GFX(940), // gfx940 GFX(941), // gfx941 GFX(942), // gfx942 + GFX(950), // gfx950 {OffloadArch::GFX10_1_GENERIC, "gfx10-1-generic", "compute_amdgcn"}, GFX(1010), // gfx1010 GFX(1011), // gfx1011 |