2 * Copyright 2005 Balatoni Denes
3 * Copyright 2006 Loren Merritt
5 * This file is part of FFmpeg.
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #include "attributes.h"
24 #include "float_dsp.h"
26 static void vector_fmul_c(float *dst, const float *src0, const float *src1,
30 for (i = 0; i < len; i++)
31 dst[i] = src0[i] * src1[i];
34 static void vector_fmac_scalar_c(float *dst, const float *src, float mul,
38 for (i = 0; i < len; i++)
39 dst[i] += src[i] * mul;
42 static void vector_fmul_scalar_c(float *dst, const float *src, float mul,
46 for (i = 0; i < len; i++)
47 dst[i] = src[i] * mul;
50 static void vector_dmul_scalar_c(double *dst, const double *src, double mul,
54 for (i = 0; i < len; i++)
55 dst[i] = src[i] * mul;
58 static void vector_fmul_window_c(float *dst, const float *src0,
59 const float *src1, const float *win, int len)
67 for (i = -len, j = len - 1; i < 0; i++, j--) {
72 dst[i] = s0 * wj - s1 * wi;
73 dst[j] = s0 * wi + s1 * wj;
77 static void vector_fmul_add_c(float *dst, const float *src0, const float *src1,
78 const float *src2, int len){
81 for (i = 0; i < len; i++)
82 dst[i] = src0[i] * src1[i] + src2[i];
85 static void vector_fmul_reverse_c(float *dst, const float *src0,
86 const float *src1, int len)
91 for (i = 0; i < len; i++)
92 dst[i] = src0[i] * src1[-i];
95 static void butterflies_float_c(float *av_restrict v1, float *av_restrict v2,
100 for (i = 0; i < len; i++) {
101 float t = v1[i] - v2[i];
107 float avpriv_scalarproduct_float_c(const float *v1, const float *v2, int len)
112 for (i = 0; i < len; i++)
118 av_cold void avpriv_float_dsp_init(AVFloatDSPContext *fdsp, int bit_exact)
120 fdsp->vector_fmul = vector_fmul_c;
121 fdsp->vector_fmac_scalar = vector_fmac_scalar_c;
122 fdsp->vector_fmul_scalar = vector_fmul_scalar_c;
123 fdsp->vector_dmul_scalar = vector_dmul_scalar_c;
124 fdsp->vector_fmul_window = vector_fmul_window_c;
125 fdsp->vector_fmul_add = vector_fmul_add_c;
126 fdsp->vector_fmul_reverse = vector_fmul_reverse_c;
127 fdsp->butterflies_float = butterflies_float_c;
128 fdsp->scalarproduct_float = avpriv_scalarproduct_float_c;
131 ff_float_dsp_init_aarch64(fdsp);
133 ff_float_dsp_init_arm(fdsp);
135 ff_float_dsp_init_ppc(fdsp, bit_exact);
137 ff_float_dsp_init_x86(fdsp);
139 ff_float_dsp_init_mips(fdsp);
152 #include "internal.h"
156 #include "random_seed.h"
160 static void fill_float_array(AVLFG *lfg, float *a, int len)
163 double bmg[2], stddev = 10.0, mean = 0.0;
165 for (i = 0; i < len; i += 2) {
166 av_bmg_get(lfg, bmg);
167 a[i] = bmg[0] * stddev + mean;
168 a[i + 1] = bmg[1] * stddev + mean;
171 static int compare_floats(const float *a, const float *b, int len,
175 for (i = 0; i < len; i++) {
176 if (fabsf(a[i] - b[i]) > max_diff) {
177 av_log(NULL, AV_LOG_ERROR, "%d: %- .12f - %- .12f = % .12g\n",
178 i, a[i], b[i], a[i] - b[i]);
185 static void fill_double_array(AVLFG *lfg, double *a, int len)
188 double bmg[2], stddev = 10.0, mean = 0.0;
190 for (i = 0; i < len; i += 2) {
191 av_bmg_get(lfg, bmg);
192 a[i] = bmg[0] * stddev + mean;
193 a[i + 1] = bmg[1] * stddev + mean;
197 static int compare_doubles(const double *a, const double *b, int len,
202 for (i = 0; i < len; i++) {
203 if (fabs(a[i] - b[i]) > max_diff) {
204 av_log(NULL, AV_LOG_ERROR, "%d: %- .12f - %- .12f = % .12g\n",
205 i, a[i], b[i], a[i] - b[i]);
212 static int test_vector_fmul(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
213 const float *v1, const float *v2)
215 LOCAL_ALIGNED(32, float, cdst, [LEN]);
216 LOCAL_ALIGNED(32, float, odst, [LEN]);
219 cdsp->vector_fmul(cdst, v1, v2, LEN);
220 fdsp->vector_fmul(odst, v1, v2, LEN);
222 if (ret = compare_floats(cdst, odst, LEN, FLT_EPSILON))
223 av_log(NULL, AV_LOG_ERROR, "vector_fmul failed\n");
228 #define ARBITRARY_FMAC_SCALAR_CONST 0.005
229 static int test_vector_fmac_scalar(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
230 const float *v1, const float *src0, float scale)
232 LOCAL_ALIGNED(32, float, cdst, [LEN]);
233 LOCAL_ALIGNED(32, float, odst, [LEN]);
236 memcpy(cdst, v1, LEN * sizeof(*v1));
237 memcpy(odst, v1, LEN * sizeof(*v1));
239 cdsp->vector_fmac_scalar(cdst, src0, scale, LEN);
240 fdsp->vector_fmac_scalar(odst, src0, scale, LEN);
242 if (ret = compare_floats(cdst, odst, LEN, ARBITRARY_FMAC_SCALAR_CONST))
243 av_log(NULL, AV_LOG_ERROR, "vector_fmac_scalar failed\n");
248 static int test_vector_fmul_scalar(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
249 const float *v1, float scale)
251 LOCAL_ALIGNED(32, float, cdst, [LEN]);
252 LOCAL_ALIGNED(32, float, odst, [LEN]);
255 cdsp->vector_fmul_scalar(cdst, v1, scale, LEN);
256 fdsp->vector_fmul_scalar(odst, v1, scale, LEN);
258 if (ret = compare_floats(cdst, odst, LEN, FLT_EPSILON))
259 av_log(NULL, AV_LOG_ERROR, "vector_fmul_scalar failed\n");
264 static int test_vector_dmul_scalar(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
265 const double *v1, double scale)
267 LOCAL_ALIGNED(32, double, cdst, [LEN]);
268 LOCAL_ALIGNED(32, double, odst, [LEN]);
271 cdsp->vector_dmul_scalar(cdst, v1, scale, LEN);
272 fdsp->vector_dmul_scalar(odst, v1, scale, LEN);
274 if (ret = compare_doubles(cdst, odst, LEN, DBL_EPSILON))
275 av_log(NULL, AV_LOG_ERROR, "vector_dmul_scalar failed\n");
280 #define ARBITRARY_FMUL_WINDOW_CONST 0.008
281 static int test_vector_fmul_window(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
282 const float *v1, const float *v2, const float *v3)
284 LOCAL_ALIGNED(32, float, cdst, [LEN]);
285 LOCAL_ALIGNED(32, float, odst, [LEN]);
288 cdsp->vector_fmul_window(cdst, v1, v2, v3, LEN / 2);
289 fdsp->vector_fmul_window(odst, v1, v2, v3, LEN / 2);
291 if (ret = compare_floats(cdst, odst, LEN, ARBITRARY_FMUL_WINDOW_CONST))
292 av_log(NULL, AV_LOG_ERROR, "vector_fmul_window failed\n");
297 #define ARBITRARY_FMUL_ADD_CONST 0.005
298 static int test_vector_fmul_add(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
299 const float *v1, const float *v2, const float *v3)
301 LOCAL_ALIGNED(32, float, cdst, [LEN]);
302 LOCAL_ALIGNED(32, float, odst, [LEN]);
305 cdsp->vector_fmul_add(cdst, v1, v2, v3, LEN);
306 fdsp->vector_fmul_add(odst, v1, v2, v3, LEN);
308 if (ret = compare_floats(cdst, odst, LEN, ARBITRARY_FMUL_ADD_CONST))
309 av_log(NULL, AV_LOG_ERROR, "vector_fmul_add failed\n");
314 static int test_vector_fmul_reverse(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
315 const float *v1, const float *v2)
317 LOCAL_ALIGNED(32, float, cdst, [LEN]);
318 LOCAL_ALIGNED(32, float, odst, [LEN]);
321 cdsp->vector_fmul_reverse(cdst, v1, v2, LEN);
322 fdsp->vector_fmul_reverse(odst, v1, v2, LEN);
324 if (ret = compare_floats(cdst, odst, LEN, FLT_EPSILON))
325 av_log(NULL, AV_LOG_ERROR, "vector_fmul_reverse failed\n");
330 static int test_butterflies_float(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
331 const float *v1, const float *v2)
333 LOCAL_ALIGNED(32, float, cv1, [LEN]);
334 LOCAL_ALIGNED(32, float, cv2, [LEN]);
335 LOCAL_ALIGNED(32, float, ov1, [LEN]);
336 LOCAL_ALIGNED(32, float, ov2, [LEN]);
339 memcpy(cv1, v1, LEN * sizeof(*v1));
340 memcpy(cv2, v2, LEN * sizeof(*v2));
341 memcpy(ov1, v1, LEN * sizeof(*v1));
342 memcpy(ov2, v2, LEN * sizeof(*v2));
344 cdsp->butterflies_float(cv1, cv2, LEN);
345 fdsp->butterflies_float(ov1, ov2, LEN);
347 if ((ret = compare_floats(cv1, ov1, LEN, FLT_EPSILON)) ||
348 (ret = compare_floats(cv2, ov2, LEN, FLT_EPSILON)))
349 av_log(NULL, AV_LOG_ERROR, "butterflies_float failed\n");
354 #define ARBITRARY_SCALARPRODUCT_CONST 0.2
355 static int test_scalarproduct_float(AVFloatDSPContext *fdsp, AVFloatDSPContext *cdsp,
356 const float *v1, const float *v2)
361 cprod = cdsp->scalarproduct_float(v1, v2, LEN);
362 oprod = fdsp->scalarproduct_float(v1, v2, LEN);
364 if (ret = compare_floats(&cprod, &oprod, 1, ARBITRARY_SCALARPRODUCT_CONST))
365 av_log(NULL, AV_LOG_ERROR, "scalarproduct_float failed\n");
370 int main(int argc, char **argv)
374 AVFloatDSPContext fdsp, cdsp;
377 LOCAL_ALIGNED(32, float, src0, [LEN]);
378 LOCAL_ALIGNED(32, float, src1, [LEN]);
379 LOCAL_ALIGNED(32, float, src2, [LEN]);
380 LOCAL_ALIGNED(32, double, dbl_src0, [LEN]);
381 LOCAL_ALIGNED(32, double, dbl_src1, [LEN]);
383 if (argc > 2 && !strcmp(argv[1], "-s"))
384 seed = strtoul(argv[2], NULL, 10);
386 seed = av_get_random_seed();
388 av_log(NULL, AV_LOG_INFO, "float_dsp-test: random seed %u\n", seed);
390 av_lfg_init(&lfg, seed);
392 fill_float_array(&lfg, src0, LEN);
393 fill_float_array(&lfg, src1, LEN);
394 fill_float_array(&lfg, src2, LEN);
396 fill_double_array(&lfg, dbl_src0, LEN);
397 fill_double_array(&lfg, dbl_src1, LEN);
399 avpriv_float_dsp_init(&fdsp, 1);
400 av_set_cpu_flags_mask(0);
401 avpriv_float_dsp_init(&cdsp, 1);
403 if (test_vector_fmul(&fdsp, &cdsp, src0, src1))
405 if (test_vector_fmac_scalar(&fdsp, &cdsp, src2, src0, src1[0]))
407 if (test_vector_fmul_scalar(&fdsp, &cdsp, src0, src1[0]))
409 if (test_vector_fmul_window(&fdsp, &cdsp, src0, src1, src2))
411 if (test_vector_fmul_add(&fdsp, &cdsp, src0, src1, src2))
413 if (test_vector_fmul_reverse(&fdsp, &cdsp, src0, src1))
415 if (test_butterflies_float(&fdsp, &cdsp, src0, src1))
417 if (test_scalarproduct_float(&fdsp, &cdsp, src0, src1))
419 if (test_vector_dmul_scalar(&fdsp, &cdsp, dbl_src0, dbl_src1[0]))