[PATCH] D94943: [X86][AMX] Fix the typo.

LuoYuanke via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 18 21:05:59 PST 2021


LuoYuanke created this revision.
Herald added a subscriber: pengfei.
LuoYuanke requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.

The dpbsud should be dpbssd.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D94943

Files:
  clang/lib/Headers/amxintrin.h
  clang/test/CodeGen/X86/amx_api.c


Index: clang/test/CodeGen/X86/amx_api.c
===================================================================
--- clang/test/CodeGen/X86/amx_api.c
+++ clang/test/CodeGen/X86/amx_api.c
@@ -27,7 +27,7 @@
     __tile_loadd(&b, buf2, STRIDE);
     __tile_loadd(&c, buf2, STRIDE);
   }
-  __tile_dpbsud(&c, a, b);
+  __tile_dpbssd(&c, a, b);
   __tile_stored(buf, STRIDE, c);
 }
 
@@ -39,11 +39,11 @@
   __tile_loadd(&a, buf, STRIDE);
 }
 
-void test_tile_dpbsud(__tile1024i a, __tile1024i b, __tile1024i c) {
-  //CHECK-LABEL: @test_tile_dpbsud
+void test_tile_dpbssd(__tile1024i a, __tile1024i b, __tile1024i c) {
+  //CHECK-LABEL: @test_tile_dpbssd
   //CHECK: call x86_amx @llvm.x86.tdpbssd.internal
   //CHECK-NEXT: {{%.*}} = bitcast x86_amx {{%.*}} to <256 x i32>
-  __tile_dpbsud(&c, a, b);
+  __tile_dpbssd(&c, a, b);
 }
 
 void test_tile_stored(__tile1024i c) {
Index: clang/lib/Headers/amxintrin.h
===================================================================
--- clang/lib/Headers/amxintrin.h
+++ clang/lib/Headers/amxintrin.h
@@ -258,7 +258,7 @@
 }
 
 __DEFAULT_FN_ATTRS_INT8
-static void __tile_dpbsud(__tile1024i *dst, __tile1024i src1,
+static void __tile_dpbssd(__tile1024i *dst, __tile1024i src1,
                           __tile1024i src2) {
   dst->tile = _tile_dpbssd_internal(src1.row, src2.col, src1.col, dst->tile,
                                     src1.tile, src2.tile);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D94943.317458.patch
Type: text/x-patch
Size: 1398 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210119/770045ff/attachment.bin>


More information about the cfe-commits mailing list