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
289586ab
Commit
289586ab
authored
Jul 27, 2018
by
L.S. Cook
Committed by
Scott Cyphers
Jul 27, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
numpy is also needed to build python API docs (#1253)
parent
3b578db4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
install.rst
doc/sphinx/source/install.rst
+3
-3
doc-contributor-README.rst
doc/sphinx/source/project/doc-contributor-README.rst
+5
-4
No files found.
doc/sphinx/source/install.rst
View file @
289586ab
...
...
@@ -153,8 +153,8 @@ The process documented here will work on CentOS 7.4.
$ wget https://cmake.org/files/v3.4/cmake-3.4.3.tar.gz
$ tar -xzvf cmake-3.4.3.tar.gz
$ cd cmake-3.4.3
$ ./bootstrap
$ make &&
sudo make install
$ ./bootstrap
--system-curl --prefix=~/cmake
$ make &&
make install
#. Clone the `NervanaSystems` ``ngraph`` repo via HTTPS and use Cmake 3.4.3 to
build nGraph Libraries to ``~/ngraph_dist``.
...
...
@@ -164,7 +164,7 @@ The process documented here will work on CentOS 7.4.
$ cd /opt/libraries
$ git clone https://github.com/NervanaSystems/ngraph.git
$ cd ngraph && mkdir build && cd build
$
cmake ../
-DCMAKE_INSTALL_PREFIX=~/ngraph_dist
$
~/cmake/bin/cmake ..
-DCMAKE_INSTALL_PREFIX=~/ngraph_dist
$ make && sudo make install
...
...
doc/sphinx/source/project/doc-contributor-README.rst
View file @
289586ab
...
...
@@ -117,15 +117,16 @@ Right now the minimal version of Sphinx needed to build the documentation is
Sphinx v. 1.6.5. This can be installed with :command:`pip3`, either to a virtual
environment, or to your base system if you plan to contribute much core code or
documentation. For C++ API docs that contain inheritance diagrams and collaboration
diagrams which are helpful for framework integratons, or for building bridge code,
be sure you have a system capable of running `doxygen`_.
diagrams which are helpful for framework integratons, building bridge code, or
creating a backend UI for your own custom framework, be sure you have a system
capable of running `doxygen`_.
To build documentation locally, run:
.. code-block:: console
$ pip3 install [-I] Sphinx==1.6.5 [--user]
$ pip3 install [-I] breathe [--user]
$ pip3 install [-I] breathe
numpy
[--user]
$ cd doc/sphinx/
$ make html
$ cd build/html
...
...
@@ -139,7 +140,7 @@ To build documentation in a python3 virtualenv, run:
$ python3 -m venv py3doc
$ . py3doc/bin/activate
(py3doc)$ pip install sphinx breathe
(py3doc)$ pip install sphinx breathe
numpy
(py3doc)$ cd doc/sphinx
(py3doc)$ make html
(py3doc)$ cd build/html
...
...
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