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
|
/* { dg-do run { target { ! ia32 } } } */
/* { dg-require-effective-target amx_tf32 } */
/* { dg-options "-O2 -mamx-tf32" } */
#define AMX_TF32
#define DO_TEST test_amx_tf32_mmultf32ps
void test_amx_tf32_mmultf32ps();
#include "amx-helper.h"
void calc_matrix_mmultf32ps (__tile *dst, __tile *src1, __tile *src2)
{
float *src1_buf = (float *) src1->buf;
float *src2_buf = (float *) src2->buf;
float *dst_buf = (float *) dst->buf;
int M = src1->rows;
int K = src1->colsb / 4;
int N = src2->colsb / 4;
int m, n, k;
for (m = 0; m < M; m++)
for (k = 0; k < K; k++)
for (n = 0; n < N; n++)
dst_buf[m * N + n] +=
zero_lower_mantissa_bits_fp32 (silence_snan_fp32 (src1_buf[m * K + k])) *
zero_lower_mantissa_bits_fp32 (silence_snan_fp32 (src2_buf[k * N + n]));
}
void test_amx_tf32_mmultf32ps ()
{
__tilecfg_u cfg;
__tile dst, dst_ref, src1, src2;
uint8_t tmp_dst_buf[1024];
init_fp32_max_tile_buffer (tmp_dst_buf);
init_tile_config (&cfg);
init_tile_reg_and_src_with_buffer (1, dst, tmp_dst_buf);
init_tile_reg_and_src_with_buffer (2, src1, tmp_dst_buf);
init_tile_reg_and_src_with_buffer (3, src2, tmp_dst_buf);
calc_matrix_mmultf32ps (&dst, &src1, &src2);
_tile_mmultf32ps (1, 2, 3);
_tile_stored (1, dst_ref.buf, _STRIDE);
if (!check_tile_register (&dst_ref, &dst))
abort ();
}
|