Lines Matching full:state
26 static void DWConv2DBenchmark(benchmark::State& state, in DWConv2DBenchmark() argument
31 if (isa_check && !isa_check(state)) { in DWConv2DBenchmark()
35 const size_t input_height = state.range(0); in DWConv2DBenchmark()
36 const size_t input_width = state.range(1); in DWConv2DBenchmark()
37 const size_t kernel_height = state.range(2); in DWConv2DBenchmark()
38 const size_t kernel_width = state.range(3); in DWConv2DBenchmark()
39 const size_t padding_height = state.range(4); in DWConv2DBenchmark()
40 const size_t padding_width = state.range(5); in DWConv2DBenchmark()
41 const size_t subsampling = state.range(6); in DWConv2DBenchmark()
42 const size_t dilation = state.range(7); in DWConv2DBenchmark()
43 const size_t channels = state.range(8); in DWConv2DBenchmark()
46 state.SkipWithError("kernel height mismatch"); in DWConv2DBenchmark()
51 state.SkipWithError("kernel width mismatch"); in DWConv2DBenchmark()
56 state.SkipWithError("subsampling mismatch"); in DWConv2DBenchmark()
61 state.SkipWithError("padding width mismatch"); in DWConv2DBenchmark()
66 state.SkipWithError("unsupported dilation"); in DWConv2DBenchmark()
116 for (auto _ : state) { in DWConv2DBenchmark()
117 state.PauseTiming(); in DWConv2DBenchmark()
120 state.ResumeTiming(); in DWConv2DBenchmark()
136 state.counters["cpufreq"] = cpu_frequency; in DWConv2DBenchmark()
139 state.counters["FLOPS"] = benchmark::Counter( in DWConv2DBenchmark()
140 uint64_t(state.iterations()) * 2 * output_size * channels * kernel_size, in DWConv2DBenchmark()
143 state.counters["bytes"] = benchmark::Counter( in DWConv2DBenchmark()
144 …uint64_t(state.iterations()) * (output_size + inputSize + kernel_size + 1 /* bias */) * channels *… in DWConv2DBenchmark()
149 static void dwconv2d_chw_3x3p1__neon_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_1x4() argument
150 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_1x4, 3, 3, 1, 1, benchmark::util… in dwconv2d_chw_3x3p1__neon_1x4()
152 static void dwconv2d_chw_3x3p1__neon_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_2x4() argument
153 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_2x4, 3, 3, 1, 1, benchmark::util… in dwconv2d_chw_3x3p1__neon_2x4()
155 static void dwconv2d_chw_3x3p1__neon_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_3x4() argument
156 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_3x4, 3, 3, 1, 1, benchmark::util… in dwconv2d_chw_3x3p1__neon_3x4()
158 static void dwconv2d_chw_3x3p1__neon_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_4x4() argument
159 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_4x4, 3, 3, 1, 1, benchmark::util… in dwconv2d_chw_3x3p1__neon_4x4()
161 static void dwconv2d_chw_3x3p1__neon_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_5x4() argument
162 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_5x4, 3, 3, 1, 1, benchmark::util… in dwconv2d_chw_3x3p1__neon_5x4()
164 static void dwconv2d_chw_3x3p1__neon_6x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_6x4() argument
165 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_6x4, 3, 3, 1, 1, benchmark::util… in dwconv2d_chw_3x3p1__neon_6x4()
167 static void dwconv2d_chw_3x3p1__neon_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_1x4_acc2() argument
168 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_1x4_acc2, 3, 3, 1, 1, benchmark:… in dwconv2d_chw_3x3p1__neon_1x4_acc2()
170 static void dwconv2d_chw_3x3p1__neon_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_1x4_acc3() argument
171 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_1x4_acc3, 3, 3, 1, 1, benchmark:… in dwconv2d_chw_3x3p1__neon_1x4_acc3()
173 static void dwconv2d_chw_3x3p1__neon_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_1x4_acc4() argument
174 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_1x4_acc4, 3, 3, 1, 1, benchmark:… in dwconv2d_chw_3x3p1__neon_1x4_acc4()
176 static void dwconv2d_chw_3x3p1__neon_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neon_2x4_acc2() argument
177 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neon_2x4_acc2, 3, 3, 1, 1, benchmark:… in dwconv2d_chw_3x3p1__neon_2x4_acc2()
180 static void dwconv2d_chw_3x3s2p1__neon_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neon_1x4() argument
181 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neon_1x4, 3, 3, 1, 2, benchmark::ut… in dwconv2d_chw_3x3s2p1__neon_1x4()
183 static void dwconv2d_chw_3x3s2p1__neon_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neon_2x4() argument
184 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neon_2x4, 3, 3, 1, 2, benchmark::ut… in dwconv2d_chw_3x3s2p1__neon_2x4()
186 static void dwconv2d_chw_3x3s2p1__neon_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neon_3x4() argument
187 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neon_3x4, 3, 3, 1, 2, benchmark::ut… in dwconv2d_chw_3x3s2p1__neon_3x4()
189 static void dwconv2d_chw_3x3s2p1__neon_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neon_4x4() argument
190 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neon_4x4, 3, 3, 1, 2, benchmark::ut… in dwconv2d_chw_3x3s2p1__neon_4x4()
192 static void dwconv2d_chw_3x3s2p1__neon_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neon_1x4_acc2() argument
193 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neon_1x4_acc2, 3, 3, 1, 2, benchmar… in dwconv2d_chw_3x3s2p1__neon_1x4_acc2()
195 static void dwconv2d_chw_3x3s2p1__neon_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neon_1x4_acc3() argument
196 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neon_1x4_acc3, 3, 3, 1, 2, benchmar… in dwconv2d_chw_3x3s2p1__neon_1x4_acc3()
198 static void dwconv2d_chw_3x3s2p1__neon_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neon_1x4_acc4() argument
199 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neon_1x4_acc4, 3, 3, 1, 2, benchmar… in dwconv2d_chw_3x3s2p1__neon_1x4_acc4()
201 static void dwconv2d_chw_3x3s2p1__neon_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neon_2x4_acc2() argument
202 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neon_2x4_acc2, 3, 3, 1, 2, benchmar… in dwconv2d_chw_3x3s2p1__neon_2x4_acc2()
205 static void dwconv2d_chw_5x5p2__neon_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_1x4() argument
206 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_1x4, 5, 5, 2, 1, benchmark::util… in dwconv2d_chw_5x5p2__neon_1x4()
208 static void dwconv2d_chw_5x5p2__neon_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_2x4() argument
209 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_2x4, 5, 5, 2, 1, benchmark::util… in dwconv2d_chw_5x5p2__neon_2x4()
211 static void dwconv2d_chw_5x5p2__neon_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_3x4() argument
212 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_3x4, 5, 5, 2, 1, benchmark::util… in dwconv2d_chw_5x5p2__neon_3x4()
214 static void dwconv2d_chw_5x5p2__neon_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_4x4() argument
215 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_4x4, 5, 5, 2, 1, benchmark::util… in dwconv2d_chw_5x5p2__neon_4x4()
217 static void dwconv2d_chw_5x5p2__neon_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_5x4() argument
218 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_5x4, 5, 5, 2, 1, benchmark::util… in dwconv2d_chw_5x5p2__neon_5x4()
220 static void dwconv2d_chw_5x5p2__neon_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_1x4_acc2() argument
221 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_1x4_acc2, 5, 5, 2, 1, benchmark:… in dwconv2d_chw_5x5p2__neon_1x4_acc2()
223 static void dwconv2d_chw_5x5p2__neon_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_1x4_acc3() argument
224 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_1x4_acc3, 5, 5, 2, 1, benchmark:… in dwconv2d_chw_5x5p2__neon_1x4_acc3()
226 static void dwconv2d_chw_5x5p2__neon_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_1x4_acc4() argument
227 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_1x4_acc4, 5, 5, 2, 1, benchmark:… in dwconv2d_chw_5x5p2__neon_1x4_acc4()
229 static void dwconv2d_chw_5x5p2__neon_1x4_acc5(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_1x4_acc5() argument
230 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_1x4_acc5, 5, 5, 2, 1, benchmark:… in dwconv2d_chw_5x5p2__neon_1x4_acc5()
232 static void dwconv2d_chw_5x5p2__neon_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_2x4_acc2() argument
233 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_2x4_acc2, 5, 5, 2, 1, benchmark:… in dwconv2d_chw_5x5p2__neon_2x4_acc2()
235 static void dwconv2d_chw_5x5p2__neon_2x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_2x4_acc3() argument
236 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_2x4_acc3, 5, 5, 2, 1, benchmark:… in dwconv2d_chw_5x5p2__neon_2x4_acc3()
238 static void dwconv2d_chw_5x5p2__neon_3x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_3x4_acc2() argument
239 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_3x4_acc2, 5, 5, 2, 1, benchmark:… in dwconv2d_chw_5x5p2__neon_3x4_acc2()
241 static void dwconv2d_chw_5x5p2__neon_4x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neon_4x4_acc2() argument
242 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neon_4x4_acc2, 5, 5, 2, 1, benchmark:… in dwconv2d_chw_5x5p2__neon_4x4_acc2()
245 static void dwconv2d_chw_5x5s2p2__neon_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_1x4() argument
246 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_1x4, 5, 5, 2, 2, benchmark::ut… in dwconv2d_chw_5x5s2p2__neon_1x4()
248 static void dwconv2d_chw_5x5s2p2__neon_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_2x4() argument
249 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_2x4, 5, 5, 2, 2, benchmark::ut… in dwconv2d_chw_5x5s2p2__neon_2x4()
251 static void dwconv2d_chw_5x5s2p2__neon_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_3x4() argument
252 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_3x4, 5, 5, 2, 2, benchmark::ut… in dwconv2d_chw_5x5s2p2__neon_3x4()
254 static void dwconv2d_chw_5x5s2p2__neon_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_1x4_acc2() argument
255 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_1x4_acc2, 5, 5, 2, 2, benchmar… in dwconv2d_chw_5x5s2p2__neon_1x4_acc2()
257 static void dwconv2d_chw_5x5s2p2__neon_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_1x4_acc3() argument
258 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_1x4_acc3, 5, 5, 2, 2, benchmar… in dwconv2d_chw_5x5s2p2__neon_1x4_acc3()
260 static void dwconv2d_chw_5x5s2p2__neon_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_1x4_acc4() argument
261 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_1x4_acc4, 5, 5, 2, 2, benchmar… in dwconv2d_chw_5x5s2p2__neon_1x4_acc4()
263 static void dwconv2d_chw_5x5s2p2__neon_1x4_acc5(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_1x4_acc5() argument
264 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_1x4_acc5, 5, 5, 2, 2, benchmar… in dwconv2d_chw_5x5s2p2__neon_1x4_acc5()
266 static void dwconv2d_chw_5x5s2p2__neon_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_2x4_acc2() argument
267 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_2x4_acc2, 5, 5, 2, 2, benchmar… in dwconv2d_chw_5x5s2p2__neon_2x4_acc2()
269 static void dwconv2d_chw_5x5s2p2__neon_2x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_2x4_acc3() argument
270 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_2x4_acc3, 5, 5, 2, 2, benchmar… in dwconv2d_chw_5x5s2p2__neon_2x4_acc3()
272 static void dwconv2d_chw_5x5s2p2__neon_3x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neon_3x4_acc2() argument
273 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neon_3x4_acc2, 5, 5, 2, 2, benchmar… in dwconv2d_chw_5x5s2p2__neon_3x4_acc2()
323 static void dwconv2d_chw_3x3p1__neonfma_1x4(benchmark::State& state, const char* net) { in BENCHMARK_DWCONV()
324 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_1x4, 3, 3, 1, 1); in BENCHMARK_DWCONV()
326 static void dwconv2d_chw_3x3p1__neonfma_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_2x4() argument
327 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_2x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_2x4()
329 static void dwconv2d_chw_3x3p1__neonfma_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_3x4() argument
330 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_3x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_3x4()
332 static void dwconv2d_chw_3x3p1__neonfma_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_4x4() argument
333 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_4x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_4x4()
335 static void dwconv2d_chw_3x3p1__neonfma_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_5x4() argument
336 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_5x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_5x4()
338 static void dwconv2d_chw_3x3p1__neonfma_6x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_6x4() argument
339 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_6x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_6x4()
341 static void dwconv2d_chw_3x3p1__neonfma_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_1x4_acc2() argument
342 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_1x4_acc2, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_1x4_acc2()
344 static void dwconv2d_chw_3x3p1__neonfma_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_1x4_acc3() argument
345 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_1x4_acc3, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_1x4_acc3()
347 static void dwconv2d_chw_3x3p1__neonfma_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_1x4_acc4() argument
348 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_1x4_acc4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_1x4_acc4()
350 static void dwconv2d_chw_3x3p1__neonfma_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__neonfma_2x4_acc2() argument
351 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__neonfma_2x4_acc2, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__neonfma_2x4_acc2()
354 static void dwconv2d_chw_3x3s2p1__neonfma_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neonfma_1x4() argument
355 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neonfma_1x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__neonfma_1x4()
357 static void dwconv2d_chw_3x3s2p1__neonfma_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neonfma_2x4() argument
358 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neonfma_2x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__neonfma_2x4()
360 static void dwconv2d_chw_3x3s2p1__neonfma_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neonfma_3x4() argument
361 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neonfma_3x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__neonfma_3x4()
363 static void dwconv2d_chw_3x3s2p1__neonfma_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neonfma_4x4() argument
364 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neonfma_4x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__neonfma_4x4()
366 static void dwconv2d_chw_3x3s2p1__neonfma_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neonfma_1x4_acc2() argument
367 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neonfma_1x4_acc2, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__neonfma_1x4_acc2()
369 static void dwconv2d_chw_3x3s2p1__neonfma_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neonfma_1x4_acc3() argument
370 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neonfma_1x4_acc3, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__neonfma_1x4_acc3()
372 static void dwconv2d_chw_3x3s2p1__neonfma_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neonfma_1x4_acc4() argument
373 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neonfma_1x4_acc4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__neonfma_1x4_acc4()
375 static void dwconv2d_chw_3x3s2p1__neonfma_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__neonfma_2x4_acc2() argument
376 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__neonfma_2x4_acc2, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__neonfma_2x4_acc2()
379 static void dwconv2d_chw_5x5p2__neonfma_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_1x4() argument
380 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_1x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_1x4()
382 static void dwconv2d_chw_5x5p2__neonfma_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_2x4() argument
383 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_2x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_2x4()
385 static void dwconv2d_chw_5x5p2__neonfma_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_3x4() argument
386 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_3x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_3x4()
388 static void dwconv2d_chw_5x5p2__neonfma_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_4x4() argument
389 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_4x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_4x4()
391 static void dwconv2d_chw_5x5p2__neonfma_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_5x4() argument
392 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_5x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_5x4()
394 static void dwconv2d_chw_5x5p2__neonfma_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_1x4_acc2() argument
395 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_1x4_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_1x4_acc2()
397 static void dwconv2d_chw_5x5p2__neonfma_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_1x4_acc3() argument
398 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_1x4_acc3, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_1x4_acc3()
400 static void dwconv2d_chw_5x5p2__neonfma_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_1x4_acc4() argument
401 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_1x4_acc4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_1x4_acc4()
403 static void dwconv2d_chw_5x5p2__neonfma_1x4_acc5(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_1x4_acc5() argument
404 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_1x4_acc5, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_1x4_acc5()
406 static void dwconv2d_chw_5x5p2__neonfma_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_2x4_acc2() argument
407 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_2x4_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_2x4_acc2()
409 static void dwconv2d_chw_5x5p2__neonfma_2x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_2x4_acc3() argument
410 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_2x4_acc3, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_2x4_acc3()
412 static void dwconv2d_chw_5x5p2__neonfma_3x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_3x4_acc2() argument
413 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_3x4_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_3x4_acc2()
415 static void dwconv2d_chw_5x5p2__neonfma_4x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__neonfma_4x4_acc2() argument
416 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__neonfma_4x4_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__neonfma_4x4_acc2()
419 static void dwconv2d_chw_5x5s2p2__neonfma_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_1x4() argument
420 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_1x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_1x4()
422 static void dwconv2d_chw_5x5s2p2__neonfma_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_2x4() argument
423 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_2x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_2x4()
425 static void dwconv2d_chw_5x5s2p2__neonfma_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_3x4() argument
426 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_3x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_3x4()
428 static void dwconv2d_chw_5x5s2p2__neonfma_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_1x4_acc2() argument
429 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_1x4_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_1x4_acc2()
431 static void dwconv2d_chw_5x5s2p2__neonfma_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_1x4_acc3() argument
432 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_1x4_acc3, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_1x4_acc3()
434 static void dwconv2d_chw_5x5s2p2__neonfma_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_1x4_acc4() argument
435 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_1x4_acc4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_1x4_acc4()
437 static void dwconv2d_chw_5x5s2p2__neonfma_1x4_acc5(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_1x4_acc5() argument
438 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_1x4_acc5, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_1x4_acc5()
440 static void dwconv2d_chw_5x5s2p2__neonfma_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_2x4_acc2() argument
441 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_2x4_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_2x4_acc2()
443 static void dwconv2d_chw_5x5s2p2__neonfma_2x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_2x4_acc3() argument
444 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_2x4_acc3, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_2x4_acc3()
446 static void dwconv2d_chw_5x5s2p2__neonfma_3x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__neonfma_3x4_acc2() argument
447 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__neonfma_3x4_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__neonfma_3x4_acc2()
497 static void dwconv2d_chw_3x3p1__sse_1x4(benchmark::State& state, const char* net) { in BENCHMARK_DWCONV()
498 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_1x4, 3, 3, 1, 1); in BENCHMARK_DWCONV()
500 static void dwconv2d_chw_3x3p1__sse_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_2x4() argument
501 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_2x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_2x4()
503 static void dwconv2d_chw_3x3p1__sse_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_3x4() argument
504 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_3x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_3x4()
506 static void dwconv2d_chw_3x3p1__sse_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_4x4() argument
507 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_4x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_4x4()
509 static void dwconv2d_chw_3x3p1__sse_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_5x4() argument
510 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_5x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_5x4()
512 static void dwconv2d_chw_3x3p1__sse_6x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_6x4() argument
513 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_6x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_6x4()
515 static void dwconv2d_chw_3x3p1__sse_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_1x4_acc2() argument
516 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_1x4_acc2, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_1x4_acc2()
518 static void dwconv2d_chw_3x3p1__sse_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_1x4_acc3() argument
519 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_1x4_acc3, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_1x4_acc3()
521 static void dwconv2d_chw_3x3p1__sse_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_1x4_acc4() argument
522 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_1x4_acc4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_1x4_acc4()
524 static void dwconv2d_chw_3x3p1__sse_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__sse_2x4_acc2() argument
525 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__sse_2x4_acc2, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__sse_2x4_acc2()
528 static void dwconv2d_chw_3x3p1__ssse3_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_1x4() argument
529 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_1x4, 3, 3, 1, 1, benchmark::uti… in dwconv2d_chw_3x3p1__ssse3_1x4()
531 static void dwconv2d_chw_3x3p1__ssse3_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_2x4() argument
532 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_2x4, 3, 3, 1, 1, benchmark::uti… in dwconv2d_chw_3x3p1__ssse3_2x4()
534 static void dwconv2d_chw_3x3p1__ssse3_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_3x4() argument
535 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_3x4, 3, 3, 1, 1, benchmark::uti… in dwconv2d_chw_3x3p1__ssse3_3x4()
537 static void dwconv2d_chw_3x3p1__ssse3_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_4x4() argument
538 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_4x4, 3, 3, 1, 1, benchmark::uti… in dwconv2d_chw_3x3p1__ssse3_4x4()
540 static void dwconv2d_chw_3x3p1__ssse3_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_5x4() argument
541 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_5x4, 3, 3, 1, 1, benchmark::uti… in dwconv2d_chw_3x3p1__ssse3_5x4()
543 static void dwconv2d_chw_3x3p1__ssse3_6x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_6x4() argument
544 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_6x4, 3, 3, 1, 1, benchmark::uti… in dwconv2d_chw_3x3p1__ssse3_6x4()
546 static void dwconv2d_chw_3x3p1__ssse3_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_1x4_acc2() argument
547 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_1x4_acc2, 3, 3, 1, 1, benchmark… in dwconv2d_chw_3x3p1__ssse3_1x4_acc2()
549 static void dwconv2d_chw_3x3p1__ssse3_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_1x4_acc3() argument
550 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_1x4_acc3, 3, 3, 1, 1, benchmark… in dwconv2d_chw_3x3p1__ssse3_1x4_acc3()
552 static void dwconv2d_chw_3x3p1__ssse3_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_1x4_acc4() argument
553 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_1x4_acc4, 3, 3, 1, 1, benchmark… in dwconv2d_chw_3x3p1__ssse3_1x4_acc4()
555 static void dwconv2d_chw_3x3p1__ssse3_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__ssse3_2x4_acc2() argument
556 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__ssse3_2x4_acc2, 3, 3, 1, 1, benchmark… in dwconv2d_chw_3x3p1__ssse3_2x4_acc2()
559 static void dwconv2d_chw_3x3s2p1__sse_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__sse_1x4() argument
560 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__sse_1x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__sse_1x4()
562 static void dwconv2d_chw_3x3s2p1__sse_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__sse_2x4() argument
563 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__sse_2x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__sse_2x4()
565 static void dwconv2d_chw_3x3s2p1__sse_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__sse_3x4() argument
566 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__sse_3x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__sse_3x4()
568 static void dwconv2d_chw_3x3s2p1__sse_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__sse_4x4() argument
569 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__sse_4x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__sse_4x4()
571 static void dwconv2d_chw_3x3s2p1__sse_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__sse_1x4_acc2() argument
572 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__sse_1x4_acc2, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__sse_1x4_acc2()
574 static void dwconv2d_chw_3x3s2p1__sse_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__sse_1x4_acc3() argument
575 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__sse_1x4_acc3, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__sse_1x4_acc3()
577 static void dwconv2d_chw_3x3s2p1__sse_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__sse_1x4_acc4() argument
578 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__sse_1x4_acc4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__sse_1x4_acc4()
580 static void dwconv2d_chw_3x3s2p1__sse_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__sse_2x4_acc2() argument
581 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__sse_2x4_acc2, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__sse_2x4_acc2()
584 static void dwconv2d_chw_5x5p2__sse_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_1x4() argument
585 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_1x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_1x4()
587 static void dwconv2d_chw_5x5p2__sse_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_2x4() argument
588 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_2x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_2x4()
590 static void dwconv2d_chw_5x5p2__sse_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_3x4() argument
591 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_3x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_3x4()
593 static void dwconv2d_chw_5x5p2__sse_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_4x4() argument
594 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_4x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_4x4()
596 static void dwconv2d_chw_5x5p2__sse_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_5x4() argument
597 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_5x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_5x4()
599 static void dwconv2d_chw_5x5p2__sse_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_1x4_acc2() argument
600 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_1x4_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_1x4_acc2()
602 static void dwconv2d_chw_5x5p2__sse_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_1x4_acc3() argument
603 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_1x4_acc3, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_1x4_acc3()
605 static void dwconv2d_chw_5x5p2__sse_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_1x4_acc4() argument
606 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_1x4_acc4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_1x4_acc4()
608 static void dwconv2d_chw_5x5p2__sse_1x4_acc5(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_1x4_acc5() argument
609 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_1x4_acc5, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_1x4_acc5()
611 static void dwconv2d_chw_5x5p2__sse_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_2x4_acc2() argument
612 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_2x4_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_2x4_acc2()
614 static void dwconv2d_chw_5x5p2__sse_2x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_2x4_acc3() argument
615 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_2x4_acc3, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_2x4_acc3()
617 static void dwconv2d_chw_5x5p2__sse_3x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_3x4_acc2() argument
618 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_3x4_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_3x4_acc2()
620 static void dwconv2d_chw_5x5p2__sse_4x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__sse_4x4_acc2() argument
621 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__sse_4x4_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__sse_4x4_acc2()
624 static void dwconv2d_chw_5x5s2p2__sse_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_1x4() argument
625 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_1x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_1x4()
627 static void dwconv2d_chw_5x5s2p2__sse_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_2x4() argument
628 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_2x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_2x4()
630 static void dwconv2d_chw_5x5s2p2__sse_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_3x4() argument
631 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_3x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_3x4()
633 static void dwconv2d_chw_5x5s2p2__sse_1x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_1x4_acc2() argument
634 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_1x4_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_1x4_acc2()
636 static void dwconv2d_chw_5x5s2p2__sse_1x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_1x4_acc3() argument
637 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_1x4_acc3, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_1x4_acc3()
639 static void dwconv2d_chw_5x5s2p2__sse_1x4_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_1x4_acc4() argument
640 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_1x4_acc4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_1x4_acc4()
642 static void dwconv2d_chw_5x5s2p2__sse_1x4_acc5(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_1x4_acc5() argument
643 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_1x4_acc5, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_1x4_acc5()
645 static void dwconv2d_chw_5x5s2p2__sse_2x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_2x4_acc2() argument
646 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_2x4_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_2x4_acc2()
648 static void dwconv2d_chw_5x5s2p2__sse_2x4_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_2x4_acc3() argument
649 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_2x4_acc3, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_2x4_acc3()
651 static void dwconv2d_chw_5x5s2p2__sse_3x4_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__sse_3x4_acc2() argument
652 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__sse_3x4_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__sse_3x4_acc2()
713 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4(benchmark::State& state, const char* ne… in BENCHMARK_DWCONV()
714 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_1x4, 3, 3, 1, … in BENCHMARK_DWCONV()
716 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_2x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_2x4() argument
717 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_2x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_2x4()
719 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_3x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_3x4() argument
720 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_3x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_3x4()
722 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_4x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_4x4() argument
723 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_4x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_4x4()
725 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_5x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_5x4() argument
726 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_5x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_5x4()
728 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_6x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_6x4() argument
729 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_6x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_6x4()
731 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc2() argument
732 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_1x4_acc2, 3, 3… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc2()
734 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc3(benchmark::State& state, const cha… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc3() argument
735 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_1x4_acc3, 3, 3… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc3()
737 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc4(benchmark::State& state, const cha… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc4() argument
738 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_1x4_acc4, 3, 3… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_1x4_acc4()
740 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_2x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_2x4_acc2() argument
741 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_loadsplat_2x4_acc2, 3, 3… in dwconv2d_chw_3x3p1__wasmsimd_arm_loadsplat_2x4_acc2()
743 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4() argument
744 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_1x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4()
746 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_2x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_2x4() argument
747 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_2x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_2x4()
749 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_3x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_3x4() argument
750 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_3x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_3x4()
752 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_4x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_4x4() argument
753 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_4x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_4x4()
755 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_5x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_5x4() argument
756 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_5x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_5x4()
758 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_6x4(benchmark::State& state, const char* ne… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_6x4() argument
759 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_6x4, 3, 3, 1, … in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_6x4()
761 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc2() argument
762 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_1x4_acc2, 3, 3… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc2()
764 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc3(benchmark::State& state, const cha… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc3() argument
765 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_1x4_acc3, 3, 3… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc3()
767 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc4(benchmark::State& state, const cha… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc4() argument
768 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_1x4_acc4, 3, 3… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_1x4_acc4()
770 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_2x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_2x4_acc2() argument
771 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_loadsplat_2x4_acc2, 3, 3… in dwconv2d_chw_3x3p1__wasmsimd_x86_loadsplat_2x4_acc2()
774 static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4() argument
775 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_1x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4()
777 static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_2x4() argument
778 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_2x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_2x4()
780 static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_3x4() argument
781 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_3x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_3x4()
783 static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_4x4() argument
784 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_4x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_4x4()
786 static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_5x4() argument
787 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_5x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_5x4()
789 static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_6x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_6x4() argument
790 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_6x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_6x4()
792 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc2() argument
793 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_1x4_acc2, 3, 3, 1,… in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc2()
795 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc3(benchmark::State& state, const char* n… in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc3() argument
796 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_1x4_acc3, 3, 3, 1,… in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc3()
798 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc4(benchmark::State& state, const char* n… in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc4() argument
799 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_1x4_acc4, 3, 3, 1,… in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_1x4_acc4()
801 …static void dwconv2d_chw_3x3p1__wasmsimd_arm_splat_2x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_2x4_acc2() argument
802 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_arm_splat_2x4_acc2, 3, 3, 1,… in dwconv2d_chw_3x3p1__wasmsimd_arm_splat_2x4_acc2()
804 static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4() argument
805 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_1x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4()
807 static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_2x4() argument
808 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_2x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_2x4()
810 static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_3x4() argument
811 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_3x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_3x4()
813 static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_4x4() argument
814 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_4x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_4x4()
816 static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_5x4() argument
817 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_5x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_5x4()
819 static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_6x4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_6x4() argument
820 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_6x4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_6x4()
822 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc2() argument
823 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_1x4_acc2, 3, 3, 1,… in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc2()
825 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc3(benchmark::State& state, const char* n… in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc3() argument
826 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_1x4_acc3, 3, 3, 1,… in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc3()
828 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc4(benchmark::State& state, const char* n… in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc4() argument
829 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_1x4_acc4, 3, 3, 1,… in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_1x4_acc4()
831 …static void dwconv2d_chw_3x3p1__wasmsimd_x86_splat_2x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_2x4_acc2() argument
832 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__wasmsimd_x86_splat_2x4_acc2, 3, 3, 1,… in dwconv2d_chw_3x3p1__wasmsimd_x86_splat_2x4_acc2()
835 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4(benchmark::State& state, const char* … in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4() argument
836 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_loadsplat_1x4, 3, 3, 1… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4()
838 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_2x4(benchmark::State& state, const char* … in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_2x4() argument
839 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_loadsplat_2x4, 3, 3, 1… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_2x4()
841 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_3x4(benchmark::State& state, const char* … in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_3x4() argument
842 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_loadsplat_3x4, 3, 3, 1… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_3x4()
844 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_4x4(benchmark::State& state, const char* … in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_4x4() argument
845 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_loadsplat_4x4, 3, 3, 1… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_4x4()
847 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc2() argument
848 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc2, 3,… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc2()
850 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc3(benchmark::State& state, const c… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc3() argument
851 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc3, 3,… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc3()
853 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc4(benchmark::State& state, const c… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc4() argument
854 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc4, 3,… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_1x4_acc4()
856 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_2x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_2x4_acc2() argument
857 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_loadsplat_2x4_acc2, 3,… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_loadsplat_2x4_acc2()
860 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4(benchmark::State& state, const char* … in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4() argument
861 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_loadsplat_1x4, 3, 3, 1… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4()
863 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_2x4(benchmark::State& state, const char* … in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_2x4() argument
864 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_loadsplat_2x4, 3, 3, 1… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_2x4()
866 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_3x4(benchmark::State& state, const char* … in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_3x4() argument
867 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_loadsplat_3x4, 3, 3, 1… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_3x4()
869 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_4x4(benchmark::State& state, const char* … in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_4x4() argument
870 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_loadsplat_4x4, 3, 3, 1… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_4x4()
872 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc2() argument
873 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc2, 3,… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc2()
875 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc3(benchmark::State& state, const c… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc3() argument
876 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc3, 3,… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc3()
878 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc4(benchmark::State& state, const c… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc4() argument
879 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc4, 3,… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_1x4_acc4()
881 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_2x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_2x4_acc2() argument
882 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_loadsplat_2x4_acc2, 3,… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_loadsplat_2x4_acc2()
885 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4(benchmark::State& state, const char* net)… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4() argument
886 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_splat_1x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4()
888 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_2x4(benchmark::State& state, const char* net)… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_2x4() argument
889 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_splat_2x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_2x4()
891 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_3x4(benchmark::State& state, const char* net)… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_3x4() argument
892 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_splat_3x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_3x4()
894 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_4x4(benchmark::State& state, const char* net)… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_4x4() argument
895 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_splat_4x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_4x4()
897 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc2() argument
898 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_splat_1x4_acc2, 3, 3, … in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc2()
900 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc3(benchmark::State& state, const char*… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc3() argument
901 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_splat_1x4_acc3, 3, 3, … in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc3()
903 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc4(benchmark::State& state, const char*… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc4() argument
904 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_splat_1x4_acc4, 3, 3, … in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_1x4_acc4()
906 …static void dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_2x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_2x4_acc2() argument
907 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_arm_splat_2x4_acc2, 3, 3, … in dwconv2d_chw_3x3s2p1__wasmsimd_arm_splat_2x4_acc2()
910 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4(benchmark::State& state, const char* net)… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4() argument
911 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_splat_1x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4()
913 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_2x4(benchmark::State& state, const char* net)… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_2x4() argument
914 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_splat_2x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_2x4()
916 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_3x4(benchmark::State& state, const char* net)… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_3x4() argument
917 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_splat_3x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_3x4()
919 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_4x4(benchmark::State& state, const char* net)… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_4x4() argument
920 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_splat_4x4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_4x4()
922 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc2() argument
923 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_splat_1x4_acc2, 3, 3, … in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc2()
925 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc3(benchmark::State& state, const char*… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc3() argument
926 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_splat_1x4_acc3, 3, 3, … in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc3()
928 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc4(benchmark::State& state, const char*… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc4() argument
929 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_splat_1x4_acc4, 3, 3, … in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_1x4_acc4()
931 …static void dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_2x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_2x4_acc2() argument
932 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__wasmsimd_x86_splat_2x4_acc2, 3, 3, … in dwconv2d_chw_3x3s2p1__wasmsimd_x86_splat_2x4_acc2()
935 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4() argument
936 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_1x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4()
938 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4() argument
939 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_2x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4()
941 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_3x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_3x4() argument
942 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_3x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_3x4()
944 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_4x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_4x4() argument
945 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_4x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_4x4()
947 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_5x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_5x4() argument
948 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_5x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_5x4()
950 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc2() argument
951 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_1x4_acc2, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc2()
953 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc3(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc3() argument
954 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_1x4_acc3, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc3()
956 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc4(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc4() argument
957 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_1x4_acc4, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc4()
959 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc5(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc5() argument
960 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_1x4_acc5, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_1x4_acc5()
962 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4_acc2() argument
963 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_2x4_acc2, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4_acc2()
965 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4_acc3(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4_acc3() argument
966 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_2x4_acc3, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_2x4_acc3()
968 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_3x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_3x4_acc2() argument
969 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_3x4_acc2, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_3x4_acc2()
971 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_4x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_4x4_acc2() argument
972 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_loadsplat_4x4_acc2, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_arm_loadsplat_4x4_acc2()
975 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4() argument
976 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_1x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4()
978 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4() argument
979 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_2x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4()
981 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_3x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_3x4() argument
982 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_3x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_3x4()
984 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_4x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_4x4() argument
985 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_4x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_4x4()
987 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_5x4(benchmark::State& state, const char* ne… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_5x4() argument
988 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_5x4, 5, 5, 2, … in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_5x4()
990 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc2() argument
991 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_1x4_acc2, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc2()
993 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc3(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc3() argument
994 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_1x4_acc3, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc3()
996 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc4(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc4() argument
997 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_1x4_acc4, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc4()
999 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc5(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc5() argument
1000 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_1x4_acc5, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_1x4_acc5()
1002 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4_acc2() argument
1003 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_2x4_acc2, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4_acc2()
1005 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4_acc3(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4_acc3() argument
1006 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_2x4_acc3, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_2x4_acc3()
1008 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_3x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_3x4_acc2() argument
1009 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_3x4_acc2, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_3x4_acc2()
1011 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_4x4_acc2(benchmark::State& state, const cha… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_4x4_acc2() argument
1012 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_loadsplat_4x4_acc2, 5, 5… in dwconv2d_chw_5x5p2__wasmsimd_x86_loadsplat_4x4_acc2()
1015 static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4() argument
1016 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_1x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4()
1018 static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4() argument
1019 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_2x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4()
1021 static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_3x4() argument
1022 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_3x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_3x4()
1024 static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_4x4() argument
1025 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_4x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_4x4()
1027 static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_5x4() argument
1028 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_5x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_5x4()
1030 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc2() argument
1031 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_1x4_acc2, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc2()
1033 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc3(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc3() argument
1034 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_1x4_acc3, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc3()
1036 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc4(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc4() argument
1037 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_1x4_acc4, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc4()
1039 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc5(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc5() argument
1040 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_1x4_acc5, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_1x4_acc5()
1042 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4_acc2() argument
1043 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_2x4_acc2, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4_acc2()
1045 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4_acc3(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4_acc3() argument
1046 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_2x4_acc3, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_2x4_acc3()
1048 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_3x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_3x4_acc2() argument
1049 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_3x4_acc2, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_3x4_acc2()
1051 …static void dwconv2d_chw_5x5p2__wasmsimd_arm_splat_4x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_4x4_acc2() argument
1052 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_arm_splat_4x4_acc2, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_arm_splat_4x4_acc2()
1055 static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4() argument
1056 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_1x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4()
1058 static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4() argument
1059 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_2x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4()
1061 static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_3x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_3x4() argument
1062 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_3x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_3x4()
1064 static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_4x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_4x4() argument
1065 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_4x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_4x4()
1067 static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_5x4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_5x4() argument
1068 … DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_5x4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_5x4()
1070 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc2() argument
1071 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_1x4_acc2, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc2()
1073 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc3(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc3() argument
1074 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_1x4_acc3, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc3()
1076 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc4(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc4() argument
1077 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_1x4_acc4, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc4()
1079 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc5(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc5() argument
1080 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_1x4_acc5, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_1x4_acc5()
1082 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4_acc2() argument
1083 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_2x4_acc2, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4_acc2()
1085 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4_acc3(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4_acc3() argument
1086 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_2x4_acc3, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_2x4_acc3()
1088 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_3x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_3x4_acc2() argument
1089 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_3x4_acc2, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_3x4_acc2()
1091 …static void dwconv2d_chw_5x5p2__wasmsimd_x86_splat_4x4_acc2(benchmark::State& state, const char* n… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_4x4_acc2() argument
1092 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__wasmsimd_x86_splat_4x4_acc2, 5, 5, 2,… in dwconv2d_chw_5x5p2__wasmsimd_x86_splat_4x4_acc2()
1095 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4(benchmark::State& state, const char* … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4() argument
1096 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_1x4, 5, 5, 2… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4()
1098 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4(benchmark::State& state, const char* … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4() argument
1099 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_2x4, 5, 5, 2… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4()
1101 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_3x4(benchmark::State& state, const char* … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_3x4() argument
1102 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_3x4, 5, 5, 2… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_3x4()
1104 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc2() argument
1105 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc2, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc2()
1107 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc3(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc3() argument
1108 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc3, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc3()
1110 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc4(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc4() argument
1111 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc4, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc4()
1113 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc5(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc5() argument
1114 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc5, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_1x4_acc5()
1116 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4_acc2() argument
1117 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_2x4_acc2, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4_acc2()
1119 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4_acc3(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4_acc3() argument
1120 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_2x4_acc3, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_2x4_acc3()
1122 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_3x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_3x4_acc2() argument
1123 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_loadsplat_3x4_acc2, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_loadsplat_3x4_acc2()
1126 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4(benchmark::State& state, const char* … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4() argument
1127 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_1x4, 5, 5, 2… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4()
1129 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4(benchmark::State& state, const char* … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4() argument
1130 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_2x4, 5, 5, 2… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4()
1132 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_3x4(benchmark::State& state, const char* … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_3x4() argument
1133 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_3x4, 5, 5, 2… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_3x4()
1135 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc2() argument
1136 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc2, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc2()
1138 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc3(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc3() argument
1139 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc3, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc3()
1141 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc4(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc4() argument
1142 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc4, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc4()
1144 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc5(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc5() argument
1145 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc5, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_1x4_acc5()
1147 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4_acc2() argument
1148 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_2x4_acc2, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4_acc2()
1150 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4_acc3(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4_acc3() argument
1151 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_2x4_acc3, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_2x4_acc3()
1153 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_3x4_acc2(benchmark::State& state, const c… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_3x4_acc2() argument
1154 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_loadsplat_3x4_acc2, 5,… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_loadsplat_3x4_acc2()
1157 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4(benchmark::State& state, const char* net)… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4() argument
1158 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_1x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4()
1160 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4(benchmark::State& state, const char* net)… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4() argument
1161 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_2x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4()
1163 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_3x4(benchmark::State& state, const char* net)… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_3x4() argument
1164 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_3x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_3x4()
1166 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc2() argument
1167 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_1x4_acc2, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc2()
1169 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc3(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc3() argument
1170 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_1x4_acc3, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc3()
1172 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc4(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc4() argument
1173 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_1x4_acc4, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc4()
1175 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc5(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc5() argument
1176 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_1x4_acc5, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_1x4_acc5()
1178 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4_acc2() argument
1179 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_2x4_acc2, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4_acc2()
1181 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4_acc3(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4_acc3() argument
1182 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_2x4_acc3, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_2x4_acc3()
1184 …static void dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_3x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_3x4_acc2() argument
1185 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_arm_splat_3x4_acc2, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_arm_splat_3x4_acc2()
1188 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4(benchmark::State& state, const char* net)… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4() argument
1189 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_1x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4()
1191 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4(benchmark::State& state, const char* net)… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4() argument
1192 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_2x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4()
1194 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_3x4(benchmark::State& state, const char* net)… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_3x4() argument
1195 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_3x4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_3x4()
1197 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc2() argument
1198 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_1x4_acc2, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc2()
1200 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc3(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc3() argument
1201 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_1x4_acc3, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc3()
1203 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc4(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc4() argument
1204 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_1x4_acc4, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc4()
1206 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc5(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc5() argument
1207 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_1x4_acc5, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_1x4_acc5()
1209 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4_acc2() argument
1210 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_2x4_acc2, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4_acc2()
1212 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4_acc3(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4_acc3() argument
1213 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_2x4_acc3, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_2x4_acc3()
1215 …static void dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_3x4_acc2(benchmark::State& state, const char*… in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_3x4_acc2() argument
1216 …DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__wasmsimd_x86_splat_3x4_acc2, 5, 5, … in dwconv2d_chw_5x5s2p2__wasmsimd_x86_splat_3x4_acc2()
1400 static void dwconv2d_chw_3x3p1__scalar_1x1(benchmark::State& state, const char* net) { in BENCHMARK_DWCONV()
1401 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_1x1, 3, 3, 1, 1); in BENCHMARK_DWCONV()
1403 static void dwconv2d_chw_3x3p1__scalar_2x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_2x1() argument
1404 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_2x1, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_2x1()
1406 static void dwconv2d_chw_3x3p1__scalar_3x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_3x1() argument
1407 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_3x1, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_3x1()
1409 static void dwconv2d_chw_3x3p1__scalar_4x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_4x1() argument
1410 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_4x1, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_4x1()
1412 static void dwconv2d_chw_3x3p1__scalar_5x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_5x1() argument
1413 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_5x1, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_5x1()
1415 static void dwconv2d_chw_3x3p1__scalar_6x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_6x1() argument
1416 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_6x1, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_6x1()
1418 static void dwconv2d_chw_3x3p1__scalar_1x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_1x1_acc2() argument
1419 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_1x1_acc2, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_1x1_acc2()
1421 static void dwconv2d_chw_3x3p1__scalar_1x1_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_1x1_acc3() argument
1422 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_1x1_acc3, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_1x1_acc3()
1424 static void dwconv2d_chw_3x3p1__scalar_1x1_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_1x1_acc4() argument
1425 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_1x1_acc4, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_1x1_acc4()
1427 static void dwconv2d_chw_3x3p1__scalar_2x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3p1__scalar_2x1_acc2() argument
1428 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3p1__scalar_2x1_acc2, 3, 3, 1, 1); in dwconv2d_chw_3x3p1__scalar_2x1_acc2()
1431 static void dwconv2d_chw_3x3s2p1__scalar_1x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__scalar_1x1() argument
1432 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__scalar_1x1, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__scalar_1x1()
1434 static void dwconv2d_chw_3x3s2p1__scalar_2x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__scalar_2x1() argument
1435 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__scalar_2x1, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__scalar_2x1()
1437 static void dwconv2d_chw_3x3s2p1__scalar_3x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__scalar_3x1() argument
1438 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__scalar_3x1, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__scalar_3x1()
1440 static void dwconv2d_chw_3x3s2p1__scalar_4x1(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__scalar_4x1() argument
1441 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__scalar_4x1, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__scalar_4x1()
1443 static void dwconv2d_chw_3x3s2p1__scalar_1x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__scalar_1x1_acc2() argument
1444 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__scalar_1x1_acc2, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__scalar_1x1_acc2()
1446 static void dwconv2d_chw_3x3s2p1__scalar_1x1_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__scalar_1x1_acc3() argument
1447 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__scalar_1x1_acc3, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__scalar_1x1_acc3()
1449 static void dwconv2d_chw_3x3s2p1__scalar_1x1_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__scalar_1x1_acc4() argument
1450 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__scalar_1x1_acc4, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__scalar_1x1_acc4()
1452 static void dwconv2d_chw_3x3s2p1__scalar_2x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_3x3s2p1__scalar_2x1_acc2() argument
1453 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_3x3s2p1__scalar_2x1_acc2, 3, 3, 1, 2); in dwconv2d_chw_3x3s2p1__scalar_2x1_acc2()
1456 static void dwconv2d_chw_5x5p2__scalar_1x1(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_1x1() argument
1457 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_1x1, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_1x1()
1459 static void dwconv2d_chw_5x5p2__scalar_2x1(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_2x1() argument
1460 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_2x1, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_2x1()
1462 static void dwconv2d_chw_5x5p2__scalar_3x1(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_3x1() argument
1463 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_3x1, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_3x1()
1465 static void dwconv2d_chw_5x5p2__scalar_1x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_1x1_acc2() argument
1466 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_1x1_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_1x1_acc2()
1468 static void dwconv2d_chw_5x5p2__scalar_1x1_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_1x1_acc3() argument
1469 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_1x1_acc3, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_1x1_acc3()
1471 static void dwconv2d_chw_5x5p2__scalar_1x1_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_1x1_acc4() argument
1472 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_1x1_acc4, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_1x1_acc4()
1474 static void dwconv2d_chw_5x5p2__scalar_1x1_acc5(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_1x1_acc5() argument
1475 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_1x1_acc5, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_1x1_acc5()
1477 static void dwconv2d_chw_5x5p2__scalar_2x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_2x1_acc2() argument
1478 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_2x1_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_2x1_acc2()
1480 static void dwconv2d_chw_5x5p2__scalar_2x1_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_2x1_acc3() argument
1481 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_2x1_acc3, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_2x1_acc3()
1483 static void dwconv2d_chw_5x5p2__scalar_3x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5p2__scalar_3x1_acc2() argument
1484 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5p2__scalar_3x1_acc2, 5, 5, 2, 1); in dwconv2d_chw_5x5p2__scalar_3x1_acc2()
1487 static void dwconv2d_chw_5x5s2p2__scalar_1x1(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_1x1() argument
1488 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_1x1, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_1x1()
1490 static void dwconv2d_chw_5x5s2p2__scalar_2x1(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_2x1() argument
1491 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_2x1, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_2x1()
1493 static void dwconv2d_chw_5x5s2p2__scalar_3x1(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_3x1() argument
1494 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_3x1, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_3x1()
1496 static void dwconv2d_chw_5x5s2p2__scalar_1x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_1x1_acc2() argument
1497 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_1x1_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_1x1_acc2()
1499 static void dwconv2d_chw_5x5s2p2__scalar_1x1_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_1x1_acc3() argument
1500 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_1x1_acc3, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_1x1_acc3()
1502 static void dwconv2d_chw_5x5s2p2__scalar_1x1_acc4(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_1x1_acc4() argument
1503 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_1x1_acc4, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_1x1_acc4()
1505 static void dwconv2d_chw_5x5s2p2__scalar_1x1_acc5(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_1x1_acc5() argument
1506 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_1x1_acc5, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_1x1_acc5()
1508 static void dwconv2d_chw_5x5s2p2__scalar_2x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_2x1_acc2() argument
1509 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_2x1_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_2x1_acc2()
1511 static void dwconv2d_chw_5x5s2p2__scalar_2x1_acc3(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_2x1_acc3() argument
1512 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_2x1_acc3, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_2x1_acc3()
1514 static void dwconv2d_chw_5x5s2p2__scalar_3x1_acc2(benchmark::State& state, const char* net) { in dwconv2d_chw_5x5s2p2__scalar_3x1_acc2() argument
1515 DWConv2DBenchmark(state, xnn_f32_dwconv2d_chw_ukernel_5x5s2p2__scalar_3x1_acc2, 5, 5, 2, 2); in dwconv2d_chw_5x5s2p2__scalar_3x1_acc2()