Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ if (NOT USE_PRE_BUILT_NGRAPH)
ExternalProject_Add(
ext_ngraph
GIT_REPOSITORY https://github.com/NervanaSystems/ngraph
GIT_TAG v0.24.0
GIT_TAG v0.25.0-rc.1
CMAKE_ARGS
-DNGRAPH_DISTRIBUTED_ENABLE=${NGRAPH_DISTRIBUTED_ENABLE}
-DNGRAPH_INSTALL_PREFIX=${NGRAPH_ARTIFACTS_DIR}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Once TensorFlow's dependencies are installed, clone the `ngraph-bridge` repo:

git clone https://github.com/tensorflow/ngraph-bridge.git
cd ngraph-bridge
git checkout v0.17.0-rc3
git checkout v0.18.0-rc0

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

Expand Down
8 changes: 4 additions & 4 deletions bazel/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ tf_configure(
http_archive(
name = "ngraph",
build_file = "//:bazel/ngraph.BUILD",
sha256 = "19788f421416a74659d7b38ef9d777baf4d935881b11cb1598629bc0ea16d99b",
strip_prefix = "ngraph-0.24.0",
sha256 = "6ddba183d354cd70d714423dd6ebaedda0a14021b471a77f2c28d43ab67be46b",
strip_prefix = "ngraph-0.25.0-rc.1",
urls = [
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.24.0.tar.gz",
"https://github.com/NervanaSystems/ngraph/archive/v0.24.0.tar.gz"
"https://mirror.bazel.build/github.com/NervanaSystems/ngraph/archive/v0.25.0-rc.1.tar.gz",
"https://github.com/NervanaSystems/ngraph/archive/v0.25.0-rc.1.tar.gz"
],
)

Expand Down
2 changes: 1 addition & 1 deletion build_ngtf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def main():
'''

# Component versions
ngraph_version = "v0.24.0"
ngraph_version = "v0.25.0-rc.1"
tf_version = "v1.14.0"

# Command line parser options
Expand Down
4 changes: 2 additions & 2 deletions ngraph_bridge/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@
// nGraph-TensorFlow bridge uses semantic versioning: see http://semver.org/

#define NG_TF_MAJOR_VERSION 0
#define NG_TF_MINOR_VERSION 17
#define NG_TF_MINOR_VERSION 18
#define NG_TF_PATCH_VERSION 0

// The version suffix is used for pre-release version numbers
// For example before v0.7.0 we may do a pre-release i.e., a release
// candidate such as v0.7.0-rc0
// The code in master will always have the last released version number
// with a suffix of '-master'
#define NG_TF_VERSION_SUFFIX "-rc3"
#define NG_TF_VERSION_SUFFIX "-rc0"

#define VERSION_STR_HELPER(x) #x
#define VERSION_STR(x) VERSION_STR_HELPER(x)
Expand Down
2 changes: 1 addition & 1 deletion python/setup.in.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_tag(self):

setup(
name='ngraph_tensorflow_bridge',
version='0.17.0rc3',
version='0.18.0rc0',
description='Intel nGraph compiler and runtime for TensorFlow',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
4 changes: 2 additions & 2 deletions test/python/tensorflow/python_tests_list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ reduction_ops_test.MeanReductionTest.testEmptyGradients
reduction_ops_test.MeanReductionTest.testFloat32
reduction_ops_test.MeanReductionTest.testFloat64
reduction_ops_test.MeanReductionTest.testGradient
reduction_ops_test.MeanReductionTest.testInfinity
#reduction_ops_test.MeanReductionTest.testInfinity
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

reduction_ops_test.MeanReductionTest.testInt32

reduction_ops_test.MinReductionTest.testAxesType
Expand All @@ -368,7 +368,7 @@ reduction_ops_test.SumReductionTest.testFloat32
reduction_ops_test.SumReductionTest.testFloat64
reduction_ops_test.SumReductionTest.testGradient
reduction_ops_test.SumReductionTest.testHighRank
reduction_ops_test.SumReductionTest.testInfinity
#reduction_ops_test.SumReductionTest.testInfinity
reduction_ops_test.SumReductionTest.testInt32
reduction_ops_test.SumReductionTest.testPartialShapes

Expand Down
4 changes: 2 additions & 2 deletions test/python/tensorflow/python_tests_list_gpu.txt
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ reduction_ops_test.MeanReductionTest.testEmptyGradients
reduction_ops_test.MeanReductionTest.testFloat32
reduction_ops_test.MeanReductionTest.testFloat64
reduction_ops_test.MeanReductionTest.testGradient
reduction_ops_test.MeanReductionTest.testInfinity
#reduction_ops_test.MeanReductionTest.testInfinity
reduction_ops_test.MeanReductionTest.testInt32

reduction_ops_test.MinReductionTest.testAxesType
Expand All @@ -358,7 +358,7 @@ reduction_ops_test.SumReductionTest.testFloat32
reduction_ops_test.SumReductionTest.testFloat64
reduction_ops_test.SumReductionTest.testGradient
#reduction_ops_test.SumReductionTest.testHighRank
reduction_ops_test.SumReductionTest.testInfinity
#reduction_ops_test.SumReductionTest.testInfinity
reduction_ops_test.SumReductionTest.testInt32
reduction_ops_test.SumReductionTest.testPartialShapes

Expand Down
4 changes: 2 additions & 2 deletions test/python/tensorflow/python_tests_list_mac.txt
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ reduction_ops_test.MeanReductionTest.testEmptyGradients
reduction_ops_test.MeanReductionTest.testFloat32
reduction_ops_test.MeanReductionTest.testFloat64
reduction_ops_test.MeanReductionTest.testGradient
reduction_ops_test.MeanReductionTest.testInfinity
#reduction_ops_test.MeanReductionTest.testInfinity
reduction_ops_test.MeanReductionTest.testInt32

reduction_ops_test.MinReductionTest.testAxesType
Expand All @@ -368,7 +368,7 @@ reduction_ops_test.SumReductionTest.testFloat32
reduction_ops_test.SumReductionTest.testFloat64
reduction_ops_test.SumReductionTest.testGradient
reduction_ops_test.SumReductionTest.testHighRank
reduction_ops_test.SumReductionTest.testInfinity
#reduction_ops_test.SumReductionTest.testInfinity
reduction_ops_test.SumReductionTest.testInt32
reduction_ops_test.SumReductionTest.testPartialShapes

Expand Down