aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/aarch64/fp16_fmul_lane_low.h
blob: bf49829c4bec941970eaf4e32cabf65719be9eaa (plain)
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
#include "arm_neon.h"

float32x2_t
test_vfmlal_lane_low_f16 (float32x2_t r, float16x4_t a, float16x4_t b)
{
  return vfmlal_lane_low_f16 (r, a, b, 0);
}

float32x2_t
test_vfmlsl_lane_low_f16 (float32x2_t r, float16x4_t a, float16x4_t b)
{
  return vfmlsl_lane_low_f16 (r, a, b, 0);
}

float32x2_t
test_vfmlal_laneq_low_f16 (float32x2_t r, float16x4_t a, float16x8_t b)
{
  return vfmlal_laneq_low_f16 (r, a, b, 6);
}

float32x2_t
test_vfmlsl_laneq_low_f16 (float32x2_t r, float16x4_t a, float16x8_t b)
{
  return vfmlsl_laneq_low_f16 (r, a, b, 6);
}

float32x4_t
test_vfmlalq_lane_low_f16 (float32x4_t r, float16x8_t a, float16x4_t b)
{
  return vfmlalq_lane_low_f16 (r, a, b, 1);
}

float32x4_t
test_vfmlslq_lane_low_f16 (float32x4_t r, float16x8_t a, float16x4_t b)
{
  return vfmlslq_lane_low_f16 (r, a, b, 1);
}

float32x4_t
test_vfmlalq_laneq_low_f16 (float32x4_t r, float16x8_t a, float16x8_t b)
{
  return vfmlalq_laneq_low_f16 (r, a, b, 7);
}

float32x4_t
test_vfmlslq_laneq_low_f16 (float32x4_t r, float16x8_t a, float16x8_t b)
{
  return vfmlslq_laneq_low_f16 (r, a, b, 7);
}