2020-03-21 02:58:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020
|
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include "libavfilter/dnn/dnn_backend_native_layer_mathbinary.h"
|
2020-04-10 14:32:02 +00:00
|
|
|
#include "libavutil/avassert.h"
|
2020-03-21 02:58:11 +00:00
|
|
|
|
dnn-layer-mathbinary-test: Fix tests for cases with extra intermediate precision
This fixes tests on 32 bit x86 mingw with clang, which uses x87
fpu by default.
In this setup, while the get_expected function is declared to
return float, the compiler is (especially given the optimization
flags set) free to keep the intermediate values (in this case,
the return value from the inlined function) in higher precision.
This results in the situation where 7.28 (which actually, as
a float, ends up as 7.2800002098), multiplied by 100, is
728.000000 when really forced into a 32 bit float, but 728.000021
when kept with higher intermediate precision.
For the multiplication case, a more suitable epsilon would e.g.
be 2*FLT_EPSILON*fabs(expected_output), but just increase the
current hardcoded threshold for now.
Signed-off-by: Martin Storsjö <martin@martin.st>
2020-04-23 06:19:25 +00:00
|
|
|
#define EPSON 0.00005
|
2020-03-21 02:58:11 +00:00
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
static float get_expected(float f1, float f2, DNNMathBinaryOperation op)
|
|
|
|
{
|
|
|
|
switch (op)
|
|
|
|
{
|
|
|
|
case DMBO_SUB:
|
|
|
|
return f1 - f2;
|
|
|
|
case DMBO_ADD:
|
|
|
|
return f1 + f2;
|
2020-04-11 05:24:36 +00:00
|
|
|
case DMBO_MUL:
|
|
|
|
return f1 * f2;
|
2020-04-11 05:50:32 +00:00
|
|
|
case DMBO_REALDIV:
|
|
|
|
return f1 / f2;
|
2020-04-10 14:32:02 +00:00
|
|
|
default:
|
|
|
|
av_assert0(!"not supported yet");
|
|
|
|
return 0.f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int test_broadcast_input0(DNNMathBinaryOperation op)
|
2020-03-21 02:58:11 +00:00
|
|
|
{
|
|
|
|
DnnLayerMathBinaryParams params;
|
|
|
|
DnnOperand operands[2];
|
|
|
|
int32_t input_indexes[1];
|
|
|
|
float input[1*1*2*3] = {
|
|
|
|
-3, 2.5, 2, -2.1, 7.8, 100
|
|
|
|
};
|
|
|
|
float *output;
|
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
params.bin_op = op;
|
2020-03-21 02:58:11 +00:00
|
|
|
params.input0_broadcast = 1;
|
|
|
|
params.input1_broadcast = 0;
|
|
|
|
params.v = 7.28;
|
|
|
|
|
|
|
|
operands[0].data = input;
|
|
|
|
operands[0].dims[0] = 1;
|
|
|
|
operands[0].dims[1] = 1;
|
|
|
|
operands[0].dims[2] = 2;
|
|
|
|
operands[0].dims[3] = 3;
|
|
|
|
operands[1].data = NULL;
|
|
|
|
|
|
|
|
input_indexes[0] = 0;
|
|
|
|
dnn_execute_layer_math_binary(operands, input_indexes, 1, ¶ms);
|
|
|
|
|
|
|
|
output = operands[1].data;
|
|
|
|
for (int i = 0; i < sizeof(input) / sizeof(float); i++) {
|
2020-04-10 14:32:02 +00:00
|
|
|
float expected_output = get_expected(params.v, input[i], op);
|
2020-03-21 02:58:11 +00:00
|
|
|
if (fabs(output[i] - expected_output) > EPSON) {
|
2020-04-10 14:32:02 +00:00
|
|
|
printf("op %d, at index %d, output: %f, expected_output: %f (%s:%d)\n",
|
|
|
|
op, i, output[i], expected_output, __FILE__, __LINE__);
|
2020-03-21 02:58:11 +00:00
|
|
|
av_freep(&output);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
av_freep(&output);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
static int test_broadcast_input1(DNNMathBinaryOperation op)
|
2020-03-21 02:58:11 +00:00
|
|
|
{
|
|
|
|
DnnLayerMathBinaryParams params;
|
|
|
|
DnnOperand operands[2];
|
|
|
|
int32_t input_indexes[1];
|
|
|
|
float input[1*1*2*3] = {
|
|
|
|
-3, 2.5, 2, -2.1, 7.8, 100
|
|
|
|
};
|
|
|
|
float *output;
|
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
params.bin_op = op;
|
2020-03-21 02:58:11 +00:00
|
|
|
params.input0_broadcast = 0;
|
|
|
|
params.input1_broadcast = 1;
|
|
|
|
params.v = 7.28;
|
|
|
|
|
|
|
|
operands[0].data = input;
|
|
|
|
operands[0].dims[0] = 1;
|
|
|
|
operands[0].dims[1] = 1;
|
|
|
|
operands[0].dims[2] = 2;
|
|
|
|
operands[0].dims[3] = 3;
|
|
|
|
operands[1].data = NULL;
|
|
|
|
|
|
|
|
input_indexes[0] = 0;
|
|
|
|
dnn_execute_layer_math_binary(operands, input_indexes, 1, ¶ms);
|
|
|
|
|
|
|
|
output = operands[1].data;
|
|
|
|
for (int i = 0; i < sizeof(input) / sizeof(float); i++) {
|
2020-04-10 14:32:02 +00:00
|
|
|
float expected_output = get_expected(input[i], params.v, op);
|
2020-03-21 02:58:11 +00:00
|
|
|
if (fabs(output[i] - expected_output) > EPSON) {
|
2020-04-10 14:32:02 +00:00
|
|
|
printf("op %d, at index %d, output: %f, expected_output: %f (%s:%d)\n",
|
|
|
|
op, i, output[i], expected_output, __FILE__, __LINE__);
|
2020-03-21 02:58:11 +00:00
|
|
|
av_freep(&output);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
av_freep(&output);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
static int test_no_broadcast(DNNMathBinaryOperation op)
|
2020-03-21 02:58:11 +00:00
|
|
|
{
|
|
|
|
DnnLayerMathBinaryParams params;
|
|
|
|
DnnOperand operands[3];
|
|
|
|
int32_t input_indexes[2];
|
|
|
|
float input0[1*1*2*3] = {
|
|
|
|
-3, 2.5, 2, -2.1, 7.8, 100
|
|
|
|
};
|
|
|
|
float input1[1*1*2*3] = {
|
|
|
|
-1, 2, 3, -21, 8, 10.0
|
|
|
|
};
|
|
|
|
float *output;
|
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
params.bin_op = op;
|
2020-03-21 02:58:11 +00:00
|
|
|
params.input0_broadcast = 0;
|
|
|
|
params.input1_broadcast = 0;
|
|
|
|
|
|
|
|
operands[0].data = input0;
|
|
|
|
operands[0].dims[0] = 1;
|
|
|
|
operands[0].dims[1] = 1;
|
|
|
|
operands[0].dims[2] = 2;
|
|
|
|
operands[0].dims[3] = 3;
|
|
|
|
operands[1].data = input1;
|
|
|
|
operands[1].dims[0] = 1;
|
|
|
|
operands[1].dims[1] = 1;
|
|
|
|
operands[1].dims[2] = 2;
|
|
|
|
operands[1].dims[3] = 3;
|
|
|
|
operands[2].data = NULL;
|
|
|
|
|
|
|
|
input_indexes[0] = 0;
|
|
|
|
input_indexes[1] = 1;
|
|
|
|
dnn_execute_layer_math_binary(operands, input_indexes, 2, ¶ms);
|
|
|
|
|
|
|
|
output = operands[2].data;
|
|
|
|
for (int i = 0; i < sizeof(input0) / sizeof(float); i++) {
|
2020-04-10 14:32:02 +00:00
|
|
|
float expected_output = get_expected(input0[i], input1[i], op);
|
2020-03-21 02:58:11 +00:00
|
|
|
if (fabs(output[i] - expected_output) > EPSON) {
|
2020-04-10 14:32:02 +00:00
|
|
|
printf("op %d, at index %d, output: %f, expected_output: %f (%s:%d)\n",
|
|
|
|
op, i, output[i], expected_output, __FILE__, __LINE__);
|
2020-03-21 02:58:11 +00:00
|
|
|
av_freep(&output);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
av_freep(&output);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
static int test(DNNMathBinaryOperation op)
|
2020-03-21 02:58:11 +00:00
|
|
|
{
|
2020-04-10 14:32:02 +00:00
|
|
|
if (test_broadcast_input0(op))
|
2020-03-21 02:58:11 +00:00
|
|
|
return 1;
|
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
if (test_broadcast_input1(op))
|
2020-03-21 02:58:11 +00:00
|
|
|
return 1;
|
|
|
|
|
2020-04-10 14:32:02 +00:00
|
|
|
if (test_no_broadcast(op))
|
2020-03-21 02:58:11 +00:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2020-04-10 14:32:02 +00:00
|
|
|
if (test(DMBO_SUB))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (test(DMBO_ADD))
|
2020-03-21 02:58:11 +00:00
|
|
|
return 1;
|
|
|
|
|
2020-04-11 05:24:36 +00:00
|
|
|
if (test(DMBO_MUL))
|
|
|
|
return 1;
|
|
|
|
|
2020-04-11 05:50:32 +00:00
|
|
|
if (test(DMBO_REALDIV))
|
|
|
|
return 1;
|
|
|
|
|
2020-03-21 02:58:11 +00:00
|
|
|
return 0;
|
|
|
|
}
|