brintos

brintos / llvm-project-archived public Read only

0
0
Text · 556 B · 77cbd34 Raw
11 lines · c
1// RUN: %clang_cc1 %s -ffreestanding -triple=x86_64-unknown-unknown -target-feature +amx-tile -target-feature +amx-fp8 -verify2 3#include <immintrin.h>4 5void test_amx(void *data) {6  _tile_dpbf8ps(4, 3, 3); // expected-error {{tile arguments must refer to different tiles}}7  _tile_dpbhf8ps(4, 3, 3); // expected-error {{tile arguments must refer to different tiles}}8  _tile_dphbf8ps(4, 3, 3); // expected-error {{tile arguments must refer to different tiles}}9  _tile_dphf8ps(4, 3, 3); // expected-error {{tile arguments must refer to different tiles}}10}11