1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

dnn-layer-math-unary-test: add unit test for acosh

Signed-off-by: Ting Fu <ting.fu@intel.com>
This commit is contained in:
Ting Fu 2020-06-29 22:54:09 +08:00 committed by Guo, Yejun
parent cd2e3a864d
commit 52d2e16665

View File

@ -52,6 +52,8 @@ static float get_expected(float f, DNNMathUnaryOperation op)
return tanh(f); return tanh(f);
case DMUO_ASINH: case DMUO_ASINH:
return asinh(f); return asinh(f);
case DMUO_ACOSH:
return acosh(f);
default: default:
av_assert0(!"not supported yet"); av_assert0(!"not supported yet");
return 0.f; return 0.f;
@ -117,5 +119,7 @@ int main(int agrc, char **argv)
return 1; return 1;
if (test(DMUO_ASINH)) if (test(DMUO_ASINH))
return 1; return 1;
if (test(DMUO_ACOSH))
return 1;
return 0; return 0;
} }