1 // Auto-generated file. Do not edit!
2 // Template: src/f32-dwconv/up-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/dwconv.h>
15
16
xnn_f32_dwconv_minmax_ukernel_up4x4__neonfma(size_t channels,size_t output_width,const float ** input,const float * weights,float * output,size_t input_stride,size_t output_increment,size_t input_offset,const float * zero,const union xnn_f32_minmax_params params[restrict XNN_MIN_ELEMENTS (1)])17 void xnn_f32_dwconv_minmax_ukernel_up4x4__neonfma(
18 size_t channels,
19 size_t output_width,
20 const float** input,
21 const float* weights,
22 float* output,
23 size_t input_stride,
24 size_t output_increment,
25 size_t input_offset,
26 const float* zero,
27 const union xnn_f32_minmax_params params[restrict XNN_MIN_ELEMENTS(1)]) XNN_DISABLE_TSAN
28 {
29 assert(channels != 0);
30 assert(output_width != 0);
31
32 const float32x4_t vmax = vld1q_dup_f32(¶ms->scalar.max);
33 const float32x4_t vmin = vld1q_dup_f32(¶ms->scalar.min);
34 do {
35 const float* i0 = input[0];
36 assert(i0 != NULL);
37 if XNN_UNPREDICTABLE(i0 != zero) {
38 i0 = (const float*) ((uintptr_t) i0 + input_offset);
39 }
40 const float* i1 = input[1];
41 assert(i1 != NULL);
42 if XNN_UNPREDICTABLE(i1 != zero) {
43 i1 = (const float*) ((uintptr_t) i1 + input_offset);
44 }
45 const float* i2 = input[2];
46 assert(i2 != NULL);
47 if XNN_UNPREDICTABLE(i2 != zero) {
48 i2 = (const float*) ((uintptr_t) i2 + input_offset);
49 }
50 const float* i3 = input[3];
51 assert(i3 != NULL);
52 if XNN_UNPREDICTABLE(i3 != zero) {
53 i3 = (const float*) ((uintptr_t) i3 + input_offset);
54 }
55
56 input = (const float**) ((uintptr_t) input + input_stride);
57
58 size_t c = channels;
59 const float* w = weights;
60 for (; c >= 4; c -= 4) {
61 float32x4_t vacc0123p0 = vld1q_f32(w); w += 4;
62
63
64 const float32x4_t vi0x0123 = vld1q_f32(i0); i0 += 4;
65 const float32x4_t vk0x0123 = vld1q_f32(w); w += 4;
66 vacc0123p0 = vfmaq_f32(vacc0123p0, vi0x0123, vk0x0123);
67
68 const float32x4_t vi1x0123 = vld1q_f32(i1); i1 += 4;
69 const float32x4_t vk1x0123 = vld1q_f32(w); w += 4;
70 vacc0123p0 = vfmaq_f32(vacc0123p0, vi1x0123, vk1x0123);
71
72 const float32x4_t vi2x0123 = vld1q_f32(i2); i2 += 4;
73 const float32x4_t vk2x0123 = vld1q_f32(w); w += 4;
74 vacc0123p0 = vfmaq_f32(vacc0123p0, vi2x0123, vk2x0123);
75
76 const float32x4_t vi3x0123 = vld1q_f32(i3); i3 += 4;
77 const float32x4_t vk3x0123 = vld1q_f32(w); w += 4;
78 vacc0123p0 = vfmaq_f32(vacc0123p0, vi3x0123, vk3x0123);
79
80
81 float32x4_t vacc0123 = vmaxq_f32(vacc0123p0, vmin);
82 vacc0123 = vminq_f32(vacc0123, vmax);
83
84 vst1q_f32(output, vacc0123); output += 4;
85 }
86 if XNN_UNLIKELY(c != 0) {
87 float32x4_t vacc0123p0 = vld1q_f32(w); w += 4;
88
89
90 const float32x4_t vi0x0123 = vld1q_f32(i0);
91 const float32x4_t vk0x0123 = vld1q_f32(w); w += 4;
92 vacc0123p0 = vfmaq_f32(vacc0123p0, vi0x0123, vk0x0123);
93
94 const float32x4_t vi1x0123 = vld1q_f32(i1);
95 const float32x4_t vk1x0123 = vld1q_f32(w); w += 4;
96 vacc0123p0 = vfmaq_f32(vacc0123p0, vi1x0123, vk1x0123);
97
98 const float32x4_t vi2x0123 = vld1q_f32(i2);
99 const float32x4_t vk2x0123 = vld1q_f32(w); w += 4;
100 vacc0123p0 = vfmaq_f32(vacc0123p0, vi2x0123, vk2x0123);
101
102 const float32x4_t vi3x0123 = vld1q_f32(i3);
103 const float32x4_t vk3x0123 = vld1q_f32(w); w += 4;
104 vacc0123p0 = vfmaq_f32(vacc0123p0, vi3x0123, vk3x0123);
105
106
107 float32x4_t vacc0123 = vmaxq_f32(vacc0123p0, vmin);
108 vacc0123 = vminq_f32(vacc0123, vmax);
109
110 float32x2_t vacc01 = vget_low_f32(vacc0123);
111 if (c & 2) {
112 vst1_f32(output, vacc01); output += 2;
113 vacc01 = vget_high_f32(vacc0123);
114 }
115 if (c & 1) {
116 vst1_lane_f32(output, vacc01, 0); output += 1;
117 }
118 }
119
120 output = (float*) ((uintptr_t) output + output_increment);
121 } while (--output_width != 0);
122 }
123