mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +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:
parent
cd2e3a864d
commit
52d2e16665
@ -52,6 +52,8 @@ static float get_expected(float f, DNNMathUnaryOperation op)
|
||||
return tanh(f);
|
||||
case DMUO_ASINH:
|
||||
return asinh(f);
|
||||
case DMUO_ACOSH:
|
||||
return acosh(f);
|
||||
default:
|
||||
av_assert0(!"not supported yet");
|
||||
return 0.f;
|
||||
@ -117,5 +119,7 @@ int main(int agrc, char **argv)
|
||||
return 1;
|
||||
if (test(DMUO_ASINH))
|
||||
return 1;
|
||||
if (test(DMUO_ACOSH))
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user