Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit 38ebc0e

Browse files
indieAdam Procter
authored andcommitted
Add release notes and improve rendering of changes.md (#2117)
1 parent 1e220de commit 38ebc0e

10 files changed

+57
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ to improve it:
103103
[Pip package]: https://github.com/NervanaSystems/ngraph-onnx#installing-ngraph-onnx
104104
[Build from source]: https://github.com/NervanaSystems/ngraph-tf
105105
[Enable the module]: https://github.com/NervanaSystems/ngraph/blob/mbrookhart/mxnet_tutorial/doc/sphinx/source/shared/mxnet_tutorial.rst
106-
[Source compile]: https://github.com/NervanaSystems/ngraph-mxnet/blob/master/NGRAPH_README.md
106+
[Source compile]: https://github.com/NervanaSystems/ngraph-mxnet/blob/master/README.md
107107
[nGraph-ONNX]: https://github.com/NervanaSystems/ngraph-onnx/blob/master/README.md
108108
[nGraph-ONNX adaptable]: https://ai.intel.com/adaptable-deep-learning-solutions-with-ngraph-compiler-and-onnx/
109109
[nGraph for PyTorch developers]: https://ai.intel.com/investing-in-the-pytorch-developer-community

contrib/docker/Dockerfile.ngraph

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,7 @@ RUN pip install breathe
3838
# need numpy to successfully build docs for python_api
3939
RUN pip install numpy
4040

41+
# release notes need this markdown extension
42+
# RUN python3 -m pip install m2r
43+
4144
WORKDIR /home

contrib/docker/Dockerfile.ngraph.centos74

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ RUN c++ --version
4646
RUN easy_install pip
4747
RUN pip install virtualenv
4848

49+
4950
# Install some pip packages
5051

5152
# need to use sphinx version 1.6 to build docs
@@ -61,4 +62,8 @@ RUN pip install breathe
6162
# need numpy to successfully build docs for python_api
6263
RUN pip install numpy
6364

65+
# release notes need this markdown extension
66+
# RUN python3 -m pip install m2r
67+
68+
6469
WORKDIR /home

contrib/docker/Dockerfile.ngraph.centos74_gpu

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,6 @@ RUN pip install breathe
4343
# need numpy to successfully build docs for python_api
4444
RUN pip install numpy
4545

46+
# RUN python3 -m pip install m2r
47+
4648
WORKDIR /home

contrib/docker/Dockerfile.ngraph.ubuntu1604

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,7 @@ RUN pip install breathe
4141
# need numpy to successfully build docs for python_api
4242
RUN pip install numpy
4343

44+
# release notes need this markdown extension
45+
# RUN python3 -m pip install m2r
46+
4447
WORKDIR /home

contrib/docker/Dockerfile.ngraph.ubuntu1604_gpu

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,6 @@ RUN pip install breathe
5858
# need numpy to successfully build docs for python_api
5959
RUN pip install numpy
6060

61+
# RUN python3 -m pip install m2r
62+
6163
WORKDIR /home

doc/sphinx/source/conf.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2+
13
#!/usr/bin/env python3
24
# -*- coding: utf-8 -*-
35
#
@@ -42,6 +44,10 @@
4244
'breathe',
4345
]
4446

47+
48+
# source_suffix = '.rst'
49+
source_suffix = ['.rst', '.md']
50+
4551
# Add any paths that contain templates here, relative to this directory.
4652
templates_path = ['_templates']
4753
static_path = ['static']
@@ -60,8 +66,7 @@
6066
copyright = '2018, Intel Corporation'
6167
author = 'Intel Corporation'
6268

63-
# License specifics
64-
# TBD
69+
# License specifics see LICENSE of component
6570

6671
# The version info for the project you're documenting, acts as replacement for
6772
# |version| and |release|, also used in various other places throughout the

doc/sphinx/source/framework-integration-guides.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ nGraph-TensorFlow bridge.
4646

4747

4848

49-
.. _nGraph-MXNet: https://github.com/NervanaSystems/ngraph-mxnet/blob/master/NGRAPH_README.md
49+
.. _nGraph-MXNet: https://github.com/NervanaSystems/ngraph-mxnet/blob/master/README.md
5050
.. _MXNet: http://mxnet.incubator.apache.org
5151
.. _DSO: http://csweb.cs.wfu.edu/%7Etorgerse/Kokua/More_SGI/007-2360-010/sgi_html/ch03.html
5252
.. _being the fastest: https://github.com/soumith/convnet-benchmarks

doc/sphinx/source/index.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
Welcome
2222
=======
2323

24+
See the latest :doc:`project/release-notes`.
25+
26+
2427
.. figure:: graphics/599px-Intel-ngraph-ecosystem.png
2528
:width: 599px
2629

@@ -127,4 +130,4 @@ Indices and tables
127130
.. _Movidius: https://www.movidius.com/
128131
.. _contributions: https://github.com/NervanaSystems/ngraph#how-to-contribute
129132
.. _TensorFlow bridge to nGraph: https://github.com/NervanaSystems/ngraph-tf/blob/master/README.md
130-
.. _Compiling MXNet with nGraph: https://github.com/NervanaSystems/ngraph-mxnet/blob/master/NGRAPH_README.md
133+
.. _Compiling MXNet with nGraph: https://github.com/NervanaSystems/ngraph-mxnet/blob/master/README.md

doc/sphinx/source/project/release-notes.rst

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,37 @@
33
Release Notes
44
#############
55

6-
This is release |release|.
6+
|release|
77

88

9+
This release focuses on accelerating deep learning inference workloads on
10+
Intel® Xeon® (CPU processor) and has the following key features:
911

10-
API Changes
11-
===========
12+
* Out-of-box installation experience for TensorFlow*, MXNet*, and ONNX.
13+
* Validated optimizations for 17 workloads each on both TensorFlow and MXNet,
14+
as well as 14 for ONNX.
15+
* Support for Ubuntu 16.04 (TensorFlow, MXNet and ONNX).
16+
* Support for OSX 10.13.x (buildable for TensorFlow and MXNet).
1217

13-
.. literalinclude:: ../../../../changes.md
18+
This |version| release includes optimizations built for popular workloads
19+
already widely deployed in production environments. These workloads cover
20+
the following categories:
1421

22+
* ``image recognition & segmentation``
23+
* ``object detection``
24+
* ``language translation``
25+
* ``speech generation & recognition``
26+
* ``recommender systems``
27+
* ``Generative Adversarial Networks (GAN)``
28+
* ``reinforcement learning``
29+
30+
In our tests, the optimized workloads can perform up to 45X faster than native
31+
frameworks, and we expect performance gains for other workloads due to our
32+
powerful :doc:`../fusion/index` feature.
33+
34+
35+
See also our recent `API changes`_
36+
37+
38+
39+
.. _API changes: https://github.com/NervanaSystems/ngraph/blob/master/changes.md

0 commit comments

Comments
 (0)