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
92772d7b
Commit
92772d7b
authored
Jul 23, 2019
by
Robert Kimball
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix build errors
parent
be7aef0b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
5 deletions
+0
-5
int_executable.cpp
src/ngraph/runtime/interpreter/int_executable.cpp
+0
-4
int_executable.hpp
src/ngraph/runtime/interpreter/int_executable.hpp
+0
-1
No files found.
src/ngraph/runtime/interpreter/int_executable.cpp
View file @
92772d7b
...
...
@@ -39,8 +39,6 @@ using namespace ngraph;
using
descriptor
::
layout
::
DenseTensorLayout
;
atomic
<
size_t
>
runtime
::
interpreter
::
INTExecutable
::
m_next_group_id
;
runtime
::
interpreter
::
INTExecutable
::
INTExecutable
(
const
shared_ptr
<
Function
>&
function
,
bool
enable_performance_collection
)
:
m_is_compiled
{
true
}
...
...
@@ -345,7 +343,6 @@ vector<shared_ptr<runtime::Tensor>>
{
vector
<
shared_ptr
<
runtime
::
HostTensor
>>
tensors
;
shared_ptr
<
op
::
Parameter
>
parameter
=
get_parameter
(
input_index
);
size_t
group_id
=
m_next_group_id
.
fetch_add
(
1
);
for
(
size_t
i
=
0
;
i
<
pipeline_depth
;
i
++
)
{
shared_ptr
<
runtime
::
HostTensor
>
tensor
;
...
...
@@ -368,7 +365,6 @@ vector<shared_ptr<runtime::Tensor>>
{
vector
<
shared_ptr
<
runtime
::
HostTensor
>>
tensors
;
shared_ptr
<
op
::
Result
>
result
=
get_result
(
output_index
);
size_t
group_id
=
m_next_group_id
.
fetch_add
(
1
);
for
(
size_t
i
=
0
;
i
<
pipeline_depth
;
i
++
)
{
shared_ptr
<
runtime
::
HostTensor
>
tensor
;
...
...
src/ngraph/runtime/interpreter/int_executable.hpp
View file @
92772d7b
...
...
@@ -210,7 +210,6 @@ private:
std
::
vector
<
NodeWrapper
>
m_wrapped_nodes
;
std
::
unordered_map
<
const
Node
*
,
std
::
shared_ptr
<
RNGState
>>
m_states
;
std
::
set
<
std
::
string
>
m_unsupported_op_name_list
;
static
std
::
atomic
<
size_t
>
m_next_group_id
;
static
void
perform_nan_check
(
const
std
::
vector
<
std
::
shared_ptr
<
HostTensor
>>&
,
const
Node
*
op
=
nullptr
);
...
...
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