forked from OSchip/llvm-project
[X86][AMX] Fix the typo.
The dpbsud should be dpbssd. Differential Revision: https://reviews.llvm.org/D94943
This commit is contained in:
parent
39a2a233f8
commit
7e1d2224b4
|
@ -258,7 +258,7 @@ static void __tile_loadd(__tile1024i *dst, const void *base,
|
||||||
}
|
}
|
||||||
|
|
||||||
__DEFAULT_FN_ATTRS_INT8
|
__DEFAULT_FN_ATTRS_INT8
|
||||||
static void __tile_dpbsud(__tile1024i *dst, __tile1024i src1,
|
static void __tile_dpbssd(__tile1024i *dst, __tile1024i src1,
|
||||||
__tile1024i src2) {
|
__tile1024i src2) {
|
||||||
dst->tile = _tile_dpbssd_internal(src1.row, src2.col, src1.col, dst->tile,
|
dst->tile = _tile_dpbssd_internal(src1.row, src2.col, src1.col, dst->tile,
|
||||||
src1.tile, src2.tile);
|
src1.tile, src2.tile);
|
||||||
|
|
|
@ -27,7 +27,7 @@ void test_api(int cond, short row, short col) {
|
||||||
__tile_loadd(&b, buf2, STRIDE);
|
__tile_loadd(&b, buf2, STRIDE);
|
||||||
__tile_loadd(&c, buf2, STRIDE);
|
__tile_loadd(&c, buf2, STRIDE);
|
||||||
}
|
}
|
||||||
__tile_dpbsud(&c, a, b);
|
__tile_dpbssd(&c, a, b);
|
||||||
__tile_stored(buf, STRIDE, c);
|
__tile_stored(buf, STRIDE, c);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,11 +39,11 @@ void test_tile_loadd(short row, short col) {
|
||||||
__tile_loadd(&a, buf, STRIDE);
|
__tile_loadd(&a, buf, STRIDE);
|
||||||
}
|
}
|
||||||
|
|
||||||
void test_tile_dpbsud(__tile1024i a, __tile1024i b, __tile1024i c) {
|
void test_tile_dpbssd(__tile1024i a, __tile1024i b, __tile1024i c) {
|
||||||
//CHECK-LABEL: @test_tile_dpbsud
|
//CHECK-LABEL: @test_tile_dpbssd
|
||||||
//CHECK: call x86_amx @llvm.x86.tdpbssd.internal
|
//CHECK: call x86_amx @llvm.x86.tdpbssd.internal
|
||||||
//CHECK-NEXT: {{%.*}} = bitcast x86_amx {{%.*}} to <256 x i32>
|
//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) {
|
void test_tile_stored(__tile1024i c) {
|
||||||
|
|
Loading…
Reference in New Issue