[FFmpeg-devel] [PATCH 2/2] dnn-layer-mathbinary-test: add unit test for minimum
Guo, Yejun
yejun.guo at intel.com
Sun Apr 26 12:05:05 EEST 2020
Signed-off-by: Guo, Yejun <yejun.guo at intel.com>
---
tests/dnn/dnn-layer-mathbinary-test.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tests/dnn/dnn-layer-mathbinary-test.c b/tests/dnn/dnn-layer-mathbinary-test.c
index f67c0f2..e7f8f85 100644
--- a/tests/dnn/dnn-layer-mathbinary-test.c
+++ b/tests/dnn/dnn-layer-mathbinary-test.c
@@ -38,6 +38,8 @@ static float get_expected(float f1, float f2, DNNMathBinaryOperation op)
return f1 * f2;
case DMBO_REALDIV:
return f1 / f2;
+ case DMBO_MINIMUM:
+ return (f1 < f2) ? f1 : f2;
default:
av_assert0(!"not supported yet");
return 0.f;
@@ -200,5 +202,8 @@ int main(int argc, char **argv)
if (test(DMBO_REALDIV))
return 1;
+ if (test(DMBO_MINIMUM))
+ return 1;
+
return 0;
}
--
2.7.4
More information about the ffmpeg-devel
mailing list