graph.proto no longer needs to export NodeDef, clients should use

node_def.proto instead.
Change: 131290995
This commit is contained in:
A. Unique TensorFlower 2016-08-25 07:19:38 -08:00 committed by TensorFlower Gardener
parent 740c713cd5
commit 672eebd8f4
2 changed files with 3 additions and 3 deletions

View File

@ -13,6 +13,8 @@
* uniform_unit_scaling_initializer() no longer takes a full_shape arg, instead
relying on the partition info passed to the initializer function when it's
called.
* The NodeDef protocol message is now defined in its own file node_def.proto
instead of graph.proto.
# Release 0.10.0

View File

@ -6,9 +6,7 @@ option java_outer_classname = "GraphProtos";
option java_multiple_files = true;
option java_package = "org.tensorflow.framework";
// Temporarily include node_def.proto here as a public import until
// users can be migrated to reference node_def.proto to get NodeDef.
import public "tensorflow/core/framework/node_def.proto";
import "tensorflow/core/framework/node_def.proto";
import "tensorflow/core/framework/function.proto";
import "tensorflow/core/framework/versions.proto";