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
c5d52f14
Unverified
Commit
c5d52f14
authored
Apr 10, 2019
by
Scott Cyphers
Committed by
GitHub
Apr 10, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate doc changes to r0.18 (#2738)
* Migrate doc changes * Add TensorFlow version change
parent
55e1e17c
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
12 deletions
+12
-12
README.md
README.md
+1
-1
buildlb.rst
doc/sphinx/source/buildlb.rst
+5
-5
conf.py
doc/sphinx/source/conf.py
+2
-2
index.rst
doc/sphinx/source/frameworks/index.rst
+3
-3
quantize.rst
doc/sphinx/source/ops/quantize.rst
+1
-1
No files found.
README.md
View file @
c5d52f14
...
...
@@ -14,7 +14,7 @@ workloads on CPU for inference, please refer to the links below.
| Framework (Version) | Installation guide | Notes
|----------------------------|----------------------------------------|-----------------------------------
| TensorFlow
*
1.1
2
|
[
Pip install
](
https://github.com/NervanaSystems/ngraph-tf#option-1-use-a-pre-built-ngraph-tensorflow-bridge
)
or
[
Build from source
](
https://github.com/NervanaSystems/ngraph-tf#option-2-build-ngraph-bridge-from-source
)
| 20
[
Validated workloads
]
| TensorFlow
*
1.1
3.1
|
[
Pip install
](
https://github.com/NervanaSystems/ngraph-tf#option-1-use-a-pre-built-ngraph-tensorflow-bridge
)
or
[
Build from source
](
https://github.com/NervanaSystems/ngraph-tf#option-2-build-ngraph-bridge-from-source
)
| 20
[
Validated workloads
]
| MXNet
*
1.3 |
[
Pip install
](
https://github.com/NervanaSystems/ngraph-mxnet#Installation
)
or
[
Build from source
](
https://github.com/NervanaSystems/ngraph-mxnet#building-with-ngraph-support
)
| 18
[
Validated workloads
]
| ONNX 1.4 |
[
Pip install
](
https://github.com/NervanaSystems/ngraph-onnx#installation
)
| 17
[
Validated workloads
]
...
...
doc/sphinx/source/buildlb.rst
View file @
c5d52f14
...
...
@@ -23,7 +23,7 @@ packages and prerequisites:
:widths: 25, 15, 25, 20, 25
:escape: ~
CentOS 7.4 64-bit, GCC 4.8, CMake 3.
4.3
, supported, ``wget zlib-devel ncurses-libs ncurses-devel patch diffutils gcc-c++ make git perl-Data-Dumper``
CentOS 7.4 64-bit, GCC 4.8, CMake 3.
5.0
, supported, ``wget zlib-devel ncurses-libs ncurses-devel patch diffutils gcc-c++ make git perl-Data-Dumper``
Ubuntu 16.04 or 18.04 (LTS) 64-bit, Clang 3.9, CMake 3.5.1 + GNU Make, supported, ``build-essential cmake clang-3.9 clang-format-3.9 git curl zlib1g zlib1g-dev libtinfo-dev unzip autoconf automake libtool``
Clear Linux\* OS for Intel Architecture, Clang 5.0.1, CMake 3.10.2, experimental, bundles ``machine-learning-basic dev-utils python3-basic python-basic-dev``
...
...
@@ -185,13 +185,13 @@ The process documented here will work on CentOS 7.4.
.. code-block:: console
$ 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
$ wget https://cmake.org/files/v3.4/cmake-3.
5.0
.tar.gz
$ tar -xzvf cmake-3.
5.0
.tar.gz
$ cd cmake-3.
5.0
$ ./bootstrap --system-curl --prefix=~/cmake
$ make && make install
#. Clone the `NervanaSystems` ``ngraph`` repo via HTTPS and use Cmake 3.
4.3
to
#. Clone the `NervanaSystems` ``ngraph`` repo via HTTPS and use Cmake 3.
5.0
to
build nGraph Libraries to ``~/ngraph_dist``. This command enables ONNX
support in the library (optional).
...
...
doc/sphinx/source/conf.py
View file @
c5d52f14
...
...
@@ -73,11 +73,11 @@ author = 'Intel Corporation'
# built documents.
#
# The short X.Y version.
version
=
'0.1
7
'
version
=
'0.1
8
'
# The Documentation full version, including alpha/beta/rc tags. Some features
# available in the latest code will not necessarily be documented first
release
=
'0.1
7
.0'
release
=
'0.1
8
.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
doc/sphinx/source/frameworks/index.rst
View file @
c5d52f14
...
...
@@ -18,7 +18,7 @@ cloned from one of our GitHub repos and built to connect to nGraph device
backends while maintaining the framework's programmatic or user interface. Bridges
currently exist for the TensorFlow\* and MXNet\* frameworks.
ONNX is not a framework; however, it can be used with nGraph's :doc:../python_api/index`
ONNX is not a framework; however, it can be used with nGraph's :doc:
`
../python_api/index`
to import and execute ONNX models.
.. figure:: ../graphics/whole-stack.png
...
...
@@ -49,7 +49,7 @@ like TensorFlow and PyTorch.
:width: 725px
:alt: Translation flow to nGraph function graph
.. _tune the workload to extract best performance: https://ai.intel.com/accelerating-deep-learning-training-inference-system-level-optimizations
.. _a few small: https://software.intel.com/en-us/articles/boosting-deep-learning-training-inference-performance-on-xeon-and-xeon-phi
doc/sphinx/source/ops/quantize.rst
View file @
c5d52f14
..
quantize.rst:
..
ops/quantize.rst:
########
Quantize
...
...
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