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

Commit d46b530

Browse files
New release prep (#496)
* New release prep * Added recursive copy of the include directory and fixed a typo
1 parent 62cf9d9 commit d46b530

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
239239
ExternalProject_Add(
240240
ext_ngraph
241241
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
242-
GIT_TAG v0.17.0-rc.1
242+
GIT_TAG v0.18.0-rc.1
243243
CMAKE_ARGS
244244
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
245245
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ a variety of nGraph-enabled backends: CPU, GPU, and custom silicon like the
4747
This will produce something like this:
4848

4949
TensorFlow version: 1.13.1
50-
nGraph bridge version: b'0.12.0-rc4'
51-
nGraph version used for this build: b'0.17.0-rc.1+045b71e'
50+
nGraph bridge version: b'0.12.0-rc5'
51+
nGraph version used for this build: b'0.18.0-rc.1+55e1e17'
5252
TensorFlow version used for this build: v1.13.1-0-g6612da8951
5353
CXX11_ABI flag used for this build: 1
5454

bazel/WORKSPACE

+4-4
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 = "517f2430ab1434021c2c4e3daf6f52cc855e4134632ed7c517a2c9c4b2c28f6b",
29-
strip_prefix = "ngraph-0.17.0-rc.1",
28+
sha256 = "8a0618901d96e016684fb9dc2b2e29fb648e5b32085bfbc6cc24b152bab5e8aa",
29+
strip_prefix = "ngraph-0.18.0-rc.1",
3030
urls = [
31-
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.17.0-rc.1.tar.gz",
32-
"https://github.com/NervanaSystems/ngraph/archive/v0.17.0-rc.1.tar.gz",
31+
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.18.0-rc.1.tar.gz",
32+
"https://github.com/NervanaSystems/ngraph/archive/v0.18.0-rc.1.tar.gz",
3333
],
3434
)
3535

build_ngtf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def main():
2424
'''
2525

2626
# Component versions
27-
ngraph_version = "v0.17.0-rc.1"
27+
ngraph_version = "v0.18.0-rc.1"
2828
tf_version = "v1.13.1"
2929

3030
# Command line parser options

python/CreatePipWhl.cmake

+3-1
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,10 @@ if (PYTHON)
4747
file(GLOB NGRAPH_LIB_FILES "${NGTF_INSTALL_DIR}/${LIB_SUFFIX}/lib*")
4848

4949
# Copy the ngraph_bridge include from install
50+
message(STATUS "NGTF_INSTALL_DIR: ${NGTF_INSTALL_DIR}")
51+
5052
file(
51-
COPY "${NGTF_INSTALL_DIR}/include"
53+
COPY "${NGRAPH_INSTALL_DIR}/include"
5254
DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/python/ngraph_bridge"
5355
)
5456

python/setup.in.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def get_tag(self):
3939

4040
setup(
4141
name='ngraph_tensorflow_bridge',
42-
version='0.12.0rc4',
42+
version='0.12.0rc5',
4343
description='Intel nGraph compiler and runtime for TensorFlow',
4444
long_description=long_description,
4545
long_description_content_type="text/markdown",
@@ -52,7 +52,7 @@ def get_tag(self):
5252
package_data=
5353
{
5454
'ngraph_bridge': [
55-
"include/ngraph/*",
55+
"include/ngraph/**/*",
5656
@ngraph_libraries@ @license_files@ @licence_top_level@
5757
],
5858
},

src/version.cc

+1-1
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 "-rc4"
33+
#define NG_TF_VERSION_SUFFIX "-rc5"
3434

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

0 commit comments

Comments
 (0)