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
ab6476fb
Commit
ab6476fb
authored
Nov 18, 2017
by
Robert Kimball
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused parameter
parent
9b46e945
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
3 deletions
+1
-3
emitter.cpp
src/ngraph/runtime/cpu/emitter.cpp
+0
-0
emitter.hpp
src/ngraph/runtime/cpu/emitter.hpp
+0
-1
external_function.cpp
src/ngraph/runtime/cpu/external_function.cpp
+1
-1
external_function.hpp
src/ngraph/runtime/cpu/external_function.hpp
+0
-1
No files found.
src/ngraph/runtime/cpu/emitter.cpp
View file @
ab6476fb
This diff is collapsed.
Click to expand it.
src/ngraph/runtime/cpu/emitter.hpp
View file @
ab6476fb
...
...
@@ -24,7 +24,6 @@
#define EMITTER_DECL(E) \
E(const ngraph::Node* n, \
ExternalFunction* ef, \
const std::vector<TensorViewInfo>& inputs, \
const std::vector<TensorViewInfo>& outputs)
...
...
src/ngraph/runtime/cpu/external_function.cpp
View file @
ab6476fb
...
...
@@ -292,7 +292,7 @@ using namespace ngraph::runtime::cpu::eigen;
auto
tv
=
output
.
get_tensor_view
();
out
.
push_back
({
0
,
tv
});
}
handler
->
second
(
&
emitter
,
node
.
get
(),
this
,
in
,
out
);
handler
->
second
(
&
emitter
,
node
.
get
(),
in
,
out
);
}
TU
.
indent
--
;
...
...
src/ngraph/runtime/cpu/external_function.hpp
View file @
ab6476fb
...
...
@@ -41,7 +41,6 @@ namespace ngraph
using
OpFunction
=
std
::
function
<
void
(
Emitter
*
,
const
ngraph
::
Node
*
,
ExternalFunction
*
,
const
std
::
vector
<
TensorViewInfo
>&
inputs
,
const
std
::
vector
<
TensorViewInfo
>&
outputs
)
>
;
...
...
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