Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
6fd61234
Commit
6fd61234
authored
Apr 26, 2020
by
Guo, Yejun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dnn-layer-mathbinary-test: add unit test for minimum
Signed-off-by:
Guo, Yejun
<
yejun.guo@intel.com
>
parent
71e28c54
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
dnn-layer-mathbinary-test.c
tests/dnn/dnn-layer-mathbinary-test.c
+5
-0
No files found.
tests/dnn/dnn-layer-mathbinary-test.c
View file @
6fd61234
...
...
@@ -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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment