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
28c16d47
Commit
28c16d47
authored
Jul 12, 2019
by
Robert Kimball
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style
parent
f13257e4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
executable.cpp
src/ngraph/runtime/executable.cpp
+2
-2
executable.hpp
src/ngraph/runtime/executable.hpp
+4
-4
No files found.
src/ngraph/runtime/executable.cpp
View file @
28c16d47
...
...
@@ -135,13 +135,13 @@ shared_ptr<runtime::Tensor> runtime::Executable::create_output_tensor(size_t out
}
vector
<
shared_ptr
<
runtime
::
Tensor
>>
runtime
::
Executable
::
create_input_tensor
(
size_t
input_index
,
size_t
pipeline_depth
)
size_t
pipeline_depth
)
{
throw
runtime_error
(
"create_input_tensor unimplemented"
);
}
vector
<
shared_ptr
<
runtime
::
Tensor
>>
runtime
::
Executable
::
create_output_tensor
(
size_t
output_index
,
size_t
pipeline_depth
)
size_t
pipeline_depth
)
{
throw
runtime_error
(
"create_output_tensor unimplemented"
);
}
src/ngraph/runtime/executable.hpp
View file @
28c16d47
...
...
@@ -91,8 +91,8 @@ public:
/// \param pipeline_depth The number of stages in the input pipeline. For double-buffered input
/// you would specify pipeline_depth=2
/// \returns A vector of Tensors, one for each stage of the pipeline
virtual
std
::
vector
<
std
::
shared_ptr
<
runtime
::
Tensor
>>
create_input_tensor
(
size_t
input_index
,
size_t
pipeline_depth
);
virtual
std
::
vector
<
std
::
shared_ptr
<
runtime
::
Tensor
>>
create_input_tensor
(
size_t
input_index
,
size_t
pipeline_depth
);
/// \brief Create a vector of output Tensors
/// \param output_index The index position in the output Result vector. This would be the same
...
...
@@ -100,8 +100,8 @@ public:
/// \param pipeline_depth The number of stages in the output pipeline. For double-buffered output
/// you would specify pipeline_depth=2
/// \returns A vector of Tensors, one for each stage of the pipeline
virtual
std
::
vector
<
std
::
shared_ptr
<
runtime
::
Tensor
>>
create_output_tensor
(
size_t
output_index
,
size_t
pipeline_depth
);
virtual
std
::
vector
<
std
::
shared_ptr
<
runtime
::
Tensor
>>
create_output_tensor
(
size_t
output_index
,
size_t
pipeline_depth
);
protected
:
/// \brief Called at the end of compile to the values to be returned by get_parameters
...
...
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