[MLIR][TOSA] Update CustomOp input and output names (#118408)
[llvm-project.git] / clang / test / CodeGen / X86 / amxavx512-builtins.c
blob172b5ae8f530817dfafcd0979af0ec14b921fee1
1 // RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +amx-tile -target-feature +amx-avx512 \
2 // RUN: -target-feature +avx10.2-512 -emit-llvm -o - -Wall -Werror -pedantic -Wno-gnu-statement-expression | FileCheck %s
4 #include <immintrin.h>
5 #include <stddef.h>
7 __m512 test_tile_cvtrowd2ps(unsigned int A) {
8 // CHECK-LABEL: @test_tile_cvtrowd2ps(
9 // CHECK: call <16 x float> @llvm.x86.tcvtrowd2ps(i8 1, i32 %{{.*}})
10 return _tile_cvtrowd2ps(1, A);
13 __m512bh test_tile_cvtrowps2pbf16h(unsigned int A) {
14 // CHECK-LABEL: @test_tile_cvtrowps2pbf16h(
15 // CHECK: call <32 x bfloat> @llvm.x86.tcvtrowps2pbf16h(i8 1, i32 %{{.*}})
16 return _tile_cvtrowps2pbf16h(1, A);
19 __m512bh test_tile_cvtrowps2pbf16l(unsigned int A) {
20 // CHECK-LABEL: @test_tile_cvtrowps2pbf16l(
21 // CHECK: call <32 x bfloat> @llvm.x86.tcvtrowps2pbf16l(i8 1, i32 %{{.*}})
22 return _tile_cvtrowps2pbf16l(1, A);
25 __m512h test_tile_cvtrowps2phh(unsigned int A) {
26 // CHECK-LABEL: @test_tile_cvtrowps2phh(
27 // CHECK: call <32 x half> @llvm.x86.tcvtrowps2phh(i8 1, i32 %{{.*}})
28 return _tile_cvtrowps2phh(1, A);
31 __m512h test_tile_cvtrowps2phl(unsigned int A) {
32 // CHECK-LABEL: @test_tile_cvtrowps2phl(
33 // CHECK: call <32 x half> @llvm.x86.tcvtrowps2phl(i8 1, i32 %{{.*}})
34 return _tile_cvtrowps2phl(1, A);
37 __m512i test_tile_movrow(unsigned int A) {
38 // CHECK-LABEL: @test_tile_movrow
39 // CHECK: %1 = call <16 x i32> @llvm.x86.tilemovrow(i8 1, i32 %{{.*}})
40 return _tile_movrow(1, A);