aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tensorflow/core/framework/variable.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/core/framework/variable.proto b/tensorflow/core/framework/variable.proto
index aa76d58741..e793f5a463 100644
--- a/tensorflow/core/framework/variable.proto
+++ b/tensorflow/core/framework/variable.proto
@@ -25,9 +25,9 @@ message SaveSliceInfoDef {
// Name of the full variable of which this is a slice.
string full_name = 1;
// Shape of the full variable.
- repeated int32 full_shape = 2;
+ repeated int64 full_shape = 2;
// Offset of this variable into the full variable.
- repeated int32 var_offset = 3;
+ repeated int64 var_offset = 3;
// Shape of this variable.
- repeated int32 var_shape = 4;
+ repeated int64 var_shape = 4;
}