diff mbox series

[FFmpeg-devel,4/6] dnn-layer-mathbinary-test: add unit test for mul

Message ID 1586594400-16937-1-git-send-email-yejun.guo@intel.com
State Accepted
Commit 265b5bd324496d6a342506ffa6157df5f2a85353
Headers show
Series [FFmpeg-devel,1/6] dnn/native: add native support for 'add' | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Guo, Yejun April 11, 2020, 8:40 a.m. UTC
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
---
 tests/dnn/dnn-layer-mathbinary-test.c | 5 +++++
 1 file changed, 5 insertions(+)
diff mbox series

Patch

diff --git a/tests/dnn/dnn-layer-mathbinary-test.c b/tests/dnn/dnn-layer-mathbinary-test.c
index fd8037f..3b0f0c5 100644
--- a/tests/dnn/dnn-layer-mathbinary-test.c
+++ b/tests/dnn/dnn-layer-mathbinary-test.c
@@ -34,6 +34,8 @@  static float get_expected(float f1, float f2, DNNMathBinaryOperation op)
         return f1 - f2;
     case DMBO_ADD:
         return f1 + f2;
+    case DMBO_MUL:
+        return f1 * f2;
     default:
         av_assert0(!"not supported yet");
         return 0.f;
@@ -190,5 +192,8 @@  int main(int argc, char **argv)
     if (test(DMBO_ADD))
         return 1;
 
+    if (test(DMBO_MUL))
+        return 1;
+
     return 0;
 }