Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
9fd8350
Made changes to NGraphAssignOp
Jul 13, 2019
8e5a8ea
Added utilities to remove the enteries from the catalog maps. Removed…
Jul 15, 2019
1685709
Remove entries from Catalog in NGVariable Destructors.
Jul 15, 2019
8c3dd80
Modifications to catalog. Compiles
Jul 16, 2019
6b7e296
Merge remote-tracking branch 'origin/master' into shrestha/Integrate_…
Jul 19, 2019
6c2dd52
Code Format
Jul 19, 2019
b2f0f02
Merge remote-tracking branch 'origin/master' into shrestha/Integrate_…
Jul 19, 2019
bc9b16a
Not using RemoveEdge Api. Made changes to RewritePass
Jul 23, 2019
a2f1336
changes to get var before compute
Jul 23, 2019
6f75433
Made changes to remove edges right way.Added syncing in encap
Jul 23, 2019
aeb8514
Removed Enacap Output Tensor Map
Jul 24, 2019
9059154
Updated Comments
Jul 24, 2019
48bf3fe
Updated Comments
Jul 24, 2019
5b40ff9
Merge branch 'shrestha/Integrate_RemoveNGAssign' of https://github.co…
Jul 24, 2019
4b1a475
Integrate with output cache
Jul 24, 2019
6e49e07
Update ngraph_bridge/enable_variable_ops/ngraph_enter_in_catalog.h
Jul 24, 2019
c80ade7
Minor
Jul 24, 2019
9beda76
Merge branch 'shrestha/Integrate_RemoveNGAssign' of https://github.co…
Jul 24, 2019
d4b647c
minor
Jul 24, 2019
19d1839
Formatted for formatting
Jul 24, 2019
b44cee0
Update ngraph_bridge/ngraph_encapsulate_op.cc
Jul 24, 2019
702c2ae
Merge branch 'master' into shrestha/Integrate_RemoveNGAssign
sayantan-nervana Jul 25, 2019
3fa1df0
Kanvi/remove additional attr check (#150)
kanvi-nervana Jul 25, 2019
ca9f62b
Merge remote-tracking branch 'origin/master' into shrestha/Integrate_…
Jul 25, 2019
b4ed01a
Merge branch 'shrestha/Integrate_RemoveNGAssign' of https://github.co…
Jul 25, 2019
b8944f7
Merge pull request #152 from tensorflow/shrestha/Integrate_RemoveNGAs…
Jul 25, 2019
65348d7
sarkars/destructor order (#146)
sayantan-nervana Jul 25, 2019
652cca8
Update bridge version number
sayantan-nervana Jul 26, 2019
b6db947
Merge branch 'master' into sarkars/17rc0prep
sayantan-nervana Jul 26, 2019
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 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.16.0-rc3
git checkout v0.17.0-rc0

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

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 16
#define NG_TF_MINOR_VERSION 17
#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.16.0rc3',
version='0.17.0rc0',
description='Intel nGraph compiler and runtime for TensorFlow',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down