1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown \
// RUN: -target-feature +amx-int8 -target-feature +amx-bf16 -target-feature +amx-transpose \
// RUN: -target-feature +avx512f -target-feature +amx-fp16 -target-feature +amx-complex -verify
#include <immintrin.h>
#include <stddef.h>
// Transpose
void test_tile_2rpntlvwz0(const void *A, size_t B) {
_tile_2rpntlvwz0(8, A, B); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
}
void test_tile_2rpntlvwz0t1(const void *A, size_t B) {
_tile_2rpntlvwz0t1(8, A, B); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
}
void test_tile_2rpntlvwz1(const void *A, size_t B) {
_tile_2rpntlvwz1(8, A, B); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
}
void test_tile_2rpntlvwz1t1(const void *A, size_t B) {
_tile_2rpntlvwz1t1(8, A, B); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
}
void test_tile_tdpbf16ps()
{
_tile_tdpbf16ps(8, 2, 3); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
_tile_tdpbf16ps(1, 8, 3); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
_tile_tdpbf16ps(1, 2, 8); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
_tile_tdpbf16ps(1, 1, 3); // expected-error {{tile arguments must refer to different tiles}}
_tile_tdpbf16ps(1, 2, 1); // expected-error {{tile arguments must refer to different tiles}}
_tile_tdpbf16ps(1, 2, 2); // expected-error {{tile arguments must refer to different tiles}}
}
void test_tile_tdpfp16ps()
{
_tile_tdpfp16ps(8, 5, 6); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
_tile_tdpfp16ps(1, 8, 6); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
_tile_tdpfp16ps(1, 5, 8); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
_tile_tdpfp16ps(1, 1, 3); // expected-error {{tile arguments must refer to different tiles}}
_tile_tdpfp16ps(1, 2, 1); // expected-error {{tile arguments must refer to different tiles}}
_tile_tdpfp16ps(1, 2, 2); // expected-error {{tile arguments must refer to different tiles}}
}
void test_tile_transposed()
{
_tile_transposed(8, 2); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
_tile_transposed(1, 8); // expected-error {{argument value 8 is outside the valid range [0, 7]}}
}
void test_tile_tcmmimfp16ps() {
_tile_tcmmimfp16ps(16, 2, 3); // expected-error {{argument value 16 is outside the valid range [0, 7]}}
_tile_tcmmimfp16ps(1, 26, 3); // expected-error {{argument value 26 is outside the valid range [0, 7]}}
_tile_tcmmimfp16ps(1, 2, 36); // expected-error {{argument value 36 is outside the valid range [0, 7]}}
_tile_tcmmimfp16ps(1, 1, 3); // expected-error {{tile arguments must refer to different tiles}}
}
void test_tile_tcmmrlfp16ps() {
_tile_tcmmrlfp16ps(16, 2, 3); // expected-error {{argument value 16 is outside the valid range [0, 7]}}
_tile_tcmmrlfp16ps(1, 26, 3); // expected-error {{argument value 26 is outside the valid range [0, 7]}}
_tile_tcmmrlfp16ps(1, 2, 36); // expected-error {{argument value 36 is outside the valid range [0, 7]}}
_tile_tcmmrlfp16ps(1, 1, 3); // expected-error {{tile arguments must refer to different tiles}}
}
void test_tile_conjtcmmimfp16ps() {
_tile_conjtcmmimfp16ps(16, 2, 3); // expected-error {{argument value 16 is outside the valid range [0, 7]}}
_tile_conjtcmmimfp16ps(1, 26, 3); // expected-error {{argument value 26 is outside the valid range [0, 7]}}
_tile_conjtcmmimfp16ps(1, 2, 36); // expected-error {{argument value 36 is outside the valid range [0, 7]}}
_tile_conjtcmmimfp16ps(1, 2, 1); // expected-error {{tile arguments must refer to different tiles}}
}
void test_tile_conjtfp16() {
_tile_conjtfp16(16, 2); // expected-error {{argument value 16 is outside the valid range [0, 7]}}
_tile_conjtfp16(1, 26); // expected-error {{argument value 26 is outside the valid range [0, 7]}}
}
|