Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
86b783c6
Commit
86b783c6
authored
6 years ago
by
Pruthvi
Committed by
Scott Cyphers
6 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix failing bn test (#2175)
* fix fialing bn test * fix style
parent
05c7fbe4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
cpu_emitter.cpp
src/ngraph/runtime/cpu/cpu_emitter.cpp
+4
-4
No files found.
src/ngraph/runtime/cpu/cpu_emitter.cpp
View file @
86b783c6
...
...
@@ -698,8 +698,8 @@ namespace ngraph
if
(
args
.
size
()
==
3
)
{
writer
<<
"reference::batch_norm_t
hree_outputs("
<<
batchnorm
->
get_eps_value
()
<<
",
\n
"
;
writer
<<
"reference::batch_norm_t
raining("
<<
batchnorm
->
get_eps_value
()
<<
",
\n
"
;
writer
<<
" "
<<
args
[
0
].
get_name
()
<<
",
\n
"
;
writer
<<
" "
<<
args
[
1
].
get_name
()
<<
",
\n
"
;
writer
<<
" "
<<
args
[
2
].
get_name
()
<<
",
\n
"
;
...
...
@@ -710,7 +710,7 @@ namespace ngraph
}
else
{
writer
<<
"reference::batch_norm_
one_output
("
<<
batchnorm
->
get_eps_value
()
writer
<<
"reference::batch_norm_
inference
("
<<
batchnorm
->
get_eps_value
()
<<
",
\n
"
;
writer
<<
" "
<<
args
[
0
].
get_name
()
<<
",
\n
"
;
writer
<<
" "
<<
args
[
1
].
get_name
()
<<
",
\n
"
;
...
...
@@ -736,7 +736,7 @@ namespace ngraph
const
ngraph
::
op
::
BatchNormInference
*
batchnorm
=
static_cast
<
const
ngraph
::
op
::
BatchNormInference
*>
(
node
);
writer
<<
"reference::batch_norm_
one_output
("
<<
batchnorm
->
get_eps_value
()
writer
<<
"reference::batch_norm_
inference
("
<<
batchnorm
->
get_eps_value
()
<<
",
\n
"
;
writer
<<
" "
<<
args
[
0
].
get_name
()
<<
",
\n
"
;
writer
<<
" "
<<
args
[
1
].
get_name
()
<<
",
\n
"
;
...
...
This diff is collapsed.
Click to expand it.
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