1 // Auto-generated file. Do not edit!
2 // Template: src/f32-vmulcaddc/neon.c.in
3 // Generator: tools/xngen
4 //
5 // Copyright 2019 Google LLC
6 //
7 // This source code is licensed under the BSD-style license found in the
8 // LICENSE file in the root directory of this source tree.
9
10 #include <assert.h>
11
12 #include <arm_neon.h>
13
14 #include <xnnpack/math.h>
15 #include <xnnpack/vmulcaddc.h>
16
17
xnn_f32_vmulcaddc_ukernel_c4__neonfma_2x(size_t rows,size_t channels,const float * restrict input,size_t input_stride,const float * restrict weights,float * restrict output,size_t output_stride,const union xnn_f32_output_params params[restrict static1])18 void xnn_f32_vmulcaddc_ukernel_c4__neonfma_2x(
19 size_t rows,
20 size_t channels,
21 const float*restrict input,
22 size_t input_stride,
23 const float*restrict weights,
24 float*restrict output,
25 size_t output_stride,
26 const union xnn_f32_output_params params[restrict static 1])
27 {
28 assert(rows != 0);
29 assert(channels != 0);
30 assert(channels % sizeof(float) == 0);
31
32 const float* i0 = input;
33 float* o0 = output;
34 const float* i1 = (const float*) ((uintptr_t) i0 + input_stride);
35 float* o1 = (float*) ((uintptr_t) o0 + output_stride);
36 if XNN_UNPREDICTABLE(rows < 2) {
37 i1 = i0;
38 o1 = o0;
39 }
40
41 const size_t input_increment = input_stride * 2 - channels;
42 const size_t output_increment = output_stride * 2 - channels;
43
44 const float32x4_t vmin = vld1q_dup_f32(¶ms->scalar.min);
45 const float32x4_t vmax = vld1q_dup_f32(¶ms->scalar.max);
46 do {
47 const float* w = weights;
48 size_t c = channels;
49 for (; c >= 4 * sizeof(float); c -= 4 * sizeof(float)) {
50 const float32x4_t vscale0123 = vld1q_f32(w); w += 4;
51
52 float32x4_t vacc0x0123 = vld1q_f32(i0); i0 += 4;
53 float32x4_t vacc1x0123 = vld1q_f32(i1); i1 += 4;
54
55
56 const float32x4_t vbias0123 = vld1q_f32(w); w += 4;
57
58 vacc0x0123 = vfmaq_f32(vbias0123, vscale0123, vacc0x0123);
59 vacc1x0123 = vfmaq_f32(vbias0123, vscale0123, vacc1x0123);
60
61 vacc0x0123 = vmaxq_f32(vacc0x0123, vmin);
62 vacc1x0123 = vmaxq_f32(vacc1x0123, vmin);
63
64 vacc0x0123 = vminq_f32(vacc0x0123, vmax);
65 vacc1x0123 = vminq_f32(vacc1x0123, vmax);
66
67 vst1q_f32(o0, vacc0x0123); o0 += 4;
68 vst1q_f32(o1, vacc1x0123); o1 += 4;
69 }
70 if XNN_UNLIKELY(c != 0) {
71 const float32x4_t vscale0123 = vld1q_f32(w);
72
73 float32x4_t vacc0x0123 = vld1q_f32(i0); i0 = (const float*) ((uintptr_t) i0 + c);
74 float32x4_t vacc1x0123 = vld1q_f32(i1); i1 = (const float*) ((uintptr_t) i1 + c);
75
76
77 const float32x4_t vbias0123 = vld1q_f32(w + 4);
78
79 vacc0x0123 = vfmaq_f32(vbias0123, vscale0123, vacc0x0123);
80 vacc1x0123 = vfmaq_f32(vbias0123, vscale0123, vacc1x0123);
81
82 vacc0x0123 = vmaxq_f32(vacc0x0123, vmin);
83 vacc1x0123 = vmaxq_f32(vacc1x0123, vmin);
84
85 vacc0x0123 = vminq_f32(vacc0x0123, vmax);
86 vacc1x0123 = vminq_f32(vacc1x0123, vmax);
87
88 float32x2_t vacc0x01 = vget_low_f32(vacc0x0123);
89 float32x2_t vacc1x01 = vget_low_f32(vacc1x0123);
90 if (c & (2 * sizeof(float))) {
91 vst1_f32(o0, vacc0x01); o0 += 2;
92 vst1_f32(o1, vacc1x01); o1 += 2;
93
94 vacc0x01 = vget_high_f32(vacc0x0123);
95 vacc1x01 = vget_high_f32(vacc1x0123);
96 }
97 if (c & (1 * sizeof(float))) {
98 vst1_lane_f32(o0, vacc0x01, 0); o0 += 1;
99 vst1_lane_f32(o1, vacc1x01, 0); o1 += 1;
100 }
101 }
102 i0 = (const float*) ((uintptr_t) i0 + input_increment);
103 o0 = (float*) ((uintptr_t) o0 + output_increment);
104 i1 = (const float*) ((uintptr_t) i1 + input_increment);
105 o1 = (float*) ((uintptr_t) o1 + output_increment);
106 if XNN_UNPREDICTABLE(rows < 4) {
107 i1 = i0;
108 o1 = o0;
109 }
110 rows = doz(rows, 2);
111 } while (rows != 0);
112 }
113