aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/protobuf
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-07-18 16:29:35 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-07-18 16:32:45 -0700
commitbb52a6663a0141de53ddaf844f6c7087c0ddf7f7 (patch)
treebaf9faebd6800e3c775c27fc1d3dd9c2ad5dfc99 /tensorflow/core/protobuf
parent4cca48f61d0f81c4966e0b83e0f8269b5f9b84e8 (diff)
ConfigProto.experimental.num_dev_to_dev_copy_streams defaults to 0
by proto3 semantics. Silently correct that value to 1, without logging an error. PiperOrigin-RevId: 205157429
Diffstat (limited to 'tensorflow/core/protobuf')
-rw-r--r--tensorflow/core/protobuf/config.proto3
1 files changed, 2 insertions, 1 deletions
diff --git a/tensorflow/core/protobuf/config.proto b/tensorflow/core/protobuf/config.proto
index 77639461d9..22a2691dcc 100644
--- a/tensorflow/core/protobuf/config.proto
+++ b/tensorflow/core/protobuf/config.proto
@@ -145,7 +145,8 @@ message GPUOptions {
bool use_unified_memory = 2;
// If > 1, the number of device-to-device copy streams to create
- // for each GPUDevice.
+ // for each GPUDevice. Default value is 0, which is automatically
+ // converted to 1.
int32 num_dev_to_dev_copy_streams = 3;
}