This repository was archived by the owner on Jan 3, 2023. It is now read-only.
Commit 260b208 1 parent 235b5ea commit 260b208 Copy full SHA for 260b208
File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ This will produce something like this:
44
44
TensorFlow version: r 1.12.0
45
45
TensorFlow version installed: 1.12.0 (v1.12.0-0-ga6d8ffae09)
46
46
nGraph bridge built with: 1.12.0 (v1.12.0-0-ga6d8ffae09)
47
- b'0.10.0 '
47
+ b'0.11.0-rc0 '
48
48
49
49
Next you can try out the TensorFlow models by adding one line to your existing
50
50
TensorFlow model scripts and running them the usual way:
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def get_tag(self):
39
39
40
40
setup (
41
41
name = 'ngraph_tensorflow_bridge' ,
42
- version = '0.10.0 ' ,
42
+ version = '0.11.0-rc0 ' ,
43
43
description = 'Intel nGraph compiler and runtime for TensorFlow' ,
44
44
long_description = long_description ,
45
45
long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change 21
21
// nGraph-TensorFlow bridge uses semantic versioning: see http://semver.org/
22
22
23
23
#define NG_TF_MAJOR_VERSION 0
24
- #define NG_TF_MINOR_VERSION 10
24
+ #define NG_TF_MINOR_VERSION 11
25
25
#define NG_TF_PATCH_VERSION 0
26
26
27
27
// The version suffix is used for pre-release version numbers
28
28
// For example before v0.7.0 we may do a pre-release i.e., a release
29
29
// candidate such as v0.7.0-rc0
30
- #define NG_TF_VERSION_SUFFIX " "
30
+ #define NG_TF_VERSION_SUFFIX " -rc0 "
31
31
32
32
#define VERSION_STR_HELPER (x ) #x
33
33
#define VERSION_STR (x ) VERSION_STR_HELPER(x)
You can’t perform that action at this time.
0 commit comments