mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 09:02:20 +00:00
dnn-layer-mathunary-test: add unit test for tan
Signed-off-by: Ting Fu <ting.fu@intel.com> Signed-off-by: Guo Yejun <yejun.guo@intel.com>
This commit is contained in:
parent
22d0860c13
commit
3ac2f7ccd7
@ -36,6 +36,8 @@ static float get_expected(float f, DNNMathUnaryOperation op)
|
|||||||
return sin(f);
|
return sin(f);
|
||||||
case DMUO_COS:
|
case DMUO_COS:
|
||||||
return cos(f);
|
return cos(f);
|
||||||
|
case DMUO_TAN:
|
||||||
|
return tan(f);
|
||||||
default:
|
default:
|
||||||
av_assert0(!"not supported yet");
|
av_assert0(!"not supported yet");
|
||||||
return 0.f;
|
return 0.f;
|
||||||
@ -85,5 +87,7 @@ int main(int agrc, char **argv)
|
|||||||
return 1;
|
return 1;
|
||||||
if (test(DMUO_COS))
|
if (test(DMUO_COS))
|
||||||
return 1;
|
return 1;
|
||||||
|
if (test(DMUO_TAN))
|
||||||
|
return 1;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user