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
004cef1b
Commit
004cef1b
authored
Mar 07, 2018
by
fenglei.tian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up
parent
94cd8274
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
gpu_emitter.cpp
src/ngraph/runtime/gpu/gpu_emitter.cpp
+0
-1
gpu_emitter.hpp
src/ngraph/runtime/gpu/gpu_emitter.hpp
+1
-3
No files found.
src/ngraph/runtime/gpu/gpu_emitter.cpp
View file @
004cef1b
...
...
@@ -107,7 +107,6 @@ namespace ngraph
template
<>
void
GPU_Emitter
::
EMITTER_DECL
(
ngraph
::
op
::
Abs
)
{
std
::
cout
<<
"abs"
<<
std
::
endl
;
writer
<<
"{ // "
<<
node
->
get_name
()
<<
"
\n
"
;
writer
.
indent
++
;
writer
<<
"int count = "
<<
out
[
0
].
get_size
()
<<
";
\n
"
;
...
...
src/ngraph/runtime/gpu/gpu_emitter.hpp
View file @
004cef1b
...
...
@@ -46,8 +46,7 @@ namespace ngraph
const
std
::
vector
<
GPU_TensorViewWrapper
>&
args
,
const
std
::
vector
<
GPU_TensorViewWrapper
>&
out
)
{
std
::
cout
<<
node
->
get_name
()
<<
std
::
endl
;
throw
std
::
runtime_error
(
"Unimplemented op in GPU emitter"
);
throw
std
::
runtime_error
(
"Unimplemented op in GPU emitter for "
+
node
->
get_name
());
}
static
void
nop
(
GPU_ExternalFunction
*
external_function
,
...
...
@@ -56,7 +55,6 @@ namespace ngraph
const
std
::
vector
<
GPU_TensorViewWrapper
>&
args
,
const
std
::
vector
<
GPU_TensorViewWrapper
>&
out
)
{
std
::
cout
<<
"nop"
<<
std
::
endl
;
}
private
:
...
...
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