Skip to content

Commit 7101fb8

Browse files
kanvi-nervanasayantan-nervana
authored andcommitted
Upgrade ngraph to v0.24.0 (#176)
1 parent 9b5b208 commit 7101fb8

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
234234
ExternalProject_Add(
235235
ext_ngraph
236236
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
237-
GIT_TAG v0.24.0-rc.3
237+
GIT_TAG v0.24.0
238238
CMAKE_ARGS
239239
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
240240
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ environment.
6161

6262
The requirements for building nGraph bridge are identical to the requirements for building TensorFlow from source. For more information, review the [TensorFlow configuration] details.
6363

64-
##### Prepare you build environment
64+
##### Prepare your build environment
6565

6666
Install the following requirements before building
6767
`nGraph-bridge`.
@@ -88,7 +88,7 @@ Once TensorFlow's dependencies are installed, clone the `ngraph-bridge` repo:
8888

8989
git clone https://github.com/tensorflow/ngraph-bridge.git
9090
cd ngraph-bridge
91-
git checkout v0.16.0-rc5
91+
git checkout v0.16.0
9292

9393
Run the following Python script to build TensorFlow, nGraph, and the bridge. Use Python 3.5:
9494

@@ -115,7 +115,7 @@ To use the `ngraph-tensorflow-bridge`, activate the following `virtualenv` to st
115115

116116
source build_cmake/venv-tf-py3/bin/activate
117117

118-
Alternatively, you can also install the TensorFlow and nGraph bridge outside of a `virtualenv`. The Python `whl` files are located in the `build_cmake/artifacts/` and `build_cmake/artifats/tensorflow` directories, respectively.
118+
Alternatively, you can also install the TensorFlow and nGraph bridge outside of a `virtualenv`. The Python `whl` files are located in the `build_cmake/artifacts/` and `build_cmake/artifacts/tensorflow` directories, respectively.
119119

120120
Select the help option of `build_ngtf.py` script to learn more about various build options and how to build other backends.
121121

@@ -219,7 +219,7 @@ results = sess.run(output_operation.outputs[0], {
219219
elapsed = time.time() - start
220220
print('Time elapsed: %f seconds' % elapsed)
221221
```
222-
Observe that the ouput time runs faster than TensorFlow native (i.e., without nGraph).
222+
Observe that the output time runs faster than TensorFlow native (i.e., without nGraph).
223223

224224
#### Add additional backends
225225

bazel/WORKSPACE

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ tf_configure(
2525
http_archive(
2626
name = "ngraph",
2727
build_file = "//:bazel/ngraph.BUILD",
28-
sha256 = "1667a98fac76f2677d7f46ee5352a3e0b0573522f76787056470d8a44cb37a77",
29-
strip_prefix = "ngraph-0.24.0-rc.3",
28+
sha256 = "19788f421416a74659d7b38ef9d777baf4d935881b11cb1598629bc0ea16d99b",
29+
strip_prefix = "ngraph-0.24.0",
3030
urls = [
31-
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.24.0-rc.3.tar.gz",
32-
"https://github.com/NervanaSystems/ngraph/archive/v0.24.0-rc.3.tar.gz"
31+
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.24.0.tar.gz",
32+
"https://github.com/NervanaSystems/ngraph/archive/v0.24.0.tar.gz"
3333
],
3434
)
3535

build_ngtf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def main():
5353
'''
5454

5555
# Component versions
56-
ngraph_version = "v0.24.0-rc.3"
56+
ngraph_version = "v0.24.0"
5757
tf_version = "v1.14.0"
5858

5959
# Command line parser options

python/setup.in.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_tag(self):
5959

6060
setup(
6161
name='ngraph_tensorflow_bridge',
62-
version='0.16.0rc6',
62+
version='0.16.0',
6363
description='Intel nGraph compiler and runtime for TensorFlow',
6464
long_description=long_description,
6565
long_description_content_type="text/markdown",

src/version.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// candidate such as v0.7.0-rc0
3131
// The code in master will always have the last released version number
3232
// with a suffix of '-master'
33-
#define NG_TF_VERSION_SUFFIX "-rc6"
33+
#define NG_TF_VERSION_SUFFIX ""
3434

3535
#define VERSION_STR_HELPER(x) #x
3636
#define VERSION_STR(x) VERSION_STR_HELPER(x)

0 commit comments

Comments
 (0)