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

Commit 6524242

Browse files
Finalized the version 0.9.0
1 parent faa0f30 commit 6524242

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

python/setup.in.py

+1-1
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.9.0-rc0',
42+
version='0.9.0',
4343
description='Intel nGraph compiler and runtime for TensorFlow',
4444
long_description=long_description,
4545
long_description_content_type="text/markdown",

src/version.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
// The version suffix is used for pre-release version numbers
2828
// For example before v0.7.0 we may do a pre-release i.e., a release
2929
// candidate such as v0.7.0-rc0
30-
#define NG_TF_VERSION_SUFFIX "-rc0"
30+
#define NG_TF_VERSION_SUFFIX ""
3131

3232
#define VERSION_STR_HELPER(x) #x
3333
#define VERSION_STR(x) VERSION_STR_HELPER(x)

test_ngtf.py

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ def main():
100100
num_cores = int(psutil.cpu_count(logical=False))
101101
print("OMP_NUM_THREADS: %s " % str(num_cores))
102102
os.environ['OMP_NUM_THREADS'] = str(num_cores)
103+
os.environ['NGRAPH_TF_DISABLE_DEASSIGN_CLUSTERS'] = '1'
103104

104105
if call([
105106
"python", test_script, "--tensorflow_path", tensorflow_src_dir,

0 commit comments

Comments
 (0)