42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +amx-tile -target-feature +amx-avx512 \
|
|
// RUN: -target-feature +avx10.2-512 -emit-llvm -o - -Wall -Werror -pedantic -Wno-gnu-statement-expression -flax-vector-conversions=none | FileCheck %s
|
|
|
|
#include <immintrin.h>
|
|
#include <stddef.h>
|
|
|
|
__m512 test_tile_cvtrowd2ps(unsigned int A) {
|
|
// CHECK-LABEL: @test_tile_cvtrowd2ps(
|
|
// CHECK: call <16 x float> @llvm.x86.tcvtrowd2ps(i8 1, i32 %{{.*}})
|
|
return _tile_cvtrowd2ps(1, A);
|
|
}
|
|
|
|
__m512bh test_tile_cvtrowps2bf16h(unsigned int A) {
|
|
// CHECK-LABEL: @test_tile_cvtrowps2bf16h(
|
|
// CHECK: call <32 x bfloat> @llvm.x86.tcvtrowps2bf16h(i8 1, i32 %{{.*}})
|
|
return _tile_cvtrowps2bf16h(1, A);
|
|
}
|
|
|
|
__m512bh test_tile_cvtrowps2bf16l(unsigned int A) {
|
|
// CHECK-LABEL: @test_tile_cvtrowps2bf16l(
|
|
// CHECK: call <32 x bfloat> @llvm.x86.tcvtrowps2bf16l(i8 1, i32 %{{.*}})
|
|
return _tile_cvtrowps2bf16l(1, A);
|
|
}
|
|
|
|
__m512h test_tile_cvtrowps2phh(unsigned int A) {
|
|
// CHECK-LABEL: @test_tile_cvtrowps2phh(
|
|
// CHECK: call <32 x half> @llvm.x86.tcvtrowps2phh(i8 1, i32 %{{.*}})
|
|
return _tile_cvtrowps2phh(1, A);
|
|
}
|
|
|
|
__m512h test_tile_cvtrowps2phl(unsigned int A) {
|
|
// CHECK-LABEL: @test_tile_cvtrowps2phl(
|
|
// CHECK: call <32 x half> @llvm.x86.tcvtrowps2phl(i8 1, i32 %{{.*}})
|
|
return _tile_cvtrowps2phl(1, A);
|
|
}
|
|
|
|
__m512i test_tile_movrow(unsigned int A) {
|
|
// CHECK-LABEL: @test_tile_movrow
|
|
// CHECK: %1 = call <16 x i32> @llvm.x86.tilemovrow(i8 1, i32 %{{.*}})
|
|
return _tile_movrow(1, A);
|
|
}
|