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
2f49032f
Commit
2f49032f
authored
Oct 12, 2018
by
Artur Wojcik
Committed by
Scott Cyphers
Oct 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
onnx: fix ONNX Python build (#1810)
Signed-off-by:
Artur Wojcik
<
artur.wojcik@intel.com
>
parent
d19d1271
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
prepare_environment.sh
.ci/onnx/jenkins/prepare_environment.sh
+1
-1
Dockerfile
.ci/travis/ubuntu/Dockerfile
+1
-1
node.hpp
src/ngraph/node.hpp
+1
-1
No files found.
.ci/onnx/jenkins/prepare_environment.sh
View file @
2f49032f
...
...
@@ -68,7 +68,7 @@ function build_ngraph() {
make
install
||
return
1
cd
"
${
ngraph_directory
}
/ngraph/python"
if
[
!
-d
./pybind11
]
;
then
git clone
--recursive
-b
allow-nonconstructible-holders https://github.com/jagerman
/pybind11.git
git clone
--recursive
https://github.com/pybind
/pybind11.git
fi
export
PYBIND_HEADERS_PATH
=
"
${
ngraph_directory
}
/ngraph/python/pybind11"
export
NGRAPH_CPP_BUILD_PATH
=
"
${
ngraph_directory
}
/ngraph_dist"
...
...
.ci/travis/ubuntu/Dockerfile
View file @
2f49032f
...
...
@@ -39,7 +39,7 @@ RUN make install
# Prepare nGraph Python API
WORKDIR
/root/ngraph/python
RUN
git clone
--recursive
-b
allow-nonconstructible-holders https://github.com/jagerman
/pybind11.git
RUN
git clone
--recursive
https://github.com/pybind
/pybind11.git
ENV
NGRAPH_CPP_BUILD_PATH /root/ngraph_dist
ENV
LD_LIBRARY_PATH /root/ngraph_dist/lib
ENV
PYBIND_HEADERS_PATH /root/ngraph/python/pybind11
...
...
src/ngraph/node.hpp
View file @
2f49032f
...
...
@@ -103,10 +103,10 @@ namespace ngraph
void
validate_and_infer_elementwise_logical
();
Node
(
const
std
::
string
&
node_type
,
const
NodeVector
&
arguments
,
size_t
output_size
=
1
);
virtual
~
Node
();
virtual
void
generate_adjoints
(
autodiff
::
Adjoints
&
adjoints
,
const
NodeVector
&
deltas
)
{}
public
:
virtual
~
Node
();
void
revalidate_and_infer_types
()
{
validate_and_infer_types
();
}
// Called after transition
void
delayed_validate_and_infer_types
();
...
...
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