diff options
author | Shilei Tian <i@tianshilei.me> | 2025-07-22 20:00:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-22 20:00:50 -0400 |
commit | fbeb801a718a13ca895ed3db23c6265e93bb9185 (patch) | |
tree | 5b2b63e52fa4c495b7e216d1cfe249162b8bf440 /llvm/lib | |
parent | b2c38f153efe96e4a1497baed9fd25faa1e058c1 (diff) | |
download | llvm-fbeb801a718a13ca895ed3db23c6265e93bb9185.zip llvm-fbeb801a718a13ca895ed3db23c6265e93bb9185.tar.gz llvm-fbeb801a718a13ca895ed3db23c6265e93bb9185.tar.bz2 |
[AMDGPU] Add support for `v_cvt_pk_bf16_f32` on gfx1250 (#150053)
Co-authored-by: Mekhanoshin, Stanislav <Stanislav.Mekhanoshin@amd.com>
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/AMDGPU/VOP3Instructions.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/AMDGPU/VOP3Instructions.td b/llvm/lib/Target/AMDGPU/VOP3Instructions.td index aee2f2c..b6f9568 100644 --- a/llvm/lib/Target/AMDGPU/VOP3Instructions.td +++ b/llvm/lib/Target/AMDGPU/VOP3Instructions.td @@ -1918,6 +1918,7 @@ let AssemblerPredicate = isGFX11Plus in { // These instructions differ from GFX12 variant by supporting DPP: defm V_LSHL_ADD_U64 : VOP3Only_Realtriple_gfx1250<0x252>; +defm V_CVT_PK_BF16_F32 : VOP3Only_Realtriple_gfx1250<0x36d>; //===----------------------------------------------------------------------===// // GFX10. |